@import url('fonts.css');
@charset "UTF-8";
/* ============================================================
   AUFTAUCHEN WEBDESIGN – Design System V3.1 (Final AIDCA)
   Stand: März 2026 – Akzentfarbe: Burnt Sienna (#C2623D)
   WCAG AA · Mobile First · 3 Breakpoints
   ============================================================ */

:root {
  --color-primary: #1B6FA8;
  --color-primary-dark: #0D2B42;
  --color-primary-light: #2A8BC8;
  --color-primary-subtle: rgba(27,111,168,0.06);
  --color-bg: #F7F9FB;
  --color-bg-white: #FFFFFF;
  --color-cta: #C2623D;
  --color-cta-hover: #A34E2E;
  --color-success: #228577;
  --color-neutral: #E8E6E1;
  --color-neutral-light: #F0EEEA;
  --color-text: #0D2B42;
  --color-text-muted: #3A5A6E;
  --color-text-light: #B8D4E8;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-btn: 8px;
  --max-width: 1120px;
  --section-padding: 96px;
  --shadow-sm: 0 1px 3px rgba(13,43,66,0.06);
  --shadow-md: 0 4px 16px rgba(13,43,66,0.08);
  --shadow-lg: 0 8px 32px rgba(13,43,66,0.08);
  --shadow-xl: 0 12px 40px rgba(13,43,66,0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-light); }
ul, ol { list-style: none; }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; box-shadow: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-text); line-height: 1.1; }
h1 { font-size: 48px; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { color: var(--color-text-muted); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
.text-label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-primary); margin-bottom: 12px; }
.text-center { text-align: center; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding) 0; position: relative; }
.section--dark { background: var(--color-primary-dark); color: #FFF; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #FFF; }
.section--dark p { color: var(--color-text-light); }
.section--white { background: var(--color-bg-white); }
.section--compact { padding: 56px 0; }
.section-header { max-width: 640px; margin-bottom: 56px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; line-height: 1.6; }

.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 48px; }
.wave-divider--dark svg { fill: var(--color-primary-dark); }
.wave-divider--light svg { fill: var(--color-bg); }
.wave-divider--white svg { fill: var(--color-bg-white); }
.wave-divider--bg svg { fill: var(--color-bg); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* HEADER */
.header { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(232,230,225,0.6); position: sticky; top: 0; z-index: 100; }
.header__inner { max-width: var(--max-width); margin: 0 auto; padding: 4px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-primary-dark); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo:hover { color: var(--color-primary-dark); }
.logo__mark { width: 36px; height: 36px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition); }
.logo:hover .logo__mark { transform: translateY(-2px); }
.logo__mark svg { width: 18px; height: 18px; }
.logo__img { height: 48px; width: auto; display: block; }
.logo__icon { height: 80px; width: 80px; flex-shrink: 0; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--color-text-muted); text-decoration: none; transition: color var(--transition); position: relative; }
.nav a:hover { color: var(--color-primary); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-primary); transition: width var(--transition); }
.nav a:hover::after { width: 100%; }
.nav__cta { background: var(--color-cta) !important; color: #FFF !important; padding: 10px 20px !important; border-radius: var(--radius-btn) !important; font-weight: 600 !important; }
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--color-cta-hover) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(194,98,61,0.3); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0; transition: all var(--transition); }

/* BUTTONS */
.btn { font-family: var(--font-heading); font-size: 16px; font-weight: 600; padding: 16px 32px; border-radius: var(--radius-btn); border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all var(--transition); text-align: center; }
.btn--amber { background: var(--color-cta); color: #FFF; }
.btn--amber:hover { background: var(--color-cta-hover); color: #FFF; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,98,61,0.3); }
.btn--blue { background: var(--color-primary); color: #FFF; }
.btn--blue:hover { background: var(--color-primary-light); color: #FFF; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,111,168,0.25); }
.btn--outline { background: transparent; color: #FFF; border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: rgba(255,255,255,0.7); color: #FFF; transform: translateY(-2px); }
.btn--outline-blue { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn--outline-blue:hover { background: var(--color-primary-subtle); color: var(--color-primary); transform: translateY(-2px); }
.btn--block { display: block; width: 100%; }
.btn--sm { font-size: 15px; padding: 14px 24px; }
.btn--lg { font-size: 17px; padding: 18px 44px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* HERO */
.hero { background: var(--color-primary-dark); padding: 80px 0 0; position: relative; overflow: hidden; min-height: 520px; }
.hero .container { position: relative; z-index: 2; display: flex; align-items: flex-start; gap: 48px; }
.hero__content { flex: 1; max-width: 620px; padding-bottom: 80px; }
.hero__visual { flex: 0 0 400px; height: 400px; position: relative; }
.hero__badge { display: inline-block; background: rgba(27,111,168,0.25); color: var(--color-text-light); font-family: var(--font-body); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; letter-spacing: 0.5px; }
.hero h1 { color: #FFF; margin-bottom: 20px; }
.hero__subtitle { font-size: 19px; color: var(--color-text-light); line-height: 1.6; margin-bottom: 36px; }
.hero__stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero__stat-number { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #FFF; }
.hero__stat-label { font-size: 14px; color: var(--color-text-light); margin-top: 4px; }
.hero__trust { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 8px 18px 8px 14px; margin-top: 20px; }
.hero__trust-stars { display: flex; gap: 2px; }
.hero__trust-label { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: #FFF; }
.hero__waves { position: absolute; bottom: 0; left: 0; right: 0; top: 0; overflow: hidden; pointer-events: none; }
.hero__wave { position: absolute; bottom: -5%; left: -5%; width: 110%; }
.hero__wave--1 { height: 55%; fill: var(--color-primary-light); opacity: 0.18; animation: wave1 14s ease-in-out infinite; }
.hero__wave--2 { height: 45%; fill: var(--color-primary); opacity: 0.12; animation: wave2 11s ease-in-out infinite; animation-delay: -4s; }
.hero__wave--3 { height: 35%; fill: var(--color-cta); opacity: 0.08; animation: wave3 16s ease-in-out infinite; animation-delay: -8s; }
@keyframes wave1 { 0%,100% { transform: translateX(0) translateY(0) scaleY(1); } 50% { transform: translateX(-25px) translateY(-10px) scaleY(1.05); } }
@keyframes wave2 { 0%,100% { transform: translateX(0) translateY(0) scaleY(1); } 50% { transform: translateX(30px) translateY(8px) scaleY(0.95); } }
@keyframes wave3 { 0%,100% { transform: translateX(0) translateY(0); } 50% { transform: translateX(-18px) translateY(-15px); } }
.hero__devices { display: none; }

/* PHONE MOCKUP */
.phone-mockup { width: 280px; height: 560px; background: #000; border-radius: 40px; padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); position: relative; margin: 0 auto; }
.phone-mockup__notch { width: 120px; height: 28px; background: #000; border-radius: 0 0 16px 16px; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 3; }
.phone-mockup__screen { width: 100%; height: 100%; background: var(--color-bg); border-radius: 30px; overflow: hidden; position: relative; }
.phone-mockup__scroll { position: absolute; top: 0; left: 0; width: 100%; animation: phoneScroll 12s ease-in-out infinite; }
@keyframes phoneScroll { 0%,15% { transform: translateY(0); } 40%,55% { transform: translateY(-18%); } 80%,100% { transform: translateY(0); } }

/* DEVICE ROW (Mobile) */
.device-row { display: flex; align-items: flex-end; justify-content: center; gap: 12px; padding: 0 20px; max-width: 340px; margin: 0 auto; }
.device__screen { background: #fff; overflow: hidden; }
.device__nav { display: flex; align-items: center; gap: 3px; padding: 4px 5px; background: var(--color-primary-dark); }
.device__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.device__bar { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.device__hamburger { width: 7px; height: 5px; margin-left: auto; border-top: 1.5px solid rgba(255,255,255,0.5); border-bottom: 1.5px solid rgba(255,255,255,0.5); }
.device__body { padding: 6px 5px; display: flex; flex-direction: column; gap: 3px; }
.device__line { background: var(--color-primary-dark); border-radius: 2px; }
.device__btn { width: 45%; height: 10px; background: var(--color-cta); border-radius: 2px; margin-top: 2px; }
.device__cards { display: flex; gap: 3px; margin-top: 4px; }
.device__card { flex: 1; height: 18px; background: var(--color-bg); border-radius: 2px; }
.device__img { height: 20px; background: var(--color-bg); border-radius: 2px; margin-top: 3px; }
.device--phone { width: 44px; }
.device--phone .device__frame { background: #1a1a1a; border-radius: 7px; padding: 3px; position: relative; box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.device--phone .device__notch { width: 16px; height: 3px; background: #1a1a1a; border-radius: 0 0 3px 3px; position: absolute; top: 3px; left: 50%; transform: translateX(-50%); z-index: 2; }
.device--phone .device__screen { border-radius: 5px; aspect-ratio: 9/16; }
.device--laptop { width: 180px; }
.device__lid { background: #1a1a1a; border-radius: 5px 5px 0 0; padding: 4px; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.device--laptop .device__screen { border-radius: 3px; aspect-ratio: 16/10; }
.device__base { height: 7px; background: linear-gradient(to bottom, #444, #333); border-radius: 0 0 3px 3px; margin: 0 -3px; border-top: 1px solid #555; }
.device--tablet { width: 72px; }
.device--tablet .device__frame { background: #1a1a1a; border-radius: 6px; padding: 4px; box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.device--tablet .device__screen { border-radius: 3px; aspect-ratio: 3/4; }

/* TRUST BAR */
.trust-bar { background: var(--color-bg-white); border-bottom: 1px solid var(--color-neutral); padding: 16px 0; }
.trust-bar__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-bar__item { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--color-text); display: flex; align-items: center; gap: 8px; }
.trust-bar__item svg { color: var(--color-primary); flex-shrink: 0; }

/* STATEMENT */
.statement { max-width: 760px; margin: 0 auto; text-align: center; }
.statement__eyebrow { font-family: var(--font-heading); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-primary); margin-bottom: 16px; }
.statement__heading { font-size: 36px; line-height: 1.2; margin-bottom: 24px; }
.statement__text { font-size: 18px; line-height: 1.7; color: var(--color-text-muted); max-width: 640px; margin: 0 auto 40px; }
.statement__highlight { display: inline-flex; align-items: center; gap: 20px; background: var(--color-bg-white); border: 2px solid var(--color-neutral); border-radius: var(--radius-xl); padding: 24px 32px; text-align: left; box-shadow: var(--shadow-md); }
.statement__number { font-family: var(--font-heading); font-size: 52px; font-weight: 700; color: var(--color-primary); line-height: 1; flex-shrink: 0; }
.statement__caption { font-size: 15px; color: var(--color-text-muted); line-height: 1.55; }
.statement__source { font-size: 11px; color: var(--color-text-muted); opacity: 0.6; display: block; margin-top: 4px; }

/* STATEMENT SPLIT (aligned with about-section) */
.statement--split .statement__items {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.statement__media {
  width: 320px;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-neutral);
  flex-shrink: 0;
}

.statement__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.statement__content .statement__heading {
  margin-bottom: 16px;
}

.statement__text {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
}


/* TABLET */
@media (max-width: 900px) {
  .statement--split .statement__items {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .statement__media {
    width: 100%;
    max-width: 420px;
    height: 480px;
    margin: 0 auto;
  }

  .statement__media {
    order: 1;
  }

  .statement__content {
    order: 2;
  }
}


/* MOBILE */
@media (max-width: 480px) {
  .statement__media {
    height: 420px;
  }

  .statement__media img {
    object-position: top;
  }

  .statement__text {
    font-size: 15px;
  }
}

/* SOLUTION BAR */
.solution-bar { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; max-width: 900px; margin: 0 auto; }
.solution-bar__item { text-align: center; padding: 8px 24px; }
.solution-bar__icon { width: 56px; height: 56px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--color-cta); }
.solution-bar__item h3 { color: #FFF; font-size: 17px; margin-bottom: 6px; }
.solution-bar__item p { font-size: 14px; }
.solution-bar__divider { width: 1px; height: 64px; background: rgba(255,255,255,0.12); }

/* SHOWCASE */
.showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.showcase__text h2 { margin-bottom: 16px; }
.showcase__text > p { font-size: 17px; line-height: 1.65; }
.showcase__features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.showcase__feat { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 15px; font-weight: 500; color: var(--color-text); }
.showcase__feat svg { color: var(--color-success); flex-shrink: 0; }
.showcase__browser { background: #FFF; border: 1px solid var(--color-neutral); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.showcase__browser-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--color-bg); border-bottom: 1px solid var(--color-neutral); }
.showcase__browser-dots { display: flex; gap: 6px; }
.showcase__browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--color-neutral); }
.showcase__browser-url { flex: 1; font-size: 12px; color: var(--color-text-muted); background: #FFF; padding: 5px 12px; border-radius: 4px; border: 1px solid var(--color-neutral); }
.showcase__browser-body { min-height: 260px; }
.showcase__note { font-size: 12px; color: var(--color-text-muted); text-align: center; margin-top: 12px; font-style: italic; }

/* TIMELINE */
.timeline { display: flex; gap: 0; position: relative; padding: 0 20px; }
.timeline::before { content: ''; position: absolute; top: 28px; left: calc(100% / 12 + 20px); right: calc(100% / 12 + 20px); height: 2px; background: linear-gradient(to right, var(--color-primary), var(--color-success)); z-index: 0; }
.timeline__step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.timeline__number { width: 56px; height: 56px; background: var(--color-primary); color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin: 0 auto 16px; border: 4px solid var(--color-bg); box-shadow: var(--shadow-md); }
.timeline__step h3 { margin-bottom: 8px; font-size: 17px; }
.timeline__step p { font-size: 14px; max-width: 220px; margin: 0 auto; }

/* PAKET CARDS */
.paket { background: #FFF; border: 2px solid var(--color-neutral); border-radius: var(--radius-xl); padding: 36px 28px; position: relative; display: flex; flex-direction: column; transition: all var(--transition); box-shadow: var(--shadow-md); }
.paket:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(27,111,168,0.2); }
.paket--featured { border: 2px solid var(--color-primary); box-shadow: 0 8px 32px rgba(27,111,168,0.12); }
.paket--featured:hover { box-shadow: 0 12px 40px rgba(27,111,168,0.18); }
.paket__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--color-primary); color: #FFF; font-family: var(--font-heading); font-size: 12px; font-weight: 600; padding: 5px 18px; border-radius: 20px; white-space: nowrap; }
.paket__name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.paket__desc { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; min-height: 42px; }
.paket__price { font-family: var(--font-heading); font-size: 42px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.5px; }
.paket__price span { font-size: 16px; font-weight: 400; color: var(--color-text-muted); }
.paket__rate { font-size: 13px; color: var(--color-text-muted); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--color-neutral); }
.paket__features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.paket__features li { font-size: 14px; color: var(--color-text-muted); padding: 7px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.paket__check { color: var(--color-success); font-weight: 700; flex-shrink: 0; }
.paket__after { text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--color-neutral); }
.paket__after p { font-size: 15px; margin-bottom: 12px; }

/* BRANCHEN */
.branchen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 720px; margin: 0 auto; }
.branchen-chip { display: flex; align-items: center; justify-content: center; gap: 10px; background: #FFF; border: 2px solid var(--color-neutral); border-radius: 40px; padding: 16px 20px; font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--color-text); text-decoration: none; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.branchen-chip:hover { color: var(--color-primary); border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.branchen-chip svg { color: var(--color-primary); flex-shrink: 0; }
.branchen-chip--cta { background: var(--color-primary-subtle); border-color: var(--color-primary); color: var(--color-primary); border-style: dashed; }
.branchen-chip--cta:hover { background: var(--color-primary); color: #FFF; border-style: solid; }
.branchen-chip--cta:hover svg { color: #FFF; }

/* ABOUT TEASER (large, 2-column) */
.about-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-section__photos {
  display: flex;
  gap: 24px;
}

.about-section__photo {
  width: 180px;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--color-neutral);
  background: var(--color-primary-subtle);
}

/* image inside */
.about-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Henri slightly different tone */
.about-section__photo--henri::after {
  background: linear-gradient(
    180deg,
    rgba(13, 43, 66, 0.0) 60%,
    rgba(13, 43, 66, 0.35)
  );
}

.about-section__text h2 {
  margin-bottom: 12px;
}

.about-section__text p {
  font-size: 16px;
  line-height: 1.65;
}

.about-section__link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}


/* TABLET */
@media (max-width: 800px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .about-section__photos {
    justify-content: center;
  }

  .about-section__photo {
    width: 200px;
    height: 280px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .about-section__photos {
    gap: 16px;
  }

  .about-section__photo {
    width: 150px;
    height: 220px;
  }
}

@media (max-width: 360px) {
  .about-section__photo {
    width: 130px;
    height: 190px;
  }
}

/* USP GRID */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.usp { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.04); border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.08); }
.usp__icon { width: 60px; height: 60px; background: rgba(194,98,61,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--color-cta); }
.usp h3 { color: #FFF; font-size: 18px; margin-bottom: 10px; }
.usp p { font-size: 15px; }

/* ACCORDION */
.accordion { max-width: 720px; background: #FFF; border: 1px solid rgba(13,43,66,0.10); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--color-neutral); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger { width: 100%; background: none; border: none; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; }
.accordion__trigger h4 { font-size: 17px; transition: color var(--transition); font-weight: 600; line-height: 1.4; }
.accordion__trigger:hover h4 { color: var(--color-primary); }
.accordion__icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.accordion__icon::before, .accordion__icon::after { content: ''; position: absolute; background: var(--color-text-muted); border-radius: 2px; transition: all var(--transition); }
.accordion__icon::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__icon::after { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__item.active .accordion__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.accordion__content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion__content p { padding: 0 24px 22px; font-size: 15px; color: var(--color-text-muted); line-height: 1.65; }
.accordion__item.active .accordion__content { max-height: 500px; }

/* CTA SECTION with "auftauchen" animation */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section__logo { display: block; width: 64px; height: 64px; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15); border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.cta-section__logo.visible { opacity: 1; transform: translateY(0); }
.cta-section__logo svg { width: 28px; height: 28px; }

/* FOOTER */
.footer { background: #081C2E; padding: 64px 0 36px; color: var(--color-text-light); }
.footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #FFF; margin-bottom: 8px; }
.footer__tagline { font-size: 14px; color: var(--color-text-light); margin-bottom: 16px; }
.footer p { font-size: 14px; color: var(--color-text-light); margin-bottom: 4px; }
.footer__col h4 { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: #FFF; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14px; color: var(--color-text-light); text-decoration: none; padding: 5px 0; transition: color var(--transition); }
.footer__col a:hover { color: #FFF; }
.footer__branchen { max-width: var(--max-width); margin: 32px auto 0; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__branchen h4 { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: #FFF; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer__branchen-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__branchen-links a { font-size: 13px; color: var(--color-text-light); text-decoration: none; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; transition: all var(--transition); }
.footer__branchen-links a:hover { color: #FFF; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.footer__bottom { max-width: var(--max-width); margin: 48px auto 0; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(184,212,232,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* PRICE NOTE */
.price-note { font-size: 13px; color: var(--color-text-muted); margin-top: 16px; }
.price-note--care { display: block; margin-top: 8px; }
.price-note--care a { font-weight: 600; }

/* MISC */
.comparison-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-xl); }
.comparison { background: #FFF; border-radius: var(--radius-xl); border: 1px solid var(--color-neutral); overflow: hidden; min-width: 540px; }

/* HAMBURGER MENU */
/* The .mobile-overlay is created by JS and appended to <body> (outside header) */
/* This avoids the position:sticky containment bug on iOS/WebKit */
.mobile-overlay { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: #FFFFFF; padding: 20px 24px 24px; gap: 0; z-index: 9999; overflow-y: auto; -webkit-overflow-scrolling: touch; animation: navSlide 0.3s ease; }
.mobile-overlay a { font-family: var(--font-body); font-size: 17px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--color-neutral); color: var(--color-text); text-decoration: none; display: block; width: 100%; }
.mobile-overlay a:hover { color: var(--color-primary); }
.mobile-overlay a::after { display: none; }
.mobile-overlay .nav__cta { margin-top: 12px; text-align: center; border-bottom: none !important; padding: 14px 20px !important; font-size: 16px !important; background: var(--color-cta) !important; color: #FFF !important; border-radius: var(--radius-btn) !important; display: block; }
.mobile-overlay .nav__cta:hover { background: var(--color-cta-hover) !important; }
body.menu-open { overflow: hidden; }
/* Keep original nav--open as fallback (desktop never hits this) */
.nav--open { display: none !important; }
@keyframes navSlide { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.nav--open a { font-size: 17px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--color-neutral); color: var(--color-text); width: 100%; }
.nav--open a::after { display: none; }
.nav--open .nav__cta { margin-top: 12px; text-align: center; border-bottom: none !important; padding: 14px 20px !important; font-size: 16px !important; width: 100%; }
.hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--active span:nth-child(2) { opacity: 0; }
.hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   PAKETE-SEITE + UNTERSEITEN – Erweiterte Klassen
   ============================================================ */

/* PAKET DETAIL VARIANT */
.paket--detail { padding: 0; overflow: visible; }
.paket--detail .paket__top, .paket--detail .paket__details, .paket--detail .paket__cta { overflow: hidden; }
.paket--detail .paket__top { padding: 36px 28px 28px; }
.paket--detail .paket__details { background: var(--color-bg); padding: 16px 28px; border-top: 1px solid var(--color-neutral); }
.paket--featured .paket__details { background: rgba(27,111,168,0.02); }
.paket__details p { font-size: 13px; color: var(--color-text-muted); margin: 0; }
.paket__cta { padding: 0 28px 28px; padding-top: 20px; }

/* CARE CARDS */
.care-card { background: #FFF; border: 2px solid var(--color-neutral); border-radius: var(--radius-xl); padding: 32px 24px; transition: all var(--transition); position: relative; box-shadow: var(--shadow-md); }
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.care-card--featured { border: 2px solid var(--color-primary); box-shadow: 0 8px 32px rgba(27,111,168,0.12); }
.care-card__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--color-primary); color: #FFF; font-family: var(--font-heading); font-size: 11px; font-weight: 600; padding: 4px 14px; border-radius: 12px; white-space: nowrap; }
.care-card h3 { margin-bottom: 4px; font-size: 20px; }
.care-price { font-family: var(--font-heading); font-size: 32px; font-weight: 700; margin-bottom: 4px; }
.care-price span { font-size: 14px; font-weight: 400; color: var(--color-text-muted); }
.care-note { font-size: 13px; color: var(--color-text-muted); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--color-neutral); }
.care-card ul { list-style: none; }
.care-card li { font-size: 14px; color: var(--color-text-muted); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.care-check { color: var(--color-success); font-weight: 700; flex-shrink: 0; }

/* CUSTOM LAYOUT (2-column dark) */
.custom-layout { display: flex; gap: 64px; align-items: center; }
.custom-layout__text { flex: 1; min-width: 300px; }
.custom-layout__features { flex: 0 0 320px; display: flex; flex-direction: column; gap: 14px; }
.custom-feat { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--color-text-light); }
.custom-feat svg { color: var(--color-cta); flex-shrink: 0; }

/* ADDON HIGHLIGHT (fotoshooting) */
.addon-highlight { display: grid; grid-template-columns: auto 1fr auto auto; gap: 20px; align-items: center; background: #FFF; border: 2px solid var(--color-primary); border-radius: var(--radius-xl); padding: 28px 32px; margin-bottom: 40px; box-shadow: var(--shadow-md); }
.addon-highlight__icon { width: 56px; height: 56px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFF; flex-shrink: 0; }
.addon-highlight__text h3 { font-size: 18px; margin-bottom: 4px; }
.addon-highlight__text p { font-size: 14px; margin: 0; }
.addon-highlight__prices { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--color-text-muted); }
.addon-highlight__prices strong { color: var(--color-text); font-family: var(--font-heading); }
.addon-highlight__link { font-family: var(--font-heading); font-size: 14px; font-weight: 600; white-space: nowrap; }

/* ADDON LIST COMPACT */
.addon-list-compact { max-width: 800px; margin: 0 auto; }
.addon-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--color-neutral); position: relative; }
.addon-row:last-child { border-bottom: none; }
.addon-row__icon { width: 40px; height: 40px; background: var(--color-primary-subtle); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; }
.addon-row__info { flex: 1; }
.addon-row__info h4 { font-size: 16px; margin-bottom: 2px; }
.addon-row__info p { font-size: 13px; margin: 0; }
.addon-row__price { font-family: var(--font-heading); font-size: 16px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.addon-row__note { position: absolute; right: 0; bottom: 4px; font-size: 11px; color: var(--color-success); font-weight: 600; }

/* COMPARISON */
.comparison__header { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; background: var(--color-primary-dark); padding: 16px 24px; }
.comparison__header span { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: #FFF; }
.comparison__header span:last-child { color: var(--color-cta); }
.comparison__row { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; padding: 14px 24px; border-bottom: 1px solid var(--color-neutral-light); font-size: 14px; transition: background var(--transition); }
.comparison__row:hover { background: var(--color-primary-subtle); }
.comparison__row:last-child { border-bottom: none; }
.comparison__row span:first-child { font-weight: 500; color: var(--color-text); }
.comparison__row span:nth-child(2) { color: var(--color-text-muted); }
.comparison__row span:last-child { color: var(--color-success); font-weight: 600; }


/* VS-TABLE (modern comparison) */
.vs-table { max-width: 800px; margin: 0 auto; background: #FFF; border-radius: var(--radius-xl); border: 1px solid var(--color-neutral); box-shadow: var(--shadow-md); overflow: hidden; }
.vs-table__header { display: grid; grid-template-columns: 1.2fr 1fr 1fr; padding: 16px 24px; background: var(--color-primary-dark); }
.vs-table__header span:first-child { visibility: hidden; }
.vs-table__col-label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); text-align: center; }
.vs-table__col-label--us { color: #FFF; }
.vs-table__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; padding: 14px 24px; border-bottom: 1px solid var(--color-neutral-light); align-items: center; transition: background var(--transition); }
.vs-table__row:hover { background: var(--color-primary-subtle); }
.vs-table__row--last { border-bottom: none; }
.vs-table__feature { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--color-text); }
.vs-table__other { font-size: 13px; color: var(--color-text-muted); text-align: center; position: relative; padding-left: 18px; }
.vs-table__other::before { content: '×'; position: absolute; left: 0; color: #c0392b; font-weight: 700; font-size: 14px; }
.vs-table__us { font-size: 13px; color: var(--color-success); font-weight: 600; text-align: center; position: relative; padding-left: 18px; }
.vs-table__us::before { content: '✓'; position: absolute; left: 0; font-weight: 700; font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__visual { flex: 0 0 300px; height: 300px; }
  .phone-mockup { width: 220px; height: 440px; border-radius: 32px; padding: 10px; }
  .phone-mockup__notch { width: 100px; height: 24px; }
  .phone-mockup__screen { border-radius: 24px; }
  .nav { gap: 20px; }
  .nav a { font-size: 14px; }
  .showcase { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  h1 { font-size: 32px; letter-spacing: -0.5px; }
  h2 { font-size: 26px; }
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .nav { display: none; }
  .hamburger { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 0; min-height: auto; }
  .hero .container { flex-direction: column; }
  .hero__content { padding-bottom: 16px; text-align: center; }
  .hero__visual { display: none; }
  .hero__subtitle { font-size: 17px; margin-bottom: 24px; }
  .hero__btn-group { flex-direction: column; gap: 8px; align-items: center; }
  .hero__btn-group .btn { width: 100%; text-align: center; }
  .hero__btn-secondary { background: transparent !important; border: none !important; color: rgba(255,255,255,0.7) !important; font-size: 15px !important; padding: 8px 0 !important; text-decoration: underline !important; text-underline-offset: 3px !important; min-height: auto !important; }
  .hero__trust { display: flex; justify-content: center; }
  .hero__stats { flex-direction: row; gap: 0; justify-content: space-between; text-align: center; padding-top: 20px; margin-top: 20px; }
  .hero__stats > div { flex: 1; }
  .hero__stats > div:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
  .hero__stat-number { font-size: 20px; }
  .hero__stat-label { font-size: 11px; }
  .hero__devices { display: block; position: relative; z-index: 2; padding: 16px 20px 56px; }
  .trust-bar__inner { gap: 16px; }
  .trust-bar__item { font-size: 12px; gap: 6px; }
  .trust-bar__item:nth-child(n+3) { display: none; }
  .trust-bar__item svg { width: 14px; height: 14px; }
  .statement__text { font-size: 16px; }
  .statement__highlight { flex-direction: column; gap: 12px; text-align: center; }
  .statement__number { font-size: 44px; }
  
  .solution-bar { grid-template-columns: 1fr; gap: 0; }
  .solution-bar__divider { width: 40px; height: 1px; margin: 8px auto; }
  .solution-bar__item { padding: 16px 8px; }
  .showcase { grid-template-columns: 1fr; gap: 32px; }
  .showcase__text { text-align: center; }
  .showcase__features { align-items: center; }
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 16px; }
  .timeline { flex-direction: column; gap: 0; padding: 0 0 0 28px; }
  .timeline::before { display: block; top: 0; bottom: 0; left: 21px; right: auto; width: 2px; height: auto; }
  .timeline__step { text-align: left; display: block; padding: 0 0 32px 24px; position: relative; }
  .timeline__step:last-child { padding-bottom: 0; }
  .timeline__number { position: absolute; left: -28px; top: 0; margin: 0; width: 44px; height: 44px; font-size: 16px; border-color: var(--color-bg); }
  .timeline__step h3 { font-size: 17px; margin-bottom: 6px; }
  .timeline__step p { max-width: none; margin: 0; }
  .paket { padding: 28px 24px; text-align: center; }
  .paket__desc { min-height: auto; }
  .paket__features { text-align: left; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .branchen-chip { padding: 12px 14px; font-size: 13px; gap: 6px; }
  .branchen-chip svg { width: 16px; height: 16px; }
  .usp-grid { grid-template-columns: 1fr; gap: 16px; }
  .usp { padding: 24px 16px; }
  .wave-divider svg { height: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .btn-group:not(.hero__btn-group) { flex-direction: column; }
  .btn-group:not(.hero__btn-group) .btn { width: 100%; }
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .paket__price { font-size: 36px; }
  .section--compact { padding: 40px 0; }
  .cta-section__logo { width: 56px; height: 56px; }

  .custom-layout { flex-direction: column; gap: 32px; }
  .custom-layout__features { flex: auto; }
  .addon-highlight { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 24px 20px; }
  .addon-highlight__icon { margin: 0 auto; }
  .addon-highlight__prices { align-items: center; }
  .addon-row { flex-wrap: wrap; gap: 12px; }
  .addon-row__price { width: 100%; text-align: left; padding-left: 56px; }
  .addon-row__note { position: static; padding-left: 56px; width: 100%; }
  .care-card { text-align: center; }
  .vs-table__header { grid-template-columns: 1fr; padding: 12px 20px; }
  .vs-table__header span:first-child { display: none; }
  .vs-table__col-label { display: none; }
  .vs-table__col-label--us { display: none; }
  .vs-table__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 20px; }
  .vs-table__feature { font-size: 13px; margin-bottom: 4px; }
  .vs-table__other { text-align: left; font-size: 12px; }
  .vs-table__us { text-align: left; font-size: 13px; }
  .care-card ul { text-align: left; }
  .paket--detail .paket__top { padding: 28px 24px 24px; }
  .paket__cta { padding: 0 24px 24px; }
  .comparison__header, .comparison__row { font-size: 13px; padding: 12px 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .logo__img {
    display: none;
  }
  .logo__icon {
    width: 60px;
    height: 60px;
  }
  .container { padding: 0 16px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__stat-number { font-size: 18px; }
  .hero__stat-label { font-size: 10px; }
  .paket__price { font-size: 32px; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .branchen-chip { padding: 10px 12px; font-size: 12px; }
  .branchen-chip svg { width: 14px; height: 14px; }
  .device--laptop { width: 150px; }
  .device--tablet { width: 60px; }
  .device--phone { width: 38px; }
  .device-row { gap: 8px; max-width: 280px; }
  .statement__heading { font-size: 28px; }
}

/* ============================================================
   SEO/AEO ADDITIONS – Entity Box & Price Context
   ============================================================ */

/* Entity Description Box */
.entity-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 36px;
  background: var(--color-bg-white);
  border: 2px solid var(--color-neutral);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.entity-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.entity-box__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.entity-box__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.entity-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.entity-box__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-neutral);
}
.entity-box__meta-item {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.entity-box__meta-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.entity-box__meta-item strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Price Context Box */
.price-context {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(27,111,168,0.12);
}
.price-context__heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-context__heading svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.price-context p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .entity-box { padding: 24px 20px; }
  .entity-box__meta { flex-direction: column; gap: 10px; }
  .price-context { padding: 20px; }
}

/* ============================================================
   NEW SECTIONS – V3.2 Startseite Redesign
   ============================================================ */

/* INTEREST SECTION (replaces Trust-Bar + Statement) */
.interest { padding: 80px 0; }
.interest__grid { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.interest__stat { text-align: center; min-width: 200px; }
.interest__stat-number { font-family: var(--font-heading); font-size: 80px; font-weight: 700; color: var(--color-primary); line-height: 1; margin-bottom: 4px; }
.interest__stat-label { font-family: var(--font-heading); font-size: 15px; font-weight: 500; color: var(--color-text-muted); line-height: 1.4; max-width: 200px; margin: 0 auto; }
.interest__stat-source { font-size: 11px; color: var(--color-text-muted); opacity: 0.5; margin-top: 8px; display: block; }
.interest__content { max-width: 580px; }
.interest__content h2 { margin-bottom: 16px; }
.interest__content > p { font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
.interest__points { display: flex; gap: 24px; flex-wrap: wrap; }
.interest__point { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--color-text); }
.interest__point-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.interest__point-icon--google { background: rgba(27,111,168,0.08); color: var(--color-primary); }
.interest__point-icon--maps { background: rgba(34,133,119,0.08); color: var(--color-success); }
.interest__point-icon--ai { background: rgba(194,98,61,0.08); color: var(--color-cta); }

/* SHOWCASE – Device Switcher */
.showcase__tabs { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; }
.showcase__tab { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: var(--color-text-muted); background: var(--color-bg); border: 1px solid var(--color-neutral); border-radius: 8px; padding: 8px 16px; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.showcase__tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.showcase__tab.active { background: var(--color-primary-dark); color: #FFF; border-color: var(--color-primary-dark); }
.showcase__device-area { position: relative; min-height: 320px; }
.showcase__device { display: none; }
.showcase__device.active { display: block; }

/* Wireframe content inside devices */
.wf { font-family: var(--font-heading); }
.wf__nav { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-bottom: 1px solid var(--color-neutral-light); }
.wf__nav-logo { width: 24px; height: 24px; background: var(--color-primary-dark); border-radius: 50%; flex-shrink: 0; }
.wf__nav-links { display: flex; gap: 6px; }
.wf__nav-link { width: 28px; height: 4px; background: var(--color-neutral); border-radius: 2px; display: block; }
.wf__nav-cta { width: 48px; height: 16px; background: var(--color-cta); border-radius: 3px; }
.wf__hero { background: var(--color-primary-dark); padding: 20px 12px 16px; }
.wf__hero-badge { width: 60px; height: 10px; background: rgba(255,255,255,0.1); border-radius: 8px; margin-bottom: 8px; }
.wf__hero-h1 { width: 85%; height: 8px; background: rgba(255,255,255,0.8); border-radius: 3px; margin-bottom: 6px; }
.wf__hero-h1b { width: 65%; height: 8px; background: rgba(255,255,255,0.6); border-radius: 3px; margin-bottom: 10px; }
.wf__hero-text { width: 75%; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 4px; }
.wf__hero-text2 { width: 60%; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 12px; }
.wf__hero-btns { display: flex; gap: 6px; }
.wf__hero-btn1 { width: 64px; height: 18px; background: var(--color-cta); border-radius: 3px; }
.wf__hero-btn2 { width: 54px; height: 18px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 3px; }
.wf__stats { display: flex; justify-content: space-around; padding: 10px 12px; background: var(--color-bg-white); border-bottom: 1px solid var(--color-neutral-light); }
.wf__stat { text-align: center; }
.wf__stat-num { width: 24px; height: 7px; background: var(--color-primary-dark); border-radius: 2px; margin: 0 auto 3px; }
.wf__stat-label { width: 32px; height: 3px; background: var(--color-neutral); border-radius: 2px; margin: 0 auto; }
.wf__section { padding: 14px 12px; }
.wf__section-label { width: 40px; height: 4px; background: var(--color-primary); border-radius: 2px; margin: 0 auto 8px; }
.wf__section-h2 { width: 70%; height: 6px; background: var(--color-primary-dark); border-radius: 3px; margin: 0 auto 10px; }
.wf__section-text { width: 80%; height: 3px; background: var(--color-neutral); border-radius: 2px; margin: 0 auto 4px; }
.wf__section-text2 { width: 65%; height: 3px; background: var(--color-neutral-light); border-radius: 2px; margin: 0 auto 12px; }
.wf__cards { display: flex; gap: 6px; padding: 0 12px 14px; justify-content: center; }
.wf__card { flex: 1; max-width: 100px; background: var(--color-bg); border: 1px solid var(--color-neutral-light); border-radius: 6px; padding: 8px 6px; text-align: center; }
.wf__card-icon { width: 18px; height: 18px; background: rgba(27,111,168,0.08); border-radius: 50%; margin: 0 auto 5px; }
.wf__card-title { width: 70%; height: 4px; background: var(--color-primary-dark); border-radius: 2px; margin: 0 auto 4px; opacity: 0.6; }
.wf__card-text { width: 85%; height: 3px; background: var(--color-neutral); border-radius: 2px; margin: 0 auto 2px; }
.wf__card-text2 { width: 60%; height: 3px; background: var(--color-neutral-light); border-radius: 2px; margin: 0 auto; }

/* Showcase phone mockup */
.showcase__phone-mock {
  background: #1a1a1a;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  position: relative;
}
.showcase__phone-notch {
  width: 80px;
  height: 18px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.showcase__phone-screen {
  background: #FFF;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  overflow-y: auto;
  scrollbar-width: none;
}
.showcase__phone-screen::-webkit-scrollbar { display: none; }

/* ============================================================
   CARE SECTION – Split with Feature Blocks (Variante B)
   ============================================================ */

.care__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.care__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.care__price { font-family: var(--font-heading); font-size: 14px; color: var(--color-text-light); line-height: 1.4; }
.care__price strong { color: #FFF; font-size: 20px; font-weight: 700; display: block; }
.care__inclusive { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 14px; color: var(--color-text-light); }
.care__inclusive strong { color: #FFF; }

.care__features { display: flex; flex-direction: column; gap: 12px; }
.care__feat { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; transition: all var(--transition); }
.care__feat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); transform: translateX(4px); }
.care__feat-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.care__feat-title { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: #FFF; margin-bottom: 3px; }
.care__feat-desc { font-size: 14px; color: var(--color-text-light); line-height: 1.45; margin: 0; }

/* Phone mockup wireframe */
.wf--phone-hero .wf__nav-logo { background: #FFF; }

/* ============================================================
   RESPONSIVE – New Sections
   ============================================================ */

@media (max-width: 768px) {
  .interest { padding: 56px 0; }
  .interest__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .interest__stat-number { font-size: 56px; }
  .interest__content { max-width: 100%; }
  .interest__content h2 { font-size: 24px; }
  .interest__points { justify-content: center; }

  .showcase__tabs { gap: 4px; }
  .showcase__tab { font-size: 12px; padding: 8px 14px; }
  .showcase__device-area { min-height: 260px; }

  .care__grid { grid-template-columns: 1fr; gap: 32px; }
  .care__cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .care__cta .btn { width: 100%; text-align: center; justify-content: center; }
  .care__price { text-align: center; }
  .care__inclusive { justify-content: center; }
  .care__features { gap: 10px; }
  .care__feat { padding: 16px 14px; gap: 12px; }
  .care__feat:hover { transform: none; }
  .care__feat-icon { width: 36px; height: 36px; }
  .care__feat-title { font-size: 14px; }
  .care__feat-desc { font-size: 13px; }
}

@media (max-width: 480px) {
  .interest__stat-number { font-size: 48px; }
  .interest__points { flex-direction: column; align-items: center; gap: 10px; }

  .care__grid { gap: 24px; }
  .care__feat { padding: 14px 12px; gap: 10px; }
  .care__feat-icon { width: 32px; height: 32px; border-radius: 8px; }
  .care__feat-icon svg { width: 16px; height: 16px; }
}
