/* ==========================================================================
   Growin Germany Advisory — global stylesheet
   Palette sampled directly from icons/logo.png
   ========================================================================== */

:root {
  /* Brand — from the logo */
  --navy:        #061F52;   /* the "G" and wordmark */
  --navy-700:    #0A2C6E;
  --navy-500:    #14418F;
  --navy-100:    #E7EDF7;
  --navy-50:     #F4F7FC;
  --ink:         #1C1C1C;   /* second "G" / "Germany" */
  --red:         #D80000;   /* German flag arc */
  --gold:        #F8C708;   /* German flag arc */

  /* Neutrals */
  --white:       #FFFFFF;
  --paper:       #FBFBFC;
  --line:        #E3E7EE;
  --muted:       #5A6478;
  --muted-soft:  #8A93A6;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(6, 31, 82, .06), 0 2px 8px rgba(6, 31, 82, .05);
  --shadow-md: 0 4px 12px rgba(6, 31, 82, .07), 0 12px 32px rgba(6, 31, 82, .08);
  --shadow-lg: 0 10px 30px rgba(6, 31, 82, .10), 0 30px 60px rgba(6, 31, 82, .10);
  --header-h: 76px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-500); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.16;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.6rem); }
h3 { font-size: clamp(1.16rem, 1.02rem + .55vw, 1.42rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- layout -- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(56px, 7vw, 104px) 0; }
.section--tint { background: var(--navy-50); }
.section--paper { background: var(--paper); }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0 0 .85rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px; flex: none;
  background: linear-gradient(90deg, var(--ink) 0 33%, var(--red) 33% 66%, var(--gold) 66%);
}
.section-head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lede { font-size: 1.08rem; color: var(--muted); }

/* --------------------------------------------------------- flag accent -- */
.flagbar {
  height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--ink) 0 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66%);
}

/* -------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--navy); }
.brand-name em { font-style: normal; color: var(--ink); }
.brand-tag {
  font-size: .6rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--muted-soft); font-weight: 600; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 9px 14px; border-radius: 8px;
  color: var(--ink); font-size: .95rem; font-weight: 500;
}
.nav-links a:hover { background: var(--navy-50); color: var(--navy); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 700; background: var(--navy-100); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--navy); position: relative; border-radius: 2px; transition: .22s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--navy); border-radius: 2px; transition: .22s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* -------------------------------------------------------------- button -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 13px 24px; border-radius: 10px; border: 1.5px solid transparent;
  font-size: .96rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy-50); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--navy-100); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn--outline-light:hover { background: rgba(255,255,255,.10); border-color: #fff; }
.btn--wa { background: #1FA855; color: #fff; }
.btn--wa:hover { background: #178F47; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(20, 65, 143, .55), transparent 60%),
    radial-gradient(760px 460px at 4% 108%, rgba(216, 0, 0, .16), transparent 62%),
    linear-gradient(160deg, #04173E 0%, var(--navy) 46%, #0B2E72 100%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--ink) 0 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px);
  align-items: center; padding: clamp(60px, 7vw, 104px) 0 clamp(70px, 8vw, 112px);
}
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold), #FFE07A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { color: rgba(255,255,255,.86); font-size: 1.13rem; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: 7px 14px; border-radius: 100px; font-size: .81rem; font-weight: 600;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }

.hero-trust {
  margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
.hero-trust .n { font-family: var(--serif); font-size: 1.85rem; color: var(--gold); line-height: 1; }
.hero-trust .l { font-size: .8rem; color: rgba(255,255,255,.72); margin-top: 7px; }

/* -------------------------------------------------------- hero form card */
.hero-card {
  background: #fff; border-radius: 18px; padding: clamp(24px, 2.6vw, 32px);
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.hero-card h2 { font-size: 1.42rem; margin-bottom: .3em; }
.hero-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.hero-card .assurance {
  margin-top: 14px; font-size: .78rem; color: var(--muted-soft); text-align: center;
}

/* --------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy-100); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .95rem; }

.card-icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-100); color: var(--navy); margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.ticklist { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.ticklist li { position: relative; padding-left: 28px; font-size: .92rem; color: var(--muted); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--navy-100);
}
.ticklist li::after {
  content: ""; position: absolute; left: 5px; top: .68em; width: 6px; height: 3px;
  border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------- steps -- */
.steps { list-style: none; display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 62px 1fr; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step-n {
  counter-increment: step; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.22rem;
  background: var(--navy); color: #fff;
}
.step-n::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: .3em; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------- fact strip -- */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fact { background: #fff; padding: 26px 22px; }
.fact .n { font-family: var(--serif); font-size: 1.75rem; color: var(--navy); line-height: 1.1; }
.fact .l { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.fact .s { font-size: .74rem; color: var(--muted-soft); margin-top: 8px; }

/* ----------------------------------------------------------- quotecard -- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 18px; height: 100%;
}
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; fill: currentColor; }
.quote blockquote { margin: 0; font-size: .97rem; color: var(--ink); line-height: 1.7; }
.quote blockquote::before { content: "\201C"; font-family: var(--serif); font-size: 2.4rem; color: var(--navy-100); line-height: 0; display: block; margin-bottom: .35em; }
.quote-by { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 6px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-weight: 700; font-size: .93rem; font-family: var(--sans);
}
.quote-by .who { font-weight: 700; font-size: .92rem; color: var(--navy); }
.quote-by .where { font-size: .8rem; color: var(--muted); }

/* ----------------------------------------------------------------- faq -- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-weight: 600; color: var(--navy); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--navy-500); border-bottom: 2px solid var(--navy-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq-body { padding: 0 0 24px; color: var(--muted); font-size: .96rem; max-width: 78ch; }

/* ------------------------------------------------------------- cta band -- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  background:
    radial-gradient(700px 340px at 88% 0%, rgba(20,65,143,.6), transparent 62%),
    linear-gradient(150deg, #04173E, var(--navy));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 58ch; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* --------------------------------------------------------------- forms -- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--navy); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6478' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(20,65,143,.13);
}
.field .hint { font-size: .76rem; color: var(--muted-soft); }
.field .error { font-size: .78rem; color: var(--red); font-weight: 500; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--red); }
.field.is-invalid .error { display: block; }

.phone-row { display: grid; grid-template-columns: 104px 1fr; gap: 8px; }

.check { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--muted); }
.check input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--navy); }

.form-status {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .9rem;
}
.form-status.show { display: block; }
.form-status.ok  { background: #E9F7EF; color: #12633A; border: 1px solid #BFE6CF; }
.form-status.err { background: #FDECEC; color: #97120F; border: 1px solid #F5C6C4; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ----------------------------------------------------------- contact -- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; }
.contact-item .ci {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--navy-100); color: var(--navy);
}
.contact-item .ci svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-item .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-soft); font-weight: 700; }
.contact-item .v { font-weight: 600; color: var(--navy); }
.contact-item .v a { color: inherit; }
.contact-item .m { font-size: .85rem; color: var(--muted); }

/* ------------------------------------------------------------- footer -- */
.site-footer { background: #04173E; color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(48px, 5vw, 68px) 0 44px; }
.site-footer h4 {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px; font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-brand img { height: 46px; background: #fff; border-radius: 10px; padding: 8px 12px; }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: .89rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13);
}
.footer-social a:hover { background: rgba(255,255,255,.18); text-decoration: none; }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .84rem;
}
.footer-note { font-size: .78rem; color: rgba(255,255,255,.45); padding-bottom: 26px; max-width: 90ch; line-height: 1.65; }

/* ------------------------------------------------------- floating wa -- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #1FA855; color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.24);
  transition: transform .18s;
}
.wa-float:hover { transform: scale(1.07); text-decoration: none; }
.wa-float svg { width: 29px; height: 29px; fill: currentColor; }

/* --------------------------------------------------------- page header -- */
.page-hero {
  color: #fff; position: relative;
  background:
    radial-gradient(820px 380px at 85% -20%, rgba(20,65,143,.55), transparent 60%),
    linear-gradient(150deg, #04173E, var(--navy));
  padding: clamp(48px, 6vw, 84px) 0 clamp(52px, 6vw, 82px);
}
.page-hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--ink) 0 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66%);
}
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 62ch; font-size: 1.06rem; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.crumbs a { color: rgba(255,255,255,.75); }

/* ------------------------------------------------------------ utility -- */
.prose p { color: var(--muted); }
.prose h3 { margin-top: 1.6em; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 26px; }
.mt-4 { margin-top: 36px; }
.notice {
  background: #FFF9E6; border: 1px solid #F3E1A0; border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: .9rem; color: #6B5310;
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------------------------------- responsive -- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px 20px 22px; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; font-size: 1rem; }
  .nav-cta .btn { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 10px; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
  .nav-links .mobile-cta { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
  .brand img { height: 44px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step-n { width: 40px; height: 40px; font-size: 1rem; }
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .site-footer, .hero-actions { display: none; }
}
