/* ===========================================================
   CORD — Remote Service Performance Coordinator landing page
   Clean & trustworthy corporate system
   =========================================================== */

:root {
  /* Brand — themed to the croc logo (teal-green) */
  --primary:        #0d9488;
  --primary-dark:   #0b7d73;
  --primary-tint:   #d6f2ee;
  --primary-soft:   #eefbf8;

  --accent:         #16b981;   /* croc green */
  --accent-dark:    #0f9268;
  --accent-tint:    #e3f7ee;

  /* Neutrals (cool) */
  --bg:             #f5f8fc;
  --surface:        #ffffff;
  --ink:            #0f1b2d;
  --ink-2:          #2c3a4f;
  --muted:          #5d6c82;
  --line:           #e4eaf2;
  --line-strong:    #d3dcea;

  --star:           #f5a623;

  /* Type */
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --body:    "Public Sans", system-ui, sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,27,45,.05), 0 2px 6px rgba(15,27,45,.04);
  --shadow:    0 8px 24px rgba(15,27,45,.08), 0 2px 6px rgba(15,27,45,.04);
  --shadow-lg: 0 24px 60px rgba(13,148,136,.18), 0 8px 20px rgba(15,27,45,.08);

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* kill any sideways overflow without breaking the sticky header */
}

img, video { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

section { position: relative; }
/* keep section headings clear of the sticky header when reached via #anchor links */
section[id] { scroll-margin-top: 84px; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow.green { color: var(--accent-dark); background: var(--accent-tint); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 14px; text-wrap: balance; }
.section-head p { color: var(--muted); font-size: 19px; text-wrap: pretty; }

.pad { padding: clamp(64px, 8vw, 110px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(13,148,136,.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13,148,136,.34); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(17,163,104,.26); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,248,252,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.header.scrolled { border-color: var(--line); background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: 38px; object-fit: cover; border-radius: 9px; }
.brand .mark {
  font-family: var(--display); font-weight: 700; font-size: 23px; letter-spacing: -.01em; color: var(--ink);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a.navlink { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .15s; }
.nav a.navlink:hover { color: var(--primary); }
.header .btn { padding: 12px 22px; font-size: 15px; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none; flex: none; width: 44px; height: 44px; border: 0; cursor: pointer;
  background: none; padding: 10px; border-radius: 12px; -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 14px 20px 20px;
    /* collapsed */
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
    padding-block: 0;
  }
  .nav.open { max-height: 360px; opacity: 1; pointer-events: auto; padding-block: 14px 20px; }
  .nav .navlink { font-size: 17px; padding: 13px 6px; border-bottom: 1px solid var(--line); }
  .nav .btn { width: 100%; margin-top: 10px; padding: 15px; font-size: 16px; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding: clamp(48px, 6vw, 84px) 0 clamp(60px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 8px 16px 8px 10px; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--ink-2);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }

.hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  margin: 22px 0 20px;
  font-weight: 800;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--primary); position: relative; white-space: nowrap; }
.hero .lead { font-size: 20px; color: var(--muted); max-width: 540px; text-wrap: pretty; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 30px; }

.hero-proof { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--surface); margin-left: -14px; box-shadow: var(--shadow-sm);
}
.avatars img:first-child { margin-left: 0; }
.proof-text .stars { color: var(--star); font-size: 16px; letter-spacing: 2px; }
.proof-text b { font-family: var(--display); }
.proof-text span { color: var(--muted); font-size: 14px; }

/* Hero visual collage */
.hero-visual { position: relative; }
.hero-visual .main {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: var(--primary-soft);
}
.hero-visual .main img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute; background: var(--surface); border-radius: var(--r);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 16px 18px; display: flex; align-items: center; gap: 13px;
}
.float-card .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float-card .ico.green { background: var(--accent-tint); color: var(--accent-dark); }
.float-card .ico.blue { background: var(--primary-tint); color: var(--primary); }
.float-card .ico svg { width: 22px; height: 22px; }
.float-card .big { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1; }
.float-card .sub { font-size: 12.5px; color: var(--muted); }

.float-pay { top: 26px; left: -28px; }
.float-rating { bottom: 28px; right: -26px; }
.float-thumb { bottom: -26px; left: 24px; padding: 12px; }
.float-thumb img { width: 132px; height: 86px; object-fit: cover; border-radius: 10px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 440px; margin-inline: auto; }
  .float-pay { left: -10px; }
  .float-rating { right: -10px; }
}

/* ===========================================================
   MARQUEE / TRUST STRIP
   =========================================================== */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: flex; align-items: center; gap: 40px; padding: 26px 0; flex-wrap: wrap; justify-content: center; }
.trust-inner span { font-family: var(--display); font-weight: 700; color: var(--muted); font-size: 17px; opacity: .75; }
.trust-inner .trust-brand { display: inline-flex; align-items: center; gap: 9px; opacity: 1; color: var(--ink-2); }
.trust-inner .trust-brand img { width: 22px; height: 22px; object-fit: contain; border-radius: 5px; flex: none; }
.trust-inner .label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: 1; color: var(--ink-2); }

/* ===========================================================
   STATS
   =========================================================== */
.stats { background: var(--ink); color: #fff; }
.stats .wrap { padding: clamp(56px,7vw,90px) 24px; }
.stats .section-head h2 { color: #fff; }
.stats .section-head p { color: #aab6c8; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.stat {
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg);
  padding: 30px 26px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
}
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(34px,4vw,48px); letter-spacing: -.02em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat .num .accent { color: #4cd2a0; }
.stat .lbl { color: #aab6c8; margin-top: 12px; font-size: 15px; font-weight: 500; }
@media (max-width: 820px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ===========================================================
   VIDEO
   =========================================================== */
.video-wrap {
  margin-top: 48px; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #000;
  position: relative; aspect-ratio: 16/9;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================================
   ABOUT THE ROLE (feature cards)
   =========================================================== */
.role-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; margin-top: 52px; }
.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.role-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-tint); }
.role-card .step { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--primary); letter-spacing: .08em; }
.role-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; margin: 6px 0 16px; }
.role-card .ico svg { width: 24px; height: 24px; }
.role-card h3 { font-size: 21px; margin-bottom: 8px; }
.role-card p { color: var(--muted); font-size: 15.5px; }

.role-visual { display: grid; grid-template-rows: 1.3fr 1fr; gap: 18px; }
.role-visual .img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.role-visual .img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 940px) { .role-grid { grid-template-columns: 1fr; } .role-visual { grid-template-rows: none; grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .role-cards { grid-template-columns: 1fr; } }

/* ===========================================================
   WHY YOU'LL LOVE IT
   =========================================================== */
.why { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.why-visual { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 16px; margin-top: 34px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .check { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; }
.why-item .check svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 18px; margin-bottom: 3px; }
.why-item p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 940px) { .why-grid { grid-template-columns: 1fr; } .why-visual { max-width: 480px; margin-inline: auto; order: 2; } }

/* ===========================================================
   PAY & HOURS
   =========================================================== */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.pay-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 38px 34px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.pay-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.pay-card.featured::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.pay-tag { position: absolute; top: 26px; right: 28px; font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); background: var(--primary-tint); padding: 6px 12px; border-radius: 999px; }
.pay-card h3 { font-size: 26px; }
.pay-card .hours { color: var(--muted); font-weight: 600; font-family: var(--display); margin-top: 4px; }
.pay-rows { margin: 26px 0; border-top: 1px solid var(--line); }
.pay-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pay-row .k { color: var(--muted); font-size: 15.5px; }
.pay-row .v { font-family: var(--display); font-weight: 800; font-size: 22px; }
.pay-row.big .v { font-size: 34px; color: var(--accent-dark); }
.pay-row .v small { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 4px; }
@media (max-width: 720px) { .pay-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   LOOKING FOR
   =========================================================== */
.look-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.look-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.look-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 14px; }
.look-card .ico svg { width: 22px; height: 22px; }
.look-card h4 { font-size: 18px; margin-bottom: 6px; }
.look-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .look-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .look-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testi { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.testi-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; background: var(--bg); display: flex; flex-direction: column; }
.testi-card .stars { color: var(--star); letter-spacing: 2px; font-size: 16px; }
.testi-card .quote { font-size: 16.5px; color: var(--ink-2); margin: 16px 0 22px; flex: 1; text-wrap: pretty; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-person b { font-family: var(--display); display: block; font-size: 16px; }
.testi-person span { color: var(--muted); font-size: 13.5px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ===========================================================
   APPLICATION FORM
   =========================================================== */
.apply { background: linear-gradient(180deg, var(--primary-soft), var(--bg)); scroll-margin-top: 80px; }
.apply-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.apply-aside { position: sticky; top: 100px; }
.apply-aside h2 { font-size: clamp(30px,3.6vw,42px); margin: 18px 0 16px; }
.apply-aside p { color: var(--muted); font-size: 18px; margin-bottom: 26px; }
.apply-points { display: grid; gap: 14px; }
.apply-points li { list-style: none; display: flex; gap: 12px; align-items: center; font-weight: 600; font-family: var(--display); color: var(--ink-2); }
.apply-points .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; }
.apply-points .tick svg { width: 15px; height: 15px; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 38px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--ink-2); }
.field label .req { color: #e0483d; }
.field input, .field select {
  font-family: var(--body); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--surface); transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input::placeholder { color: #9aa7b8; }
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235d6c82' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.phone-row { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
.form-note {
  display: flex; gap: 11px; align-items: flex-start; margin: 22px 0;
  background: var(--accent-tint); border: 1px solid #c8ead7; border-radius: var(--r-sm);
  padding: 14px 16px; font-size: 14px; color: #14633f;
}
.form-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.form-disclaimer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }

/* ---------- Success state (after submit) ---------- */
.form-success { display: none; text-align: center; padding: 6px 0; }
.form-card.submitted .form-grid,
.form-card.submitted .form-note,
.form-card.submitted .form-submit,
.form-card.submitted .form-disclaimer { display: none; }
.form-card.submitted .form-success { display: block; animation: fsIn .35s ease; }
@keyframes fsIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.form-success .fs-ico {
  width: 64px; height: 64px; border-radius: 50%; margin: 4px auto 18px;
  background: var(--accent-tint); color: var(--accent-dark);
  display: grid; place-items: center;
}
.form-success .fs-ico svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 auto 8px; max-width: 360px; }
.form-success #waContinue { margin-top: 20px; }
.form-again {
  display: inline-block; margin-top: 14px; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: 13.5px; text-decoration: underline; text-underline-offset: 3px;
}
.form-again:hover { color: var(--ink); }
@media (max-width: 980px) { .apply-grid { grid-template-columns: 1fr; } .apply-aside { position: static; } }
@media (max-width: 520px) { .form-card { padding: 26px 22px; } .form-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list { max-width: 800px; margin: 50px auto 0; display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--primary-tint); box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); }
.faq-q .pm { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; transition: transform .25s, background .2s; }
.faq-q .pm svg { width: 18px; height: 18px; }
.faq-item.open .pm { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 16px; }

/* ===========================================================
   CTA BAND + FOOTER
   =========================================================== */
.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band .wrap { padding: clamp(56px,7vw,90px) 24px; }
.cta-band h2 { color: #fff; font-size: clamp(28px,3.6vw,44px); max-width: 760px; margin: 0 auto 14px; text-wrap: balance; }
.cta-band p { color: #aab6c8; font-size: 19px; max-width: 560px; margin: 0 auto 30px; }

.footer { background: #0a131f; color: #8a98ac; padding: 56px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand .mark { color: #fff; }
.footer-top p { max-width: 360px; margin-top: 14px; font-size: 15px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { color: #fff; font-family: var(--display); font-size: 15px; margin-bottom: 14px; letter-spacing: .04em; }
.footer-col a { display: block; font-size: 15px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ===========================================================
   IMAGE FALLBACK (graceful if a hosted image 404s)
   =========================================================== */
img.img-failed, div.img-failed {
  position: relative;
  background-color: var(--primary-soft);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(13,148,136,.06) 11px, rgba(13,148,136,.06) 22px);
  min-height: 60px;
}
div.img-failed::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; letter-spacing: .04em;
  color: var(--primary); padding: 12px;
}

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ===========================================================
   PHONE POLISH (≤600px)
   =========================================================== */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .header-inner { height: 64px; }
  .brand img { height: 30px; }

  /* Hero */
  .hero { padding-top: 28px; }
  .hero .lead { font-size: 17px; }
  .hero-cta { gap: 12px; margin: 26px 0 26px; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { max-width: 340px; }
  /* shrink + tuck floating cards so they never overflow the viewport */
  .float-card { padding: 11px 13px; gap: 10px; }
  .float-card .ico { width: 36px; height: 36px; }
  .float-card .ico svg { width: 18px; height: 18px; }
  .float-card .big { font-size: 18px; }
  .float-card .sub { font-size: 11px; }
  .float-pay { top: 14px; left: -6px; }
  .float-rating { bottom: 16px; right: -6px; }

  .hero-proof { gap: 12px; }
  .section-head p { font-size: 16px; }

  /* Stats: single column reads better on phones */
  .stat-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
  .stat { padding: 22px 22px; }

  /* Pay rows keep the big number from wrapping awkwardly */
  .pay-card { padding: 30px 24px; }
  .pay-row.big .v { font-size: 28px; }

  /* Testimonials / forms / FAQ spacing */
  .testi-card { padding: 24px 22px; }
  .faq-q { padding: 18px 20px; font-size: 16.5px; gap: 14px; }
  .faq-a-inner { padding: 0 20px 20px; }

  /* CTA + footer */
  .cta-band p { font-size: 17px; }
  .cta-band .btn { width: 100%; }
  .footer-top { gap: 28px; }
  .footer-links { gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* Extra-narrow phones (≤380px): keep the phone dial-code row usable */
@media (max-width: 380px) {
  .phone-row { grid-template-columns: 104px 1fr; gap: 8px; }
  .hero h1 { font-size: 32px; }
}
