/*
Theme Name: Dentlab24
Theme URI: https://www.dentlab24.de/
Author: Urban Gruppe
Description: Custom Theme basierend auf den gelieferten statischen Dentlab24 HTML/CSS-Dateien.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dentlab24
*/

/* ============================================
   DENTLAB24 GMBH – Global Stylesheet
   Primary: #0052CC | Accent: #00BFA5
   BG: #F4F5F7 | Radius: 8px | Font: Inter
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 75px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #F4F5F7;
  color: #1A2940;
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --primary: #0052CC;
  --primary-dark: #003E99;
  --primary-light: #E8F0FE;
  --accent: #00BFA5;
  --bg: #F4F5F7;
  --white: #ffffff;
  --text: #1A2940;
  --text-muted: #5E6E8A;
  --border: #D0D9E8;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,82,204,0.10);
  --shadow-lg: 0 8px 32px rgba(0,82,204,0.14);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary Button – blau ausgefüllt */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,82,204,0.30);
}

/* Secondary Button – weißer Outline-Button (auf dunklem BG) */
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

/* Ghost Button – Outline auf hellem BG */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,82,204,0.08);
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
	padding: 0 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 6px 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.nav-logo-claim {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-links .nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero Section ── */
.hero {
  background: linear-gradient(135deg, #0052CC 0%, #003E99 60%, #002A6B 100%);
  color: var(--white);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,191,165,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-logo-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 28px 14px 18px;
}

.hero-logo-card img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-logo-card-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.hero-logo-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.hero-logo-card-claim {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #E0F0FF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: #7EC8FF;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #7EC8FF;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Sections ── */
.section {
  padding: 72px 24px;
}

.section-alt {
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ── USP Cards ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.usp-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.usp-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.usp-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  text-decoration: none;
  color: var(--text);
  display: block;
	height:100%;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.service-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-delivery {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Why Section ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--primary);
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-visual {
  background: linear-gradient(135deg, #0052CC, #003E99);
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.why-visual h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.price-showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.15);
}

.price-row-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.price-row-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #7EC8FF;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0052CC 0%, #003E99 100%);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Offer Page ── */
.offer-section {
  padding: 64px 24px;
  scroll-margin-top: 75px;
}

.offer-section:nth-child(even) {
  background: var(--white);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.93rem;
}

.price-table thead th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.price-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.price-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: var(--primary-light);
}

.price-table td {
  padding: 14px 20px;
  vertical-align: middle;
}

.price-table .price-col {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.price-table .delivery-col {
  color: var(--text-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 30px;
  letter-spacing: 0.2px;
}

.tag-green {
  background: #E0F7F4;
  color: #00897B;
}

.soon-banner {
  background: linear-gradient(90deg, #EEF2F8 0%, #E8F0FE 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.soon-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.soon-banner h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.soon-banner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Material Cards */
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.material-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.material-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.material-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Contact Form ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,82,204,0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
  margin-top: 2px;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}

.form-check label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-submit {
  margin-top: 24px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.contact-item a:hover { color: var(--primary); }

.perks-card {
  background: linear-gradient(135deg, #0052CC 0%, #003E99 100%);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--white);
}

.perks-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
	color:var(--white);
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.perk-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Legal Pages ── */
.legal-hero {
  background: linear-gradient(135deg, #0052CC 0%, #003E99 100%);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}

.legal-content p, .legal-content li {
  font-size: 0.93rem;
  color: #3A4A60;
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0052CC 0%, #003E99 100%);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.65);
}

.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1,
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
	color:var(--white);
}

.legal-hero

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  background: #12213D;
  color: rgba(255,255,255,0.75);
  padding: 56px 24px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  opacity: 1;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-claim {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--white); }

/* ── Success Alert ── */
.alert {
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

.alert-success {
  background: #E0F7F4;
  border: 1px solid #80CBC4;
  color: #00695C;
}

.alert-error {
  background: #FFEBEE;
  border: 1px solid #EF9A9A;
  color: #C62828;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
  }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; }
  .navbar { position: sticky; }

  .hero { padding: 56px 24px 64px; }
  .hero-stats { gap: 24px; }

  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .usp-grid { grid-template-columns: 1fr; }

  /* Hero Logo Card: kompakter auf Mobile */
  .hero-logo-card {
    padding: 10px 18px 10px 12px;
    gap: 12px;
  }
  .hero-logo-card img {
    height: 54px;
  }
  .hero-logo-card-name {
    font-size: 1rem;
  }
  .hero-logo-card-claim {
    font-size: 0.72rem;
  }

  /* Navbar: Claim ausblenden auf sehr kleinen Screens */
  .nav-logo-claim {
    display: none;
  }
}

