/* ── Fonts (self-hosted variable font) ── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --bg: #f6f5f1;
  --bg-warm: #f0efe9;
  --white: #ffffff;
  --card: #ffffff;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 2px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
  --accent: #3aa89d;
  --accent-light: #e8f5f2;
  --accent-dark: #2d8a7f;
  --red: #dc4a4a;
  --red-light: #fef2f2;
  --green: #22863a;
  --green-light: #f0fdf4;
  --dark: #1a1a1a;
  --text: #444;
  --text-muted: #777;
  --text-faint: #aaa;
  --border: #e8e6e1;
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-w: 1060px;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.018;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Scroll reveal ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.rv.v { opacity: 1; transform: none; }
.d1 { transition-delay: 0.06s; } .d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; } .d4 { transition-delay: 0.24s; }

/* ── Section primitives ── */
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.kicker-center { text-align: center; }
.sh { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; line-height: 1.15; color: var(--dark); letter-spacing: -0.8px; margin-bottom: 16px; }
.sh-center { text-align: center; }
.sd { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 560px; }
.sd-center { text-align: center; margin-left: auto; margin-right: auto; }

.card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--card-shadow); transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: var(--card-shadow-hover); }
.card-lift:hover { transform: translateY(-4px); }

.section { padding: 80px 0; }
.section-alt { background: var(--white); }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 245, 241, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a, .nav-dd > .nav-dd-trigger {
  color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.2s;
  padding: 8px 12px; border-radius: 8px; display: flex; align-items: center; gap: 4px;
}
.nav-links > a:not(.nav-cta):hover, .nav-dd:hover > .nav-dd-trigger { color: var(--dark); background: rgba(0,0,0,0.03); }
.nav-cta {
  background: var(--accent); color: var(--white) !important; padding: 8px 18px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 13px;
  transition: all 0.2s; box-shadow: 0 1px 3px rgba(58,168,157,0.3); margin-left: 6px;
}
.nav-cta:hover { background: var(--accent-dark); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,168,157,0.3); }

.nav-dd { position: relative; }
.nav-dd-trigger { cursor: default; background: none; border: none; font-family: var(--font); }
.nav-dd-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dd:hover .nav-dd-trigger svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(4px);
  transition: all 0.2s ease;
}
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a {
  display: block; padding: 10px 14px; border-radius: 8px; font-size: 13px;
  color: var(--text); font-weight: 500; transition: all 0.15s;
}
.nav-dd-menu a:hover { background: var(--accent-light); color: var(--accent-dark); }
.nav-dd-menu .dd-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); padding: 8px 14px 4px; }

/* ── Mobile menu ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--dark); flex-direction: column; gap: 5px; z-index: 201;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 200; overflow-y: auto;
  padding: 24px; opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.mobile-menu.open { opacity: 1; transform: none; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mm-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-faint); padding: 20px 0 6px;
}
.mobile-menu .mm-sub a { padding-left: 16px; font-weight: 500; font-size: 15px; color: var(--text); }
.mobile-menu .mm-cta {
  display: block; text-align: center; margin-top: 24px;
  background: var(--accent); color: var(--white); padding: 14px;
  border-radius: 12px; font-weight: 700; font-size: 16px; border: none;
}

/* ── CTA button ── */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 14px 32px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.25s; text-decoration: none;
  box-shadow: 0 2px 8px rgba(58,168,157,0.25);
}
.cta:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,168,157,0.3); }
.cta svg { width: 16px; height: 16px; }

.trust-line { font-size: 13px; color: var(--text-faint); margin-top: 14px; }
.urgency {
  display: inline-block; font-size: 13px; color: #b45309; font-weight: 700;
  margin-top: 14px; background: #fef3c7; padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(180,83,9,0.15);
}

/* ── Lite YouTube embed ── */
.yt-lite {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: #000; background-size: cover; background-position: center;
}
.yt-lite::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.15) 100%);
  transition: opacity 0.3s;
}
.yt-lite:hover::after { opacity: 0.7; }
.yt-lite .yt-play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: var(--accent); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.yt-lite:hover .yt-play { background: var(--accent-dark); transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.4); }
.yt-lite .yt-play svg { width: 22px; height: 22px; fill: var(--white); margin-left: 2px; }
.yt-lite iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.yt-lite-sm { border-radius: 10px; }
.yt-lite-sm .yt-play { width: 52px; height: 36px; border-radius: 10px; }
.yt-lite-sm .yt-play svg { width: 16px; height: 16px; }

/* ── FAQ accordion ── */
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--card-shadow); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--dark);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
}
.faq-q .ic { font-size: 18px; color: var(--text-faint); transition: all 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── Footer ── */
footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 32px;
}
.foot-brand img { height: 28px; margin-bottom: 12px; }
.foot-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.foot-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.foot-col a { display: block; font-size: 13px; color: var(--text-muted); padding: 4px 0; font-weight: 500; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.foot-bottom p { font-size: 12px; color: var(--text-faint); }
.foot-bottom-links { display: flex; gap: 20px; }
.foot-bottom-links a { font-size: 12px; color: var(--text-faint); }

/* ── Hero animations ── */
@keyframes hero-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes badge-in { from { opacity: 0; transform: translateY(-8px) scale(0.96); } to { opacity: 1; transform: none; } }

/* ── Hero ── */
.hero { padding: 64px 0 48px; text-align: center; }
.hero-card {
  background: var(--white); border-radius: 20px; box-shadow: var(--card-shadow);
  padding: 64px 48px 56px; max-width: 820px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #7dd3c7, var(--accent));
}
.hero h1 {
  font-size: clamp(32px, 5vw, 50px); font-weight: 800;
  line-height: 1.12; letter-spacing: -1.5px; color: var(--dark);
  margin: 0 0 20px; animation: hero-in 0.6s ease-out 0.1s both;
}
.hero-sub {
  font-size: 17px; color: var(--text-muted); max-width: 520px;
  margin: 0 auto 32px; line-height: 1.7;
  animation: hero-in 0.6s ease-out 0.2s both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-light); border: 1px solid rgba(58,168,157,0.2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.5px; text-transform: uppercase;
  animation: badge-in 0.4s ease-out both; margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero .cta { animation: hero-in 0.6s ease-out 0.3s both; }
.hero .trust-line { animation: hero-in 0.6s ease-out 0.4s both; }
.hero .urgency { animation: hero-in 0.6s ease-out 0.45s both; }

.rotate-wrap { position: relative; display: inline-block; }
.rotate-word {
  display: inline-block;
  color: var(--accent);
}

/* ── Stats ── */
.stats { padding: 16px 0 48px; }
.stats-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--dark); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.payment-line { text-align: center; font-size: 12px; color: var(--text-faint); margin-top: 24px; letter-spacing: 0.3px; }

/* ── Pain ── */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.pain-card {
  background: var(--red-light); border: 1px solid rgba(220,74,74,0.12);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.pain-card .pain-icon { font-size: 28px; margin-bottom: 12px; }
.pain-card h3 { font-size: 16px; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

.bridge { text-align: center; padding: 48px 0 0; }
.bridge-text { font-size: 20px; font-weight: 700; color: var(--dark); }

/* ── Steps ── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--card-shadow); transition: all 0.3s;
}
.section-alt .step { background: var(--bg); box-shadow: none; border: 1px solid var(--border); }
.step:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.step-num { font-size: 40px; font-weight: 800; color: var(--accent); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.step h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Features ── */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 48px; }
.feat-row.flip { direction: rtl; }
.feat-row.flip > * { direction: ltr; }
.feat-text .kicker { margin-bottom: 10px; }
.feat-text h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.2; }
.feat-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.feat-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); background: var(--bg-warm); }
.feat-img img { width: 100%; display: block; }

/* ── Integrations ── */
.int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.int-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 22px 16px;
  text-align: center; box-shadow: var(--card-shadow); transition: all 0.3s;
}
.section-alt .int-card { background: var(--bg); box-shadow: none; border: 1px solid var(--border); }
.int-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.int-card .ic { font-size: 24px; margin-bottom: 8px; }
.int-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.int-card p { font-size: 12px; color: var(--text-muted); }

/* ── Compare ── */
.compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.compare-card { padding: 32px; border-radius: var(--radius); }
.compare-card.bad { background: var(--red-light); border: 1px solid rgba(220,74,74,0.15); }
.compare-card.good { background: var(--green-light); border: 1px solid rgba(34,134,58,0.15); }
.compare-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.compare-card.bad h3 { color: var(--red); }
.compare-card.good h3 { color: var(--green); }
.compare-card p { font-size: 14px; line-height: 2; color: var(--text); }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.testi {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--card-shadow); transition: all 0.3s; overflow: hidden;
}
.section-alt .testi { background: var(--bg); box-shadow: none; border: 1px solid var(--border); }
.testi:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.testi blockquote { font-size: 14px; line-height: 1.75; color: var(--text); font-style: italic; margin-bottom: 16px; }
.testi blockquote strong { font-style: normal; color: var(--dark); }
.testi-who { font-size: 13px; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.testi-video { border-radius: 10px; overflow: hidden; position: relative; padding-bottom: 56.25%; height: 0; }
.testi-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── Table ── */
.table-wrap { overflow-x: auto; margin-top: 36px; border-radius: var(--radius); box-shadow: var(--card-shadow); background: var(--white); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cmp-table thead { background: var(--bg); }
.cmp-table th {
  padding: 16px 18px; font-weight: 700; color: var(--dark); border-bottom: 2px solid var(--border);
  text-align: center; white-space: nowrap;
}
.cmp-table th:first-child { text-align: left; }
.cmp-table th.hl { color: var(--accent); background: var(--accent-light); }
.cmp-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text);
  text-align: center;
}
.cmp-table td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.cmp-table tr:last-child td { border: none; }
.cmp-table tr:nth-child(even) { background: rgba(0,0,0,0.015); }
.cmp-table .g { color: var(--green); font-weight: 600; }
.cmp-table .r { color: var(--red); font-weight: 600; }
.cmp-table .m { color: var(--text-muted); }

/* ── Pricing ── */
.price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; max-width: 780px; margin-left: auto; margin-right: auto; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--card-shadow); position: relative; transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.price-card.pop {
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(58,168,157,0.12), 0 12px 32px rgba(58,168,157,0.12);
}
.price-card.pop::before {
  content: 'Beliebteste Wahl'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 3px 16px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.price-old { font-size: 15px; color: var(--text-faint); text-decoration: line-through; }
.price-num { font-size: 48px; font-weight: 800; color: var(--dark); letter-spacing: -2px; line-height: 1; margin-bottom: 20px; }
.price-list { list-style: none; margin-bottom: 24px; }
.price-list li { padding: 7px 0; font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.price-list .ck { color: var(--accent); font-weight: 700; }
.price-btn {
  display: block; width: 100%; padding: 12px; border-radius: var(--radius-sm);
  font-family: var(--font); font-weight: 700; font-size: 14px; text-align: center;
  border: 2px solid var(--border); background: transparent;
  color: var(--dark); cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.price-btn:hover { border-color: var(--accent); color: var(--accent); }
.price-card.pop .price-btn { background: var(--accent); border-color: var(--accent); color: var(--white); }
.price-card.pop .price-btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: 0 4px 12px rgba(58,168,157,0.3); }

/* ── Contact note ── */
.contact-note {
  max-width: 540px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 36px;
  box-shadow: var(--card-shadow); border: 1px solid var(--border);
  position: relative;
}
.contact-card::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
  border: 2px solid var(--white); box-shadow: 0 2px 8px rgba(58,168,157,0.15);
}
.contact-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.contact-mail {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); padding: 10px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--dark);
  border: 1px solid var(--border); transition: all 0.2s;
}
.contact-mail:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.contact-mail svg { width: 16px; height: 16px; color: var(--accent); }

/* ── Final CTA ── */
.final { padding: 80px 0; }
.final-card {
  background: var(--dark); border-radius: 20px; padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.final-card::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(58,168,157,0.12) 0%, transparent 60%);
}
.final-card .sh { color: var(--white); position: relative; }
.final-card .sd { color: #999; position: relative; }
.final-card .cta { position: relative; animation: none; }
.final-card .trust-line { color: #666; position: relative; animation: none; }
.final-card .urgency { animation: none; }

/* ── Responsive ── */
@media (max-width: 1023px) {
  .steps-row, .testi-grid, .pain-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; direction: ltr; }
  .feat-row.flip > * { direction: ltr; }
  .feat-img { order: -1; }
  .compare-row { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .price-row { grid-template-columns: 1fr; max-width: 400px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .hero { padding: 40px 0 24px; }
  .hero-card { padding: 40px 24px 36px; border-radius: 16px; }
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; pointer-events: none; }
  .mobile-menu.open { pointer-events: auto; }
  .stats-row { gap: 24px; }
  .stat-num { font-size: 26px; }
  .final-card { padding: 40px 24px; border-radius: 16px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .foot-brand { display: flex; flex-direction: column; align-items: center; }
  .foot-brand p { text-align: center; }
  .foot-col a { font-size: 15px; padding: 6px 0; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
