/* =====================================================
   ALRODIA – bookmyself Landing Page  |  Shared CSS
   ===================================================== */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── ALRODIA Brand Colors (from SVG logo) ── */
  --primary:        #2196F3;   /* AL – blau         */
  --primary-dark:   #1565C0;
  --primary-light:  #e3f2fd;
  --accent:         #2ECC71;   /* RO – grün         */
  --accent-dark:    #27ae60;
  --logo-orange:    #FF9800;   /* DI – orange       */
  --logo-purple:    #9C27B0;   /* A  – lila         */
  --logo-wave:      #3fa9f5;   /* Wellenlicht       */
  --dark:           #0b0f14;   /* Logo-Hintergrund  */
  --dark-2:         #1f2b3a;   /* Grid-Farbe        */
  --body:           #1e293b;
  --muted:          #64748b;
  --muted-dark:     #9aa4b2;   /* Logo-Tagline      */
  --border:         #e2e8f0;
  --border-dark:    rgba(255,255,255,0.07);
  --bg-light:       #f4f7fb;
  --white:          #ffffff;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 40px rgba(0,0,0,0.14);
  --font:           'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  /* Repeating grid pattern matching the SVG logo – CI §5.1: 10-35% opacity */
  --grid-pattern:
    linear-gradient(rgba(31,43,58,0.22) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(31,43,58,0.22) 1px, transparent 1px) 0 0 / 60px 60px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--body); line-height: 1.6; background: var(--white); }
h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .hero-stat-num,
.big-feature-title, .feature-title, .tech-name { font-family: var(--font); }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem; border-radius: 999px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s; text-decoration: none;
}
.btn-primary   { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-outline   { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }
.btn-white     { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); text-decoration: none; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* ── Badge ── */
.badge {
  display: inline-block; padding: 0.3rem 0.9rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-accent  { background: #d1fae5; color: #065f46; }

/* ── Section ── */
.section { padding: 6rem 0; }  /* CI: Viel Weißraum */
.section-sm { padding: 3.5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--logo-wave); margin-bottom: 0.6rem;
}
.section-desc { font-size: 1rem; color: var(--muted); max-width: 580px; margin: 0.75rem auto 0; line-height: 1.7; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;  /* CI: Headlines Medium/Bold */
  color: var(--dark); line-height: 1.25; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 640px;
  margin: 0 auto 3rem; line-height: 1.7;
}
/* Decorative wave-line under centered section titles */
.text-center .section-title::after,
.section-header .section-title::after {
  content: '';
  display: block;
  width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--logo-wave));
  margin: 0.75rem auto 0;
  opacity: 0.75;
}
.text-center { text-align: center; }

/* Three-line brand decoration (CI §5.3 – Linien-Signatur) */
.brand-lines {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; margin: 0.75rem auto 2rem; width: fit-content;
}
.brand-lines span { display: block; height: 2px; border-radius: 1px; background: var(--logo-wave); }
.brand-lines span:nth-child(1) { width: 180px; opacity: 0.7; }
.brand-lines span:nth-child(2) { width: 130px; opacity: 0.45; }
.brand-lines span:nth-child(3) { width: 80px;  opacity: 0.25; }

/* Brand line-signature as full-width section divider (CI §5.3: "Footer- oder Divider-Element") */
.brand-divider {
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; padding: 1.75rem 0;
  background: #0d1220;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.brand-divider span { display: block; height: 1px; border-radius: 1px; background: var(--logo-wave); }
.brand-divider span:nth-child(1) { width: 220px; opacity: 0.55; }
.brand-divider span:nth-child(2) { width: 150px; opacity: 0.35; }
.brand-divider span:nth-child(3) { width: 80px;  opacity: 0.18; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,15,20,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark); padding: 0.85rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { font-size: 1.35rem; font-weight: 900; color: #fff; text-decoration: none; display: flex; align-items: center; }
.nav-logo span { color: var(--primary); }
.nav-logo-img { height: 36px; width: auto; border-radius: 6px; display: block; }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--muted-dark); text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.nav-cta .btn-outline { color: var(--muted-dark); border-color: rgba(255,255,255,0.2); }
.nav-cta .btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.35); text-decoration: none; }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(33,150,243,0.18), transparent 70%),
    var(--grid-pattern),
    linear-gradient(160deg, #0b0f14 0%, #0d1f35 60%, #091420 100%);
  color: #fff; padding: 7rem 0 6rem; overflow: hidden; position: relative;
}
.hero::before { display: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.hero-eyebrow span {
  font-size: 0.78rem; font-weight: 700; color: var(--logo-wave);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(63,169,245,0.3); padding: 0.3rem 0.8rem; border-radius: 999px;
  background: rgba(33,150,243,0.08);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--logo-wave); }
.hero-desc { font-size: 1.1rem; color: var(--muted-dark); line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: #fff; }
.hero-stat-label { font-size: 0.82rem; color: var(--muted-dark); letter-spacing: 0.02em; }

.hero-visual {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem;
  backdrop-filter: blur(10px); position: relative;
}
.mock-header { display: flex; gap: 0.4rem; margin-bottom: 1.25rem; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ef4444; }
.mock-dot:nth-child(2) { background: #f59e0b; }
.mock-dot:nth-child(3) { background: #22c55e; }
.mock-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); margin-bottom: 0.75rem; }
.mock-bar.w-full { width: 100%; }
.mock-bar.w-3q   { width: 75%; }
.mock-bar.w-half { width: 50%; }
.mock-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
.mock-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1rem; text-align: center;
}
.mock-card-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.mock-card-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.mock-card-val { font-size: 1.1rem; font-weight: 800; color: #fff; }

/* ── LOGOS/TRUST ── */
.trust-bar {
  background: #0d1220;
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem 0;
}
.trust-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 0.8rem; font-weight: 700; color: #506070; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.08em; }
.trust-items { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; color: #5e7080; }
.trust-item span:first-child { font-size: 1.2rem; }

/* ── PROBLEMS ── */
.problems { background: #f7f9fc; }  /* CI: strukturiert, ruhig – cool off-white */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.problem-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow); }
.problem-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.problem-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.problem-text { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all 0.2s; border-top: 3px solid transparent;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
/* Cycle all 4 brand colors on hover (AL=blue, RO=green, DI=orange, A=purple) */
.features-grid .feature-card:nth-child(4n+1):hover { border-top-color: var(--primary); }
.features-grid .feature-card:nth-child(4n+2):hover { border-top-color: var(--accent); }
.features-grid .feature-card:nth-child(4n+3):hover { border-top-color: var(--logo-orange); }
.features-grid .feature-card:nth-child(4n):hover   { border-top-color: var(--logo-purple); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
  background: var(--primary-light);
}
.feature-icon.green  { background: #d1fae5; }
.feature-icon.orange { background: #fff3e0; }
.feature-icon.purple { background: #f3e8ff; }
.feature-icon.red    { background: #fee2e2; }
.feature-icon.teal   { background: #ccfbf1; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.feature-text  { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── BIG FEATURE (alternating) ── */
.big-feature { padding: 5rem 0; }
.big-feature:nth-child(even) { background: var(--bg-light); }
.big-feature-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.big-feature-inner.reverse { direction: rtl; }
.big-feature-inner.reverse > * { direction: ltr; }
.big-feature-label { font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.big-feature-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 1rem; }
.big-feature-text { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.big-feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.big-feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--body); }
.big-feature-list li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 0.1rem; }

.visual-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
  border: 1px solid #90caf9; border-radius: var(--radius-lg);
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.visual-box.green { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-color: #bbf7d0; }
.visual-box.purple { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); border-color: #c4b5fd; }
.visual-box.orange { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); border-color: #fde68a; }
.visual-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border-radius: var(--radius); padding: 0.9rem 1.1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.visual-row-label { font-size: 0.9rem; font-weight: 600; color: var(--body); }
.visual-row-val { font-size: 0.9rem; font-weight: 700; }
.val-green  { color: var(--accent-dark); }
.val-blue   { color: var(--primary); }
.val-orange { color: #d97706; }
.visual-progress { height: 8px; border-radius: 4px; background: #e2e8f0; overflow: hidden; }
.visual-progress-bar { height: 100%; border-radius: 4px; background: var(--primary); }

/* ── COMPARISON TABLE ── */
.comparison {
  background: var(--grid-pattern), var(--dark);
  color: #fff;
}
.comparison .section-title { color: #fff; }
.comparison .section-sub { color: var(--muted-dark); }
.comp-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; }
.comp-table th, .comp-table td { padding: 0.9rem 1.25rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); }
.comp-table thead th { background: rgba(255,255,255,0.05); font-size: 0.9rem; font-weight: 700; color: #94a3b8; }
.comp-table thead th:first-child { border-radius: 8px 0 0 0; }
.comp-table thead th:last-child  { border-radius: 0 8px 0 0; }
.comp-table tbody td:first-child { color: #e2e8f0; font-weight: 500; }
.comp-table tbody td:nth-child(2) { color: #ef4444; }
.comp-table tbody td:nth-child(3) { color: #4ade80; font-weight: 600; }
.comp-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ── TECH FEATURES (smaller grid) ── */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.tech-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  transition: all 0.2s; border-bottom: 3px solid transparent;
}
.tech-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tech-grid .tech-card:nth-child(4n+1):hover { border-bottom-color: var(--primary); }
.tech-grid .tech-card:nth-child(4n+2):hover { border-bottom-color: var(--accent); }
.tech-grid .tech-card:nth-child(4n+3):hover { border-bottom-color: var(--logo-orange); }
.tech-grid .tech-card:nth-child(4n):hover   { border-bottom-color: var(--logo-purple); }
.tech-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tech-card-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.tech-card-text  { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── CTA SECTION ── */
.cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(33,150,243,0.12), transparent 65%),
    var(--grid-pattern),
    var(--dark);
  color: #fff; padding: 6rem 0; text-align: center; position: relative;
  border-top: 1px solid var(--border-dark);
}
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; color: var(--muted-dark); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--grid-pattern), #050709;
  color: #94a3b8; padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 0.75rem; display: inline-block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: #64748b; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; color: #e2e8f0; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.9rem; color: #64748b; transition: color 0.2s; }
.footer-links a:hover { color: #e2e8f0; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: #475569; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.85rem; color: #475569; transition: color 0.2s; }
.footer-legal a:hover { color: #94a3b8; text-decoration: none; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #fff; border-top: 2px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.12); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.9rem; color: var(--body); flex: 1; min-width: 240px; }
#cookie-banner a { color: var(--primary); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── LEGAL PAGES ── */
.legal-hero { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 3.5rem 0 2.5rem; }
.legal-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--dark); }
.legal-hero .meta { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; }
.legal-body { padding: 3.5rem 0 5rem; }
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.35rem; font-weight: 700; color: var(--dark); margin: 2.5rem 0 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--body); margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.95rem; color: var(--body); line-height: 1.75; margin-bottom: 0.9rem; }
.legal-content ul { margin: 0.75rem 0 0.9rem 1.25rem; list-style: disc; }
.legal-content ul li { font-size: 0.95rem; color: var(--body); line-height: 1.7; margin-bottom: 0.35rem; }
.legal-content address { font-style: normal; line-height: 2; font-size: 0.95rem; color: var(--body); }
.legal-content .placeholder { background: #fef3c7; border: 1px dashed #f59e0b; border-radius: 6px; padding: 0.35rem 0.75rem; display: inline-block; font-size: 0.85rem; color: #92400e; font-style: italic; }

/* ── COOKIE SETTINGS PAGE ── */
.cookie-toggle-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.cookie-toggle-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.cookie-toggle-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.toggle-switch { flex-shrink: 0; position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #cbd5e1; border-radius: 999px; transition: 0.3s; }
.toggle-slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
input:checked + .toggle-slider { background: var(--primary); }
input:checked + .toggle-slider::before { transform: translateX(22px); }
input:disabled + .toggle-slider { opacity: 0.7; cursor: not-allowed; }
.cookie-save-btn { margin-top: 2rem; }

/* ── HERO VISUAL – SVG Logo ── */
.hero-visual--svg {
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 0;
  overflow: hidden;
}
.hero-visual--svg img { width: 100%; display: block; border-radius: var(--radius-lg); }

/* ── ÜBER UNS – HERO ── */
.ueber-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(33,150,243,0.12), transparent 65%),
    var(--grid-pattern),
    var(--dark);
  color: #fff; padding: 6rem 0 5rem; text-align: center;
}
.ueber-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35; pointer-events: none;
}
.ueber-hero-inner { position: relative; z-index: 1; }
.ueber-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; margin-bottom: 1rem; }
.ueber-hero p { font-size: 1.1rem; color: #94a3b8; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.logo-al { color: #2196F3; }
.logo-ro { color: #2ECC71; }
.logo-di { color: #FF9800; }
.logo-a  { color: #9C27B0; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; text-align: center;
  transition: all 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card-img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.team-card-initial {
  width: 88px; height: 88px; border-radius: 50%;
  font-size: 2.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.team-card-body { padding: 1.5rem 1.25rem; }
.team-card-name { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.team-card-role { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.team-card-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.team-card-email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.9rem;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.team-card-email:hover { opacity: 1; text-decoration: underline; }
.team-al .team-card-email { color: #2196F3; }
.team-ro .team-card-email { color: #15803d; }
.team-di .team-card-email { color: #e65100; }
.team-a  .team-card-email { color: #6b21a8; }
/* Per-person accent colors */
.team-al .team-card-img { background: #e3f2fd; }
.team-al .team-card-initial { background: #bbdefb; color: #1565C0; }
.team-al .team-card-role { color: #2196F3; }
.team-al:hover { border-color: #90caf9; }
.team-ro .team-card-img { background: #d1fae5; }
.team-ro .team-card-initial { background: #a7f3d0; color: #15803d; }
.team-ro .team-card-role { color: #2ECC71; }
.team-ro:hover { border-color: #86efac; }
.team-di .team-card-img { background: #fff3e0; }
.team-di .team-card-initial { background: #ffe0b2; color: #e65100; }
.team-di .team-card-role { color: #FF9800; }
.team-di:hover { border-color: #fdba74; }
.team-a  .team-card-img { background: #f3e8ff; }
.team-a  .team-card-initial { background: #e9d5ff; color: #6b21a8; }
.team-a  .team-card-role { color: #9C27B0; }
.team-a:hover { border-color: #d8b4fe; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .problems-grid       { grid-template-columns: 1fr 1fr; }
  .features-grid       { grid-template-columns: 1fr 1fr; }
  .big-feature-inner   { grid-template-columns: 1fr; }
  .big-feature-inner.reverse { direction: ltr; }
  .comp-table { font-size: 0.85rem; }
  .comp-table th, .comp-table td { padding: 0.65rem 0.85rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section  { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .tech-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.25rem; }
  #cookie-banner { flex-direction: column; }
  .comp-table { display: block; overflow-x: auto; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
