/* ==========================================================================
   AI For Everyone — stylesheet
   Direction: navy ground, blue primary, yellow highlight, white air.
   Rounded corners, soft shadows, flat vector illustration.
   No build step. One file. Mobile first.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Colour — navy base, blue action, yellow highlight */
  --navy:        #043873;  /* dark sections, display headings */
  --navy-deep:   #032C5B;  /* footer, pressed dark */
  --navy-soft:   #0A4A8F;  /* hover on dark panels */

  --blue:        #4F9CF9;  /* decorative fills, illustration, borders */
  --blue-ink:    #2A72D0;  /* blue that carries TEXT — 4.76:1 on white */
  --blue-ink-press: #1F5FB5;  /* pressed only */
  --blue-press:  #3A86E8;  /* legacy alias, decorative */
  --blue-soft:   #A7CEFC;  /* illustration, quiet accents */
  --blue-tint:   #DCEBFC;  /* tinted section background */

  --yellow:      #FFE492;  /* secondary button, marker underline */
  --yellow-deep: #FFD25F;  /* pressed only */

  --white:       #FFFFFF;
  --paper:       #F7FAFF;  /* off-white section */
  --ink:         #212529;  /* body text on light */
  --ink-2:       #4F5B6B;  /* secondary text on light */
  --muted:       #667283;  /* labels — 4.88:1 on white, 4.67:1 on paper */
  --line:        #E1EBF7;  /* border on light */
  --line-dark:   rgba(255, 255, 255, 0.18);  /* border on navy */

  /* Type */
  --display: Poppins, "Segoe UI", "Trebuchet MS", sans-serif;
  --body:    Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --fs-d1:     clamp(32px, 6.4vw, 56px);   /* home hero */
  --fs-d2:     clamp(26px, 4.8vw, 40px);   /* page heading */
  --fs-d3:     clamp(21px, 3.2vw, 28px);   /* section heading */
  --fs-h:      18px;                       /* card heading */
  --fs-body:   16px;
  --fs-body-s: 14px;
  --fs-label:  13px;

  /* Spacing */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  16px;
  --s-4:  24px;
  --s-5:  40px;
  --s-6:  64px;
  --s-7:  96px;

  /* Shape */
  --r-s:    8px;
  --r-m:   12px;
  --r-l:   24px;
  --r-pill: 999px;

  /* Depth — soft, navy-tinted, never grey */
  --shadow-s: 0 2px 6px rgba(4, 56, 115, 0.06);
  --shadow-m: 0 8px 24px rgba(4, 56, 115, 0.10), 0 2px 6px rgba(4, 56, 115, 0.05);
  --shadow-l: 0 20px 48px rgba(4, 56, 115, 0.14), 0 4px 12px rgba(4, 56, 115, 0.06);

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 var(--s-3);
}

h1 { font-size: var(--fs-d1); }
h2 { font-size: var(--fs-d2); }
h3 { font-size: var(--fs-d3); }
h4 { font-size: var(--fs-h); letter-spacing: -0.01em; }

p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--s-3); padding-left: 1.25em; }
li { margin-bottom: var(--s-2); }
li:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--blue-ink);
  outline-offset: 2px;
  border-radius: var(--r-s);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--s-3);
  top: -100px;
  z-index: 100;
  background: var(--yellow);
  color: var(--navy);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-s);
  font-weight: 600;
  transition: top 140ms var(--ease);
}
.skip-link:focus { top: var(--s-3); }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s-3);
}

@media (min-width: 720px) {
  .wrap { padding-inline: var(--s-4); }
}

.section { padding-block: var(--s-6); }
.section-lg { padding-block: var(--s-6); }

@media (min-width: 900px) {
  .section    { padding-block: var(--s-7); }
  .section-lg { padding-block: calc(var(--s-7) + var(--s-5)); }
}

/* Section skins */
.on-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: var(--white); }
.on-navy strong { color: var(--white); }
.on-navy a { color: var(--blue-soft); }

.on-tint  { background: var(--blue-tint); }
.on-paper { background: var(--paper); }

/* The tinted section is light, but not light enough for the mid-tones that
   clear 4.5:1 on plain white. Text sitting directly on it goes one step
   darker. Cards inside keep their own white background and are unaffected. */
.on-tint .eyebrow { color: var(--blue-ink-press); }
.on-tint > .wrap .form-note,
.on-tint > .wrap > .section-head p { color: var(--ink-2); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--s-5);
}
.section-head.is-centred {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 0;
}
.on-navy .section-head p { color: rgba(255, 255, 255, 0.78); }

/* Eyebrow label above a heading */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-ink);
  margin-bottom: var(--s-2);
}
/* Every dark surface, listed in one place. The hero and the CTA band are as
   dark as .on-navy, so anything tuned for navy must name all of them or it
   silently fails on two sections out of four. */
.on-navy .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow { color: var(--yellow); }

/* Yellow marker under a word — the reference's signature move */
.mark {
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  /* A stroke sitting under the word, not a highlighter through it. When the
     phrase wraps, clone the decoration so every line gets its own stroke
     instead of one band stretched across the block. */
  background-size: 100% 0.16em;
  background-position: 0 96%;
  padding-inline: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--body);
  font-size: var(--fs-body-s);
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-s);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 140ms var(--ease),
              transform 140ms var(--ease),
              box-shadow 140ms var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue-ink);
  color: var(--white);
  box-shadow: var(--shadow-s);
}
.btn-primary:hover { background: var(--blue-ink-press); box-shadow: var(--shadow-m); }
.btn-primary:active { background: var(--blue-ink-press); box-shadow: none; }

.btn-accent {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-s);
}
.btn-accent:hover { background: var(--yellow-deep); box-shadow: var(--shadow-m); }
.btn-accent:active { background: var(--yellow-deep); box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* Every dark surface, not just .on-navy — the header and the hero are dark
   too, and a navy-on-navy ghost button is an invisible button. */
.on-navy .btn-ghost,
.site-header .btn-ghost,
.hero .btn-ghost,
.cta-band .btn-ghost {
  color: var(--white);
  border-color: var(--line-dark);
}
.on-navy .btn-ghost:hover,
.site-header .btn-ghost:hover,
.hero .btn-ghost:hover,
.cta-band .btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* A button stays a button inside sections that restyle plain links.
   `.on-navy a` is more specific than `.btn-accent`, so without these the
   yellow button inherits the pale link blue and becomes unreadable. */
.on-navy a.btn-primary,
.cta-band a.btn-primary,
.hero a.btn-primary { color: var(--white); }

.on-navy a.btn-accent,
.cta-band a.btn-accent,
.hero a.btn-accent { color: var(--navy); }

.btn-lg { padding: 17px 32px; font-size: var(--fs-body); }
.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}
.btn-row.is-centred { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; color: var(--white); }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }

/* Navigation */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-s);
  color: var(--white);
  font-family: var(--body);
  font-size: var(--fs-body-s);
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--white); }
.nav-toggle-bars {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after  { top:  5px; }

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
  padding: var(--s-3) 0 var(--s-4);
  box-shadow: var(--shadow-l);
}
.site-nav.is-open { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.site-nav li { margin: 0; }

.site-nav a {
  display: block;
  padding: 12px var(--s-2);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body-s);
  font-weight: 500;
  border-radius: var(--r-s);
}
.site-nav a:hover { background: var(--navy-soft); color: var(--white); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--yellow); font-weight: 600; }

.header-cta { display: none; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    margin-left: auto;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--s-1);
    padding: 0;
  }
  .site-nav a { padding: 8px 14px; }

  .header-cta { display: inline-flex; gap: var(--s-2); flex-shrink: 0; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-block: var(--s-6);
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero { padding-block: var(--s-7); }
}

.hero-grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
}

.hero h1 { color: var(--white); }

.hero-lede {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.80);
  max-width: 46ch;
  margin-bottom: var(--s-4);
}

@media (min-width: 900px) {
  .hero-lede { font-size: 18px; }
}

.hero-art { position: relative; }

/* Decorative wave, sits behind the hero content */
.hero-wave {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
}
.hero-points li {
  margin: 0;
  font-size: var(--fs-body-s);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.hero-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background: var(--yellow);
  /* tick drawn with a mask so it inherits no extra colour */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.2l2.6 2.6L13 6.4' fill='none' stroke='%23043873' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   7. Cards and grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: var(--s-4); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) and (max-width: 899px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: var(--s-4);
  box-shadow: var(--shadow-s);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.card h3, .card h4 { margin-bottom: var(--s-2); }
.card p { color: var(--ink-2); font-size: var(--fs-body-s); }

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-m);
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-3);
}
.card-icon svg { width: 26px; height: 26px; }

/* Numbered step */
.step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--blue-ink);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-3);
}
.on-navy .step-num { background: var(--yellow); color: var(--navy); }

/* Two-column feature row — alternates side on wide screens */
.feature {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
.feature + .feature { margin-top: var(--s-6); }

@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .feature-flip .feature-art { order: -1; }
}

/* --------------------------------------------------------------------------
   8. Service cards
   -------------------------------------------------------------------------- */

.service {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: var(--s-4);
  box-shadow: var(--shadow-s);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
  height: 100%;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }

.service-live { border-color: var(--blue); box-shadow: var(--shadow-m); }

.service-soon {
  background: var(--paper);
  box-shadow: none;
}
.service-soon:hover { transform: none; box-shadow: none; }
.service-soon h3 { color: var(--ink-2); }

.service-body { flex: 1; }

.service .btn { margin-top: var(--s-4); }

/* Status pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.pill-live { background: var(--blue-ink); color: var(--white); }
.pill-soon { background: var(--line); color: var(--ink-2); }

.pill-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--white);
}

/* Price */
.price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.price small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: var(--fs-body-s);
  color: var(--muted);
  letter-spacing: 0;
  margin-top: var(--s-2);
}
.on-navy .price { color: var(--white); }
.on-navy .price small { color: rgba(255, 255, 255, 0.7); }

/* Original price beside the early-batch price */
.price-compare {
  display: flex;
  align-items: flex-end;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.price-was .label,
.price-now .label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.price-was s {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--muted);
  text-decoration-thickness: 2px;
}
.price-compare .price { margin: 0; }
.on-navy .price-was .label,
.on-navy .price-now .label { color: rgba(255, 255, 255, 0.62); }
.on-navy .price-was s { color: rgba(255, 255, 255, 0.55); }

/* Portrait — the About photo */
.portrait {
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: var(--blue-tint);
  aspect-ratio: 4 / 5;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.credential {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.credential:last-child { border-bottom: 0; }
.credential-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-m);
  background: var(--blue-tint);
  display: grid;
  place-items: center;
}
.credential-icon svg { width: 20px; height: 20px; }
.credential h4 { margin-bottom: 2px; }
.credential p { font-size: var(--fs-body-s); color: var(--ink-2); margin: 0; }

/* Checklist */
.ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-3);
}
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--s-2);
  font-size: var(--fs-body-s);
  color: var(--ink-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: var(--r-pill);
  background: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.2l3 3L14.5 7' fill='none' stroke='%232A72D0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.on-navy .ticks li { color: rgba(255, 255, 255, 0.80); }
.on-navy .ticks li::before {
  background-color: rgba(255, 255, 255, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.2l3 3L14.5 7' fill='none' stroke='%23FFE492' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   9. Syllabus / module list
   -------------------------------------------------------------------------- */

.module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
.module:last-child { border-bottom: 0; }

.module-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: var(--blue-tint);
  width: 40px;
  height: 40px;
  border-radius: var(--r-m);
  display: grid;
  place-items: center;
}
.module h4 { margin-bottom: var(--s-1); }
.module p { font-size: var(--fs-body-s); color: var(--ink-2); margin: 0; }
.module-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--s-2);
}

/* --------------------------------------------------------------------------
   10. FAQ
   -------------------------------------------------------------------------- */

.faq { max-width: 780px; margin-inline: auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  margin-bottom: var(--s-3);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-s); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-h);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  background: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6.5 9l4.5 4.5L15.5 9' fill='none' stroke='%232A72D0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 160ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-answer {
  padding: 0 var(--s-4) var(--s-4);
  color: var(--ink-2);
  font-size: var(--fs-body-s);
}

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */

.form-panel {
  background: var(--white);
  border-radius: var(--r-l);
  padding: var(--s-4);
  box-shadow: var(--shadow-l);
}

@media (min-width: 720px) {
  .form-panel { padding: var(--s-5); }
}

.daftar-form { display: grid; gap: var(--s-3); }

.field label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.daftar-form input,
.daftar-form select,
.daftar-form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: var(--fs-body-s);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px var(--s-3);
  transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.daftar-form input::placeholder,
.daftar-form textarea::placeholder { color: var(--muted); }

.daftar-form input:focus,
.daftar-form select:focus,
.daftar-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 156, 249, 0.18);
}

.daftar-form textarea { min-height: 110px; resize: vertical; }

@media (min-width: 640px) {
  .daftar-form-wide { grid-template-columns: 1fr 1fr; }
  .daftar-form-wide .field-full,
  .daftar-form-wide .form-status,
  .daftar-form-wide button { grid-column: 1 / -1; }
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Reply line printed by js/form.js. Success and failure are told apart by
   the icon and the wording as well as the colour. */
.form-status {
  font-size: var(--fs-body-s);
  font-weight: 500;
  margin: 0;
  padding: 12px var(--s-3);
  border-radius: var(--r-s);
  border-left: 4px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
}
.form-status:empty { display: none; }
.form-status.is-ok {
  border-left-color: var(--blue-ink);
  background: var(--blue-tint);
  color: var(--navy);
}
.form-status.is-error {
  border-left-color: var(--yellow-deep);
  background: #FFF8E6;
  color: #6B4E00;
}

/* --------------------------------------------------------------------------
   12. Call-to-action band
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--navy);
  border-radius: var(--r-l);
  padding: var(--s-5) var(--s-4);
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 52ch; margin-inline: auto; }

@media (min-width: 720px) {
  .cta-band { padding: var(--s-6) var(--s-5); }
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--s-6) var(--s-4);
  font-size: var(--fs-body-s);
}

.footer-grid {
  display: grid;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--s-6); }
}

.site-footer h4 {
  color: var(--white);
  font-size: var(--fs-body-s);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }

.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: var(--white); }

.footer-brand .brand { margin-bottom: var(--s-3); }
.footer-brand p { max-width: 38ch; margin-bottom: 0; }

.footer-base {
  border-top: 1px solid var(--line-dark);
  padding-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */

.centred { text-align: center; }
.stack-sm > * + * { margin-top: var(--s-2); }
.stack    > * + * { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mb-0 { margin-bottom: 0; }
.lede { font-size: 17px; color: var(--ink-2); }

/* The honeypot must stay 1px. `.daftar-form input { width:100% }` is more
   specific than the base .visually-hidden rule, so without !important the
   hidden field stretched to full width and pushed the page to 2332px --
   which made phones lay out wide and zoom out. */
.visually-hidden{width:1px!important;height:1px!important;padding:0!important;border:0!important;overflow:hidden!important}

/* ---------------------------------------------------------------------
   Motion. Content rises into view on scroll; one strip scrolls sideways.
   Both are decoration -- the page is complete with every animation off,
   which is what happens under prefers-reduced-motion or if JS is blocked.
   --------------------------------------------------------------------- */
.reveal-ready .reveal{opacity:0;transform:translateY(22px);transition:opacity 620ms var(--ease),transform 620ms var(--ease)}
.reveal-ready .reveal.is-in{opacity:1;transform:none}
.reveal-ready .reveal-group>*{opacity:0;transform:translateY(22px);transition:opacity 620ms var(--ease),transform 620ms var(--ease)}
.reveal-ready .reveal-group.is-in>*{opacity:1;transform:none}
.reveal-ready .reveal-group.is-in>*:nth-child(2){transition-delay:90ms}
.reveal-ready .reveal-group.is-in>*:nth-child(3){transition-delay:180ms}
.reveal-ready .reveal-group.is-in>*:nth-child(4){transition-delay:270ms}
.marquee{background:var(--navy-deep);border-block:1px solid var(--line-dark);overflow:hidden;padding-block:var(--s-3)}
.marquee-track{display:flex;width:max-content;animation:marquee-slide 38s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee-run{display:flex;align-items:center;gap:var(--s-5);padding-right:var(--s-5);flex:0 0 auto}
.marquee-item{display:inline-flex;align-items:center;gap:var(--s-2);white-space:nowrap;font-family:var(--display);font-weight:600;font-size:15px;letter-spacing:-.01em;color:rgba(255,255,255,.86)}
.marquee-item::before{content:'';width:7px;height:7px;border-radius:var(--r-pill);background:var(--yellow);flex-shrink:0}
@keyframes marquee-slide{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
@media (prefers-reduced-motion:reduce){
  .reveal-ready .reveal,.reveal-ready .reveal-group>*{opacity:1!important;transform:none!important}
  .marquee-track{animation:none}
  .card-hover:hover,.service:hover{transform:none}
}
