@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/archivo-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;
}

@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/archivo-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: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-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;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-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;
}

:root {
  --cyan: #0fa3cb;
  --cyan-dark: #0b7c9b;
  --orange: #f59a1e;
  --ink: #10242e;
  --body: #395661;
  --muted: #5a7480;
  --bg: #f2f9fc;
  --pale: #def2f9;
  --white: #fff;
  --line: rgba(16, 36, 46, 0.08);
  --line-strong: rgba(16, 36, 46, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --pad: clamp(16px, 4vw, 32px);
  --header-h: 72px;
  --shadow: 0 24px 50px -18px rgba(11, 44, 58, 0.45);
  --shadow-soft: 0 18px 40px -22px rgba(11, 44, 58, 0.3);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan-dark);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: Archivo, sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  top: calc(var(--safe-top) + 12px);
  color: var(--white);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.sect {
  padding: clamp(48px, 8vw, 100px) var(--pad);
}

.grid {
  display: grid;
  gap: clamp(20px, 4vw, 44px);
}

.cols-2,
.cols-3,
.cols-4 {
  grid-template-columns: 1fr;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--body);
}

.hero {
  font-weight: 900;
  font-size: clamp(32px, 8vw, 66px);
  line-height: 1.02;
}

.sec {
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
}

.accent { color: var(--cyan); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cyan);
  padding-top: var(--safe-top);
}

.bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
  padding: 10px var(--pad);
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-link img {
  height: 28px;
  width: auto;
}

.navbtn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  font-weight: 600;
  min-height: 44px;
}

.navbtn:hover,
.navbtn[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

nav.desk {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.dd { position: relative; }

.dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 250px;
  display: none;
  flex-direction: column;
  z-index: 5;
}

.dd:hover .dd-menu,
.dd:focus-within .dd-menu,
.dd-menu.open {
  display: flex;
}

.dd-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.dd-menu a:hover {
  background: #eaf5fa;
  color: var(--ink);
}

.cta-pill {
  display: none;
  background: var(--white);
  color: var(--ink);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.cta-pill:hover { background: var(--orange); color: var(--ink); }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  display: none;
  background: #0b8aad;
  padding: 8px var(--pad) calc(16px + var(--safe-bottom));
  flex-direction: column;
  gap: 4px;
}

.drawer.open { display: flex; }

.drawer a,
.drawer button {
  background: none;
  border: 0;
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16.5px;
  font-weight: 700;
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.drawer a[aria-current="page"],
.drawer a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.drawer a.sub {
  padding-left: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  min-height: 44px;
}

.drawer-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  border-radius: 12px;
  font-size: 15.5px;
  width: 100%;
}

/* Buttons / stores */
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  min-height: 52px;
}

.store:hover { background: #0b2b38; color: var(--white); }

.store small {
  display: block;
  font-size: 10.5px;
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store strong {
  display: block;
  font-size: 16px;
}

.store--orange {
  background: var(--orange);
  color: var(--ink);
}

.store--orange:hover { background: #e08a12; color: var(--ink); }

.store--pill { border-radius: 999px; padding: 14px 26px; }

.dot,
.tri { flex: 0 0 auto; }

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.tri {
  width: 14px;
  height: 16px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.store--orange .tri,
.store--orange .dot { background: var(--ink); }

.linkbtn {
  background: none;
  border: 0;
  border-bottom: 2px solid var(--orange);
  padding: 0 0 3px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.linkbtn:hover { color: var(--cyan-dark); }

.store-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.rating-stars {
  letter-spacing: 0.1em;
  color: var(--orange);
  font-size: 15px;
}

/* Phone frames */
.phone {
  border-radius: 42px;
  background: var(--ink);
  padding: 11px;
  box-shadow: 0 40px 80px -30px rgba(11, 44, 58, 0.55);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.phone.cyan { background: var(--cyan); }

.p1 { width: min(280px, 72vw); aspect-ratio: 300 / 610; }
.p2 { width: min(188px, 48vw); aspect-ratio: 210 / 430; border-radius: 34px; padding: 9px; }
.p2 img { border-radius: 26px; }
.p3 { width: min(280px, 78vw); aspect-ratio: 320 / 650; padding: 12px; }
.p3 img { border-radius: 34px; }
.p4 { width: min(280px, 78vw); aspect-ratio: 310 / 630; padding: 12px; }
.p4 img { border-radius: 34px; }
.p5 { width: min(260px, 78vw); aspect-ratio: 290 / 590; }
.p6 {
  width: min(210px, 58vw);
  aspect-ratio: 230 / 300;
  border-radius: 30px 30px 0 0;
  padding-bottom: 0;
}
.p6 img { border-radius: 22px 22px 0 0; }

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--pale);
  z-index: 0;
  pointer-events: none;
}

.hero-block,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px) var(--pad) 0;
}

.page-hero { padding-bottom: clamp(48px, 7vw, 80px); }

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-copy { max-width: 560px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(15, 163, 203, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-dark);
  margin-bottom: 22px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.hero-copy .hero { margin-bottom: 18px; }
.hero-copy .lead { margin: 0 0 28px; max-width: 460px; }
.hero-copy .store-row { margin-bottom: 22px; }

.hero-visual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.blob--hero { top: -180px; right: -160px; width: min(820px, 140vw); height: min(820px, 140vw); }
.blob--how { top: -220px; right: -180px; width: min(840px, 150vw); height: min(840px, 150vw); }
.blob--contact { top: -120px; left: -200px; width: min(760px, 140vw); height: min(760px, 140vw); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(16, 36, 46, 0.1);
  border: 1px solid rgba(16, 36, 46, 0.1);
  border-radius: 18px;
  overflow: hidden;
  margin-top: clamp(36px, 6vw, 64px);
}

.stats > div {
  background: var(--white);
  padding: 20px 18px;
}

.stats b {
  display: block;
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 32px);
}

.stats span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: 32px;
}

.section-head .sec { max-width: 560px; }

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
  color: inherit;
  display: block;
}

.step-card:hover {
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-head h3,
.card-title {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 22px);
}

.num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-family: Archivo, sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.num.orange { background: var(--orange); }

.shot {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
}

.shot img {
  width: 100%;
  height: clamp(180px, 26vw, 250px);
  object-fit: cover;
}

.step-card p,
.service-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}

/* Dark features */
.dark {
  background: var(--ink);
  color: var(--white);
  padding: clamp(52px, 9vw, 100px) var(--pad);
}

.dark .eyebrow { color: var(--orange); }
.dark .sec { margin-bottom: 28px; max-width: 520px; }
.dark-visual { display: flex; justify-content: center; }

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.feat {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--white);
  cursor: pointer;
}

.feat[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.feat-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 2vw, 20px);
}

.fdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex: 0 0 auto;
}

.feat[aria-selected="true"] .fdot { background: var(--cyan); }

.feat p {
  display: none;
  font-size: 15.5px;
  line-height: 1.6;
  color: #b9d2db;
  margin: 12px 0 0 24px;
}

.feat[aria-selected="true"] p { display: block; }

.services-intro { margin: 10px 0 32px; max-width: 620px; }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card .shot { margin-bottom: 0; }

.service-card .shot img {
  height: clamp(150px, 24vw, 200px);
}

.service-card h3 {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 27px);
}

/* How page */
.anchor {
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 16px);
}

.pale {
  background: var(--pale);
  padding: clamp(48px, 8vw, 90px) var(--pad);
}

.phone-wrap { display: flex; justify-content: center; }

.howstep {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 22px 22px;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  width: 100%;
}

.howstep[aria-selected="true"] {
  border-color: var(--cyan);
  box-shadow: var(--shadow-soft);
}

.howstep b {
  display: block;
  font-family: Archivo, sans-serif;
  font-size: 24px;
  color: var(--cyan);
}

.howstep .howstep-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}

.howstep .howstep-text {
  display: block;
  margin-top: 8px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}

.howsteps { display: flex; flex-direction: column; gap: 12px; }

.history-copy h3 {
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.history-copy p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #2c4e5b;
  max-width: 480px;
  margin: 0 0 12px;
}

.history-block { margin-top: clamp(48px, 8vw, 80px); }
.sect--flush-top { padding-top: 0; }
.sec--center { text-align: center; margin-bottom: 36px; }

/* FAQ */
.faq-intro .sec { margin-bottom: 14px; }
.faq-intro p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 18px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(16, 36, 46, 0.09);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: clamp(15.5px, 2vw, 17px);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  min-height: 64px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf4f8;
  color: var(--cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 20px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.faq-item[open] summary i {
  background: var(--cyan);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 20px 20px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
}

/* CTA band */
.cta-section {
  padding: 0 var(--pad) clamp(52px, 9vw, 100px);
}

.band {
  position: relative;
  overflow: hidden;
  background: var(--cyan);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 64px);
  display: grid;
  gap: 28px;
  align-items: end;
}

.band-glow {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.band-copy,
.band-visual { position: relative; }

.band h2 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.06;
  margin-bottom: 14px;
  max-width: 520px;
}

.band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 460px;
}

.band-visual {
  display: flex;
  justify-content: center;
}

.band .p6 {
  margin-bottom: calc(-1 * clamp(28px, 4vw, 64px));
}

/* Contact */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px) var(--pad) clamp(48px, 8vw, 90px);
}

.contact-inner { position: relative; z-index: 1; align-items: start; }

.contact-visual {
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 20px;
}

.contact-visual img {
  width: 100%;
  height: clamp(200px, 42vw, 340px);
  object-fit: cover;
}

.contact-cards { gap: 12px; }

.info-card { border-radius: 18px; padding: 20px; }

.info-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.info-card a {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 20px);
  color: var(--ink);
  word-break: break-word;
}

.info-card p {
  margin: 8px 0 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

.app-hint {
  background: var(--pale);
  border-radius: 18px;
  padding: 18px 20px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-hint p {
  margin: 0;
  font-size: 15.5px;
  color: #2c4e5b;
  line-height: 1.5;
  flex: 1 1 180px;
}

.form-card {
  border-radius: 26px;
  padding: clamp(22px, 3vw, 42px);
}

.form-card .sec { margin-bottom: 14px; }
.form-card .lead { margin: 0 0 26px; max-width: 480px; }

.contact-form,
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #2c4e5b;
}

.field input,
.field textarea {
  border: 1px solid var(--line-strong);
  background: #f7fbfd;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
}

.field .error {
  color: #b42318;
  font-size: 13px;
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: #f7fbfd;
  color: #2c4e5b;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}

.chip[aria-pressed="true"] {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
}

.form-note a { font-weight: 700; }

.submit {
  background: var(--orange);
  color: var(--ink);
  border: 0;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px;
}

.submit:hover { background: #e08a12; }

.submit:disabled {
  background: rgba(16, 36, 46, 0.12);
  color: #7e9aa5;
  cursor: not-allowed;
}

.form-ok,
.form-alert {
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 8px;
}

.form-ok {
  background: var(--pale);
  border: 1px solid rgba(15, 163, 203, 0.35);
}

.form-alert {
  background: #fff4f2;
  border: 1px solid #f5c2c0;
  color: #7a271a;
}

.form-ok h2,
.form-ok .ok-title {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 10px;
}

.form-ok p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #2c4e5b;
}

/* Legal */
.legal {
  padding: clamp(40px, 6vw, 72px) var(--pad) clamp(64px, 8vw, 100px);
}

.legal .sec { margin-bottom: 18px; }
.legal .lead { margin: 0 0 32px; max-width: 640px; }

.legal h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 32px 0 12px;
}

.legal p,
.legal li {
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.legal ul { padding-left: 20px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 6vw, 62px) var(--pad) calc(28px + var(--safe-bottom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-brand p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #9fbac4;
  max-width: 300px;
}

.footer-brand img {
  height: 30px;
  width: auto;
}

.site-footer h2 {
  font-family: Manrope, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.col a,
.col button {
  background: none;
  border: 0;
  padding: 0;
  font-size: 15px;
  color: #d7e7ed;
  cursor: pointer;
  text-align: left;
  min-height: 28px;
}

.col a:hover,
.col button:hover { color: var(--orange); }

.storebtn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  padding: 11px 16px !important;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  min-height: 44px !important;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: #7e9aa5;
}

.footer-bottom p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-bottom a { color: #9fbac4; }
.footer-bottom a:hover { color: var(--orange); }

.up {
  background: var(--orange);
  color: var(--ink);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

/* Modal */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 32px);
}

.modal::backdrop {
  background: rgba(11, 36, 46, 0.55);
}

.modal-box {
  background: var(--white);
  border-radius: 26px;
  padding: clamp(22px, 5vw, 38px);
  max-width: 460px;
  width: min(460px, calc(100vw - 32px));
  text-align: center;
}

.modal-box h2 {
  font-weight: 900;
  font-size: clamp(24px, 4vw, 28px);
  margin-bottom: 10px;
}

.modal-box p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}

.modal-box img {
  width: 160px;
  height: 160px;
  margin: 0 auto 22px;
  border-radius: 18px;
}

.modal-stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-link {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.store-link--ink { background: var(--ink); color: var(--white); }
.store-link--ink:hover { color: var(--white); background: #0b2b38; }
.store-link--orange { background: var(--orange); color: var(--ink); }
.store-link--orange:hover { color: var(--ink); }

.modal-close {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--muted);
  min-height: 44px;
}

/* 404 */
.notfound {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 90px) var(--pad);
  text-align: center;
}

.notfound .hero { margin-bottom: 16px; }
.notfound .lead { margin: 0 auto 28px; max-width: 420px; }

/* Breakpoints */
@media (min-width: 640px) {
  .cols-2 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats > div { padding: 26px 24px; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  nav.desk { display: flex; }
  .bar > .cta-pill { display: inline-flex; }
  .burger,
  .drawer { display: none !important; }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .hero-inner,
  .page-hero-inner,
  .dark-grid,
  .etapes-grid,
  .history-block,
  .faq-grid,
  .contact-inner,
  .band {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .hero-visual { margin-top: 0; }
  .band { align-items: center; }
}

@media (min-width: 1100px) {
  .p1 { width: 300px; }
  .p2 { width: 210px; }
}
