:root {
  /* Brand palette (coloreskarelis.jpg) */
  --white: #FFFFFF;        /* main web background */
  --petrol: #146D7D;       /* brand + primary buttons */
  --linen: #EFECE6;        /* soft section background */
  --champagne: #C5A880;    /* luxury details, on dark grounds */
  /* Derived */
  --champagne-ink: #9E8157;  /* champagne deepened for text on light grounds (≥3:1 at display sizes) */
  --petrol-deep: #0E4F5B;    /* dark band background */
  --petrol-hover: #0F5A68;
  --ink: #17343A;            /* body text, petrol-tinted */
  --ink-soft: #4E6468;
  --rule: #DCD6CB;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 136px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--champagne-ink); }
p { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--petrol); color: var(--white); padding: 10px 16px; border-radius: 6px;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--petrol); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px;
  border-radius: 999px; border: 1px solid transparent;
  font: 600 0.9375rem/1 var(--sans); letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--petrol); color: var(--white); }
.btn--primary:hover { background: var(--petrol-hover); }
.btn--ghost { border-color: var(--petrol); color: var(--petrol); background: transparent; }
.btn--ghost:hover { background: var(--linen); }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 0.875rem; white-space: nowrap; }
.btn--block { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--rule); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 88px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: auto; height: 68px; object-fit: contain; }
.brand span { white-space: nowrap; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.01em; }
.nav nav { margin-left: auto; }
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a { display: inline-block; padding: 12px 0; white-space: nowrap; text-decoration: none; font-size: 0.9375rem; color: var(--ink-soft); }
.nav__links a:hover { color: var(--petrol); }
.lang { display: inline-flex; border: 1px solid var(--rule); border-radius: 999px; padding: 3px; flex: none; }
.lang a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 38px; padding: 0 10px; border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease;
}
.lang a:hover { color: var(--petrol); }
.lang a[aria-current="page"] { background: var(--petrol); color: var(--white); }

/* Hero */
.hero { padding: clamp(48px, 8vw, 104px) 0 var(--section); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.hero__kicker { color: var(--ink-soft); font-size: 0.9375rem; max-width: 36ch; margin-bottom: 28px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); max-width: 13ch; line-height: 1.02; letter-spacing: -0.02em; }
.hero__lede { margin-top: 28px; font-size: 1.1875rem; line-height: 1.6; max-width: 52ch; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__proof {
  list-style: none; margin: 28px 0 0; padding: 20px 0 0; max-width: 540px;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 0.9375rem; color: var(--ink-soft);
}
.hero__proof li { position: relative; padding-left: 18px; }
.hero__proof li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--champagne);
}

/* Folio (calculator) */
.folio {
  position: relative;
  background: var(--linen);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 40px);
  outline: 1px solid var(--champagne);
  outline-offset: -10px;
  scroll-margin-top: 104px;
}
.folio__head { padding-bottom: 20px; border-bottom: 1px solid var(--champagne); margin-bottom: 24px; }
.folio h2 { font-size: 1.75rem; }
.folio__head p { margin-top: 6px; font-size: 0.9375rem; color: var(--ink-soft); }
.folio__field {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 4px 12px; margin-bottom: 20px;
}
.folio__field label { font-size: 0.9375rem; font-weight: 500; }
.folio__field output { font-family: var(--serif); font-size: 1.25rem; color: var(--petrol); font-variant-numeric: tabular-nums lining-nums; }
.folio__field input { grid-column: 1 / -1; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 40px; background: transparent; margin: 0; cursor: pointer; touch-action: manipulation;
  --fill: 50%;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 2px; border-radius: 2px;
  background: linear-gradient(to right, var(--petrol) var(--fill), var(--rule) var(--fill));
}
input[type="range"]::-moz-range-track { height: 2px; background: var(--rule); }
input[type="range"]::-moz-range-progress { height: 2px; background: var(--petrol); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; margin-top: -9px;
  border-radius: 50%; background: var(--white); border: 2px solid var(--petrol);
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 2px solid var(--petrol);
}
input[type="range"]:focus-visible { outline: none; }
input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(20,109,125,.25); }
input[type="range"]:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(20,109,125,.25); }

.folio__ledger { margin: 28px 0 0; border-top: 1px solid var(--champagne); }
.folio__ledger div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px dashed var(--rule);
}
.folio__ledger dt { font-size: 0.9375rem; color: var(--ink-soft); max-width: 22ch; }
.folio__ledger dd { margin: 0; font-family: var(--serif); font-size: 1.5rem; font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }
.folio__ledger .folio__total { border-bottom: 3px double var(--champagne); }
.folio__total dt { color: var(--ink); font-weight: 600; }
.folio__total dd { font-size: clamp(2rem, 3.6vw, 2.625rem); font-style: italic; color: var(--petrol); }
.folio__note { margin-top: 16px; font-size: 0.8125rem; line-height: 1.5; color: var(--ink-soft); }

/* Section heads */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { font-size: clamp(2.125rem, 4.4vw, 3.5rem); }
.section-head p { margin-top: 18px; font-size: 1.125rem; color: var(--ink-soft); max-width: 56ch; }

/* How it works */
.how { padding: 0 0 var(--section); }
.how__steps {
  list-style: none; margin: 0; padding: 0; counter-reset: step;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px);
}
.how__steps li { counter-increment: step; padding-top: 24px; border-top: 1px solid var(--champagne); }
.how__steps li::before {
  content: counter(step);
  display: block; margin-bottom: 16px;
  font-family: var(--serif); font-style: italic; font-size: 3rem; line-height: 1; color: var(--champagne-ink);
}
.how__steps h3 { font-size: 1.5rem; margin-bottom: 10px; }
.how__steps p { color: var(--ink-soft); max-width: 30ch; }

/* Pain */
.pain { background: var(--linen); padding: var(--section) 0; }
.pain__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.pain__head { position: sticky; top: 120px; }
.pain h2 { font-size: clamp(2.125rem, 4.4vw, 3.5rem); }
.pain__head p { margin-top: 20px; font-size: 1.125rem; color: var(--ink-soft); max-width: 40ch; }
.pain__list { list-style: none; margin: 0; padding: 0; }
.pain__list li { padding: 28px 0; border-top: 1px solid var(--rule); }
.pain__list li:last-child { border-bottom: 1px solid var(--rule); }
.pain__list h3 { font-size: clamp(1.375rem, 2.2vw, 1.625rem); margin-bottom: 10px; }
.pain__list p { color: var(--ink-soft); max-width: 58ch; }

/* Before / after */
.change { padding: 0 0 var(--section); }
.compare { width: 100%; border-collapse: collapse; font-size: 1rem; }
.compare th, .compare td { text-align: left; vertical-align: top; padding: 20px 24px 20px 0; border-bottom: 1px solid var(--rule); }
.compare thead th { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; padding-bottom: 16px; border-bottom: 1px solid var(--ink); }
.compare tbody th { font-weight: 600; width: 22%; }
.compare td { color: var(--ink-soft); width: 36%; }
.compare .compare__us { color: var(--ink); padding-left: 24px; background: var(--linen); }
.compare thead .compare__us { color: var(--petrol); border-bottom-color: var(--petrol); }
.compare tbody td.compare__us { font-weight: 500; }

/* Services */
.services { padding: var(--section) 0; }
.service {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--rule);
}
.service:last-child { border-bottom: 1px solid var(--rule); }
.service h3 { font-size: clamp(1.75rem, 3vw, 2.375rem); max-width: 14ch; }
.service__body p { font-size: 1.0625rem; max-width: 54ch; }
.service__solves { margin-top: 16px; padding-left: 16px; border-left: 2px solid var(--champagne); color: var(--ink-soft); max-width: 54ch; }
.service__solves strong { color: var(--ink); font-weight: 600; }
.service__body ul { list-style: none; margin: 20px 0 0; padding: 0; }
.service__body li { position: relative; padding: 6px 0 6px 24px; color: var(--ink-soft); font-size: 0.9875rem; }
.service__body li::before {
  content: ""; position: absolute; left: 2px; top: 1.05em;
  width: 10px; height: 1px; background: var(--champagne);
}

/* Offer */
.offer { background: var(--linen); padding: var(--section) 0; }
.offer__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.offer__includes { background: var(--white); border: 1px solid var(--champagne); border-radius: 4px; padding: clamp(28px, 3.4vw, 44px); }
.offer__includes h3 { font-size: 1.75rem; margin-bottom: 20px; }
.offer__includes .btn { margin-top: 28px; }
.offer__promises { margin: 0; }
.offer__promises div { padding: 24px 0; border-top: 1px solid var(--rule); }
.offer__promises div:last-child { border-bottom: 1px solid var(--rule); }
.offer__promises dt { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--petrol); margin-bottom: 6px; }
.offer__promises dd { margin: 0; color: var(--ink-soft); max-width: 46ch; }

.checks, .crosses { list-style: none; margin: 0; padding: 0; }
.checks li, .crosses li { position: relative; padding: 10px 0 10px 32px; border-top: 1px solid var(--rule); }
.checks li:first-child, .crosses li:first-child { border-top: 0; }
.checks li::before {
  content: ""; position: absolute; left: 4px; top: 16px;
  width: 12px; height: 7px; border-left: 2px solid var(--petrol); border-bottom: 2px solid var(--petrol);
  transform: rotate(-45deg);
}
.crosses li { color: var(--ink-soft); }
.crosses li::before, .crosses li::after {
  content: ""; position: absolute; left: 4px; top: 21px; width: 14px; height: 1.5px; background: var(--champagne-ink);
}
.crosses li::before { transform: rotate(45deg); }
.crosses li::after { transform: rotate(-45deg); }

/* Process (dark band) */
.process { background: var(--petrol-deep); color: var(--linen); padding: var(--section) 0; }
.process h2, .process h3 { color: var(--white); }
.process em, .section-head--light h2 em { color: var(--champagne); }
.section-head--light p { color: rgba(239,236,230,.78); }
.timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(197,168,128,.45);
}
.timeline li { padding: 32px clamp(20px, 3vw, 40px) 8px 0; position: relative; }
.timeline li::before {
  content: ""; position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px; border-radius: 50%; background: var(--champagne);
}
.timeline__when { display: block; font-size: 0.875rem; color: var(--champagne); margin-bottom: 10px; letter-spacing: 0.02em; }
.timeline h3 { font-size: 1.75rem; margin-bottom: 12px; }
.timeline p { color: rgba(239,236,230,.82); max-width: 34ch; }
.timeline .timeline__deliver { margin-top: 14px; font-size: 0.9375rem; color: var(--champagne); }
.guarantee {
  margin-top: clamp(48px, 6vw, 72px); padding-top: 32px;
  border-top: 1px solid rgba(197,168,128,.3);
  font-family: var(--serif); font-size: clamp(1.375rem, 2.4vw, 1.875rem); line-height: 1.35;
  color: var(--white); max-width: 34ch;
}

/* Effort */
.effort { padding: var(--section) 0; }
.effort__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; }
.effort__col { border: 1px solid var(--rule); border-radius: 4px; padding: clamp(28px, 3vw, 40px); }
.effort__col h3 { font-size: 1.5rem; margin-bottom: 20px; }
.effort__col ul { list-style: none; margin: 0; padding: 0; }
.effort__col li { padding: 12px 0; border-top: 1px solid var(--rule); }
.effort__col--us { background: var(--linen); border-color: var(--linen); }
.effort__col--us ul { columns: 2; column-gap: 32px; }
.effort__col--us li { break-inside: avoid; }

/* Fit */
.fit { padding: 0 0 var(--section); }
.fit__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: clamp(32px, 6vw, 96px); }
.fit h2 { font-size: clamp(2.125rem, 4.4vw, 3.5rem); }
.fit__lists { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.fit__lists h3 { font-size: 1.375rem; margin-bottom: 12px; }

/* FAQ */
.faq { background: var(--linen); padding: var(--section) 0; }
.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 6vw, 96px); }
.faq h2 { font-size: clamp(2.125rem, 4.4vw, 3.5rem); }
.faq__list details { border-top: 1px solid var(--rule); }
.faq__list details:last-child { border-bottom: 1px solid var(--rule); }
.faq__list summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 22px 0; font-weight: 600; font-size: 1.0625rem;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 1.5px solid var(--petrol); border-bottom: 1.5px solid var(--petrol);
  margin-right: 6px;
  transform: rotate(45deg) translateY(-3px); transition: transform .25s ease;
}
.faq__list details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq__list details p { padding: 0 0 24px; max-width: 60ch; color: var(--ink-soft); }

/* Contact */
.contact { padding: var(--section) 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact__seal { width: 200px; margin: 0 0 32px; }
.contact h2 { font-size: clamp(2.125rem, 4.4vw, 3.5rem); }
.contact__copy p { margin-top: 18px; font-size: 1.125rem; color: var(--ink-soft); max-width: 44ch; }

.form { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: clamp(24px, 3vw, 40px); }
.form__row { margin-bottom: 18px; }
.form__row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.form .opt { font-weight: 400; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font: 400 1rem/1.4 var(--sans); color: var(--ink);
  background: var(--white); border: 1px solid #C9C2B6; border-radius: 4px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(20,109,125,.18);
}
.form [aria-invalid="true"] { border-color: #A3402F; }
.form__status { margin-top: 14px; font-size: 0.9375rem; min-height: 1.5em; }
.form__status.is-error { color: #A3402F; }
.form__status.is-ok { color: var(--petrol); font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.footer { border-top: 1px solid var(--rule); padding: 56px 0 40px; }
.footer__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 32px 64px; color: var(--ink-soft); font-size: 0.9375rem; }
.footer__brand p { margin-top: 16px; max-width: 48ch; }
.footer__nav ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
.footer__nav li { break-inside: avoid; }
.footer__nav a { display: inline-block; padding: 10px 0; }
.footer__nav a { text-decoration: none; }
.footer__nav a:hover { color: var(--petrol); }
.brand--footer img { width: auto; height: 96px; }
.brand--footer span { font-size: 1.125rem; color: var(--ink); }
.footer__small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--rule); font-size: 0.875rem; }

/* One orchestrated moment: hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *, .folio { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
  .hero__copy > :nth-child(2) { animation-delay: .08s; }
  .hero__copy > :nth-child(3) { animation-delay: .16s; }
  .hero__copy > :nth-child(4) { animation-delay: .24s; }
  .hero__copy > :nth-child(5) { animation-delay: .30s; }
  .folio { animation-delay: .36s; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav__inner { gap: 24px; }
  .nav__links { gap: 20px; }
  .nav .brand span { display: none; }
}
@media (max-width: 900px) {
  .nav nav { display: none; }
  .nav .brand span { display: inline; }
  .lang { margin-left: auto; }
}
@media (max-width: 960px) {
  .how__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid, .pain__grid, .offer__grid, .fit__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .pain__head { position: static; }
  .service { grid-template-columns: 1fr; gap: 16px; }
  .service h3 { max-width: none; }
  .effort__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav nav { margin-left: 0; }
  .nav__inner { justify-content: space-between; gap: 12px; height: 72px; }
  .nav nav { display: none; }
  .lang { margin-left: auto; }
  .lang a { min-width: 34px; padding: 0 8px; }
  .brand img { height: 56px; }
  .brand span { font-size: 1.0625rem; }
  .how__steps { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid rgba(197,168,128,.45); }
  .timeline li { padding: 0 0 36px 28px; }
  .timeline li::before { top: 8px; left: -5px; }
  .effort__col--us ul { columns: 1; }
  .form__row--half { grid-template-columns: 1fr; gap: 18px; }
  .fit__lists, .footer__inner { grid-template-columns: 1fr; }
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare tr { padding: 20px 0; border-bottom: 1px solid var(--rule); }
  .compare tbody th { width: 100%; padding: 0 0 10px; border: 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
  .compare td { padding: 10px 14px; border: 0; }
  .compare td::before { content: attr(data-label); display: block; font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 2px; }
  .compare .compare__us { padding-left: 14px; border-radius: 4px; }
  .compare td.compare__us::before { color: var(--petrol); }
}
@media (max-width: 560px) {
  .brand span { display: none; }
}

/* Small phones: last so they win over the wider breakpoints */
@media (max-width: 560px) {
  :root { --section: 64px; }
  .nav .brand span { display: none; }
  html { scroll-padding-top: 88px; }
  .hero { padding-top: 32px; }
  .hero__kicker { margin-bottom: 18px; }
  .hero__lede { font-size: 1.0625rem; margin-top: 20px; }
  .hero__actions { flex-direction: column; margin-top: 28px; }
  .hero__actions .btn { width: 100%; }
  .btn { min-height: 50px; }
  .btn--sm { min-height: 44px; padding: 0 16px; }
  .lang a { height: 38px; }
  .folio { padding: 24px 20px; outline-offset: -7px; }
  .folio h2 { font-size: 1.5rem; }
  .folio__field { gap: 2px 10px; }
  .folio__ledger dd { font-size: 1.375rem; }
  .folio__total dd { font-size: 2rem; }
  .section-head { margin-bottom: 32px; }
  .section-head p, .pain__head p, .contact__copy p { font-size: 1.0625rem; }
  .how__steps li::before { font-size: 2.5rem; margin-bottom: 10px; }
  .pain__list li { padding: 22px 0; }
  .service { padding: 28px 0; }
  .service__body li { font-size: 0.9375rem; }
  .effort__col { padding: 24px 20px; }
  .offer__includes { padding: 24px 20px; }
  .faq__list summary { padding: 18px 0; font-size: 1rem; gap: 16px; }
  .contact__seal { width: 140px; margin-bottom: 24px; }
  .form { padding: 22px 18px; }
  .footer__nav ul { columns: 1; }
}
@media (max-width: 380px) {
  .nav__inner { gap: 8px; }
  .brand img { height: 48px; }
  .lang { padding: 2px; }
  .lang a { min-width: 32px; padding: 0 7px; }
  .btn--sm { padding: 0 12px; font-size: 0.8125rem; }
  .hero h1 { font-size: 2.25rem; }
}
