:root {
  --font-sans: 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Satoshi', system-ui, -apple-system, sans-serif;
  --bg: #FAF8F3;
  --bg-elev: #F2EFE6;
  --bg-card: #FFFFFF;
  --bg-dark: #0E0E0C;
  --ink: #0E0E0C;
  --ink-2: #2A2A26;
  --ink-muted: #6E6E66;
  --ink-subtle: #A8A89E;
  --line: #E5E1D5;
  --line-2: #EFEBDF;
  --accent: #2d6ba7;
  --accent-soft: #FBEDE0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(14,14,12,0.04);
  --shadow-md: 0 6px 24px -6px rgba(14,14,12,0.08), 0 2px 6px rgba(14,14,12,0.04);
  --shadow-lg: 0 32px 80px -24px rgba(14,14,12,0.18), 0 12px 32px -12px rgba(14,14,12,0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-title,
.how-step-title,
.benefit-title,
.faq-item summary,
.cta-band-title,
.form-card-title,
.step-question {
  font-family: var(--font-heading);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.serif { font-family: var(--font-serif); font-weight: 400;  letter-spacing: -0.01em; }
.hidden { display: none !important; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted);
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--ink-muted); }

.section-label {
  font-size: 13px; font-weight: 500; color: var(--ink-muted);
  letter-spacing: 0.02em; margin-bottom: 32px;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(250, 248, 243, 0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand img {
  width: auto;
  object-fit: contain;
}
.nav-brand .logo-fareharbor {
  height: 22px;
}
.nav-brand .logo-divider {
  font-size: 14px;
  color: var(--ink-subtle);
  line-height: 1;
}
.nav-brand .logo-kapta {
  height: 28px;
}
.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-switcher {
  display: inline-flex; align-items: center; gap: 0;
  padding: 4px; background: var(--bg-elev); border-radius: var(--radius-full);
}
.lang-switcher a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 11px; border-radius: var(--radius-full);
  color: var(--ink-muted); transition: color 0.15s var(--ease);
}
.lang-switcher a:hover { color: var(--ink); }
.lang-switcher a.active { background: var(--ink); color: var(--bg); }

.nav-cta {
  font-size: 14px; font-weight: 500; padding: 10px 22px;
  border: 1px solid var(--ink); border-radius: var(--radius-full);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* HERO */
.hero { padding: 60px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.6; pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.hero-text { padding-top: 24px; }
.hero-eyebrow { margin-bottom: 28px; }
.hero-headline {
  font-size: 2rem;
  font-weight: 500; line-height: 1.02; letter-spacing: -0.035em;
  color: var(--ink); margin: 0 0 28px;
}
.hero-headline .serif {
  font-size: 1.08em; letter-spacing: -0.03em; color: var(--ink);
  display: block; margin-top: 6px;
}
.hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--ink-muted);
  max-width: 480px; margin: 0 0 36px;
}
.hero-commercial-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 6px;
  margin: 26px 0 22px;
  max-width: 520px;
}

.hero-price-label {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.hero-commercial-separator {
  color: var(--ink-subtle);
  font-size: 14px;
  line-height: 1;
}

.hero-price-subtext {
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink-muted);
}

.hero-lockup {
  display: flex; align-items: center; gap: 18px; padding: 18px 24px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-md); margin-bottom: 24px; max-width: 380px;
}
.hero-lockup img { height: 22px; width: auto; }
.hero-lockup-divider { color: var(--ink-subtle); font-size: 14px; }
.hero-note { font-size: 13px; color: var(--ink-muted); margin-top: 20px; }

/* FORM CARD */
.form-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 36px; position: relative;
}
.form-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--line-2);
}
.form-card-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.form-card-subtitle { font-size: 13px; color: var(--ink-muted); margin: 4px 0 0; }
.form-card-counter { font-size: 13px; color: var(--ink-subtle); font-variant-numeric: tabular-nums; }

.progress-track {
  height: 3px; background: var(--bg-elev);
  border-radius: var(--radius-full); overflow: hidden; margin-bottom: 32px;
}
.progress-bar { height: 100%; background: var(--ink); border-radius: var(--radius-full); transition: width 0.5s var(--ease); }

.step { animation: stepIn 0.4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.step-help { font-size: 13px; color: var(--ink-subtle); margin: 0 0 12px; }
.step-question {
  font-family: var(--font-serif); 
  font-size: 26px; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink); margin: 0 0 24px; display: block;
}

.field {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1.5px solid var(--ink-2); border-radius: 0;
  padding: 12px 0; font: inherit; font-size: 18px; color: var(--ink);
  transition: border-color 0.2s var(--ease); font-family: inherit;
}
.field:focus { outline: none; border-bottom-color: var(--accent); }
.field::placeholder { color: var(--ink-subtle); }
select.field {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230E0E0C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right center;
  padding-right: 24px; cursor: pointer;
}
select.field:disabled { color: var(--ink-subtle); cursor: not-allowed; }
textarea.field {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; resize: vertical; min-height: 70px;
}
.field-other { margin-top: 22px; }
.field-other label { display: block; font-size: 13px; color: var(--ink-muted); margin-bottom: 6px; }

.checkbox-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: var(--bg-elev); border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s var(--ease);
}
.checkbox-row:hover { background: #EAE6D9; }
.checkbox-row input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px;
  accent-color: var(--ink); cursor: pointer; flex-shrink: 0;
}
.checkbox-row label, .checkbox-row span {
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
  cursor: pointer; margin: 0;
}

.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 13px 24px; border-radius: var(--radius-full);
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.2s var(--ease); white-space: nowrap; min-height: 46px;
}
.btn-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); flex: 1; }
.btn-primary:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink-2); }
.btn-ghost:hover:not(:disabled) { background: var(--bg-elev); border-color: var(--ink-2); }
.btn-ghost:disabled { opacity: 0.4; cursor: not-allowed; }

.form-secure-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-subtle);
  margin-top: 18px; justify-content: center;
}
.form-secure-note::before {
  content: ''; display: inline-block; width: 12px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14' fill='none'><path d='M2 6V4a4 4 0 118 0v2m-9 0h10v7H1V6z' stroke='%23A8A89E' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}

.feedback {
  margin-top: 18px; padding: 14px 16px;
  border-radius: var(--radius-md); font-size: 14px; line-height: 1.45;
}
.feedback-error { background: #FEF2E8; color: #9C3A0A; border: 1px solid #F8DCC4; }
.feedback-success { background: #F0F5EE; color: #2D5A2A; border: 1px solid #D6E5D2; }
.feedback-success-title { font-weight: 600; display: block; margin-bottom: 2px; }

/* TRUST STRIP */
.trust {
  padding: 36px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); background: var(--bg);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; font-size: 14px; color: var(--ink-muted); text-align: center;
}
.trust-label { letter-spacing: 0.04em; }
.trust-countries {
  font-family: var(--font-serif); 
  font-size: 17px; color: var(--ink); letter-spacing: 0.01em;
}

/* SECTIONS */
.section { padding: 120px 0; }
.section-head { max-width: 760px; margin-bottom: 72px; }
.section-title {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.4rem);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.03em;
  margin: 0; color: var(--ink);
}
.section-title .serif { font-size: 1.05em; display: inline-block; }

/* HOW IT WORKS */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.how-step { padding: 40px 40px 40px 0; border-right: 1px solid var(--line); }
.how-step:last-child { border-right: 0; padding-right: 0; }
.how-step:not(:first-child) { padding-left: 40px; }
.how-num {
  font-family: var(--font-serif); 
  font-size: 48px; color: var(--accent); line-height: 1;
  margin-bottom: 24px; display: block; letter-spacing: -0.02em;
}
.how-step-title { font-size: 22px; font-weight: 500; letter-spacing: -0.015em; margin: 0 0 12px; }
.how-step-text { font-size: 15px; line-height: 1.55; color: var(--ink-muted); margin: 0; }

/* BENEFITS */
.benefits { background: var(--bg-elev); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit {
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 36px; border: 1px solid var(--line-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border-radius: var(--radius-sm); color: var(--accent);
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-title { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 10px; }
.benefit-text { font-size: 15px; line-height: 1.55; color: var(--ink-muted); margin: 0; }

/* CTA BAND */
.cta-band {
  background: var(--bg-dark); color: var(--bg);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(215, 90, 34, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%); pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-band-title {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.cta-band-title .serif { font-size: 1.05em; color: var(--bg); }
.cta-band-text { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin: 0 0 36px; }
.cta-band-button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); color: var(--ink);
  padding: 16px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 500; transition: all 0.2s var(--ease);
}
.cta-band-button:hover { background: var(--accent); color: var(--bg); }
.cta-band-button::after { content: '→'; transition: transform 0.2s var(--ease); }
.cta-band-button:hover::after { transform: translateX(4px); }

/* FAQ */
.faq-list { max-width: 880px; }
.faq-item { border-top: 1px solid var(--line); padding: 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0; cursor: pointer; list-style: none;
  font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink); transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'><path d='M9 3.5v11M3.5 9h11' stroke='%230E0E0C' stroke-width='1.5' stroke-linecap='round'/></svg>") no-repeat center;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding: 0 0 28px; font-size: 16px; line-height: 1.65; color: var(--ink-muted); max-width: 680px; }

/* FOOTER */
.footer {
  padding: 72px 0 0;
  background:
    radial-gradient(circle at 82% 45%, rgba(45, 107, 167, 0.22), transparent 42%),
    linear-gradient(135deg, #0E0E0C 0%, #161615 54%, #211413 100%);
  color: #FFFFFF;
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.footer a { color: inherit; }
.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  align-items: start;
  padding-bottom: 56px;
}
.footer-logo { width: 54px; height: auto; margin-bottom: 48px; }
.footer-block { margin-bottom: 44px; }
.footer-label {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 15px;
  margin-bottom: 12px;
}
.footer-label::before { content: '/ '; }
.footer-text,
.footer-link {
  font-size: 17px;
  line-height: 1.48;
  color: #FFFFFF;
  margin: 0;
}
.footer-phone-note {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin: 2px 0 8px;
}
.footer-socials { display: flex; align-items: center; gap: 18px; }
.footer-socials a { font-size: 17px; font-weight: 700; }
.footer-contact-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.72);
  margin-top: 20px;
}
.footer-contact-form input {
  width: 100%;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  font: inherit;
  font-size: 22px;
  padding: 16px 0 20px;
  outline: none;
}
.footer-contact-form input::placeholder { color: #FFFFFF; opacity: 1; }
.footer-contact-form button {
  background: transparent;
  color: #FFFFFF;
  border: 0;
  font-size: 38px;
  line-height: 1;
  padding: 0 0 16px;
}
.footer-form-note {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  margin: 14px 0 0;
}
.footer-form-note a { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0 34px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-contact-badge {
  position: absolute;
  right: 34px;
  bottom: 118px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.08em;
  box-shadow: var(--shadow-md);
}
.footer-contact-badge span { color: #EF3636; letter-spacing: 0; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: none;
  background: rgba(14,14,12,0.96);
  color: #FFFFFF;
  border-top: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 0;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cookie-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.cookie-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.54);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cookie-title { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cookie-text { margin: 0; color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.45; max-width: 720px; }
.cookie-actions { display: flex; align-items: center; gap: 16px; }
.cookie-link {
  background: transparent;
  border: 0;
  color: #FFFFFF;
  text-decoration: underline;
  font: inherit;
  font-size: 14px;
  padding: 10px 0;
}
.cookie-btn {
  min-width: 132px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.74);
  background: transparent;
  color: #FFFFFF;
  padding: 13px 20px;
  font: inherit;
  font-size: 14px;
}
.cookie-btn-primary {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { padding-top: 0; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .how-step:not(:first-child) { padding-left: 0; }
  .how-step:last-child { border-bottom: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { flex-wrap: wrap; }
  .cta-band { padding: 72px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-cta { display: none; }
  .nav-right { gap: 12px; }
  .form-card { padding: 24px; }
  .form-card-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .form-actions { flex-wrap: wrap; }
  .form-actions .btn-ghost { flex: 0 0 auto; }
  .form-actions .btn-primary { flex: 1; min-width: 0; }
  .hero-lockup { padding: 14px 18px; }
  .hero-commercial-line {
    display: grid;
    gap: 6px;
    margin: 24px 0 18px;
  }

  .hero-commercial-separator {
    display: none;
  }

  .hero-price-label {
    font-size: 17px;
  }
  .step-question { font-size: 22px; }
  .benefit { padding: 28px; }
  .faq-item summary { font-size: 17px; padding: 22px 0; }
  .footer { padding-top: 48px; }
  .footer-main { gap: 0; }
  .footer-logo { margin-bottom: 34px; }
  .footer-contact-badge { display: none; }
  .footer-bottom-links { gap: 14px; flex-direction: column; align-items: flex-start; }
  .cookie-copy { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; align-items: stretch; }
  .cookie-link, .cookie-btn { width: 100%; text-align: center; }
}

section[id] { scroll-margin-top: 80px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}