/* ============================================================
   Adapt AI Systems - by Adapt Digital Solutions
   Single production stylesheet. Family look of the Adapt
   Digital Solutions site, dark navy surfaces for the AI wing.
   ============================================================ */

:root {
  --brand-orange: #F46122;
  --accent-amber: #F49C22;
  --cta-green: #6FD81E;
  --hover-green: #52B307;
  --navy: #14142a;
  --navy-deep: #0b0b18;
  --navy-soft: #1c1c38;
  --navy-line: rgba(255, 255, 255, 0.10);
  --cream: #FBEFEB;
  --body-brown: #351C11;
  --midtone-taupe: #AD9286;
  --white: #FFFFFF;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 74px;
  --container-max: 1200px;
  --section-pad: 88px;
  --radius: 10px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-brown);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--brand-orange); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-amber); }
ul { list-style: none; }
img, svg { max-width: 100%; }
strong { font-weight: 700; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--accent-amber));
  color: var(--white);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-amber), var(--brand-orange));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 97, 34, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: var(--brand-orange);
  background: rgba(244, 97, 34, .12);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}
.btn--outline:hover { background: var(--brand-orange); color: var(--white); transform: translateY(-2px); }
.btn--green {
  background: var(--cta-green);
  color: #10240a;
}
.btn--green:hover { background: var(--hover-green); color: var(--white); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .85rem; letter-spacing: .8px; }
.btn--block { width: 100%; }

/* ============ HEADER / NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--brand-orange);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--nav-h);
}
.brand { display: flex; flex-direction: column; justify-content: center; flex-shrink: 0; line-height: 1.05; }
.brand__row { display: flex; align-items: center; gap: 8px; }
.brand__mark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.brand__tag {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), var(--accent-amber));
  padding: 3px 8px;
  border-radius: 3px;
}
.brand__by {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__menu { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: 8px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-heading);
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links > li > a:hover,
.nav__links > li > a.is-active { color: var(--brand-orange); }
.nav__sub {
  position: absolute;
  top: calc(100% + 2px); left: 0;
  min-width: 250px;
  background: #12122a;
  border: 1px solid var(--navy-line);
  border-top: 2px solid var(--brand-orange);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s ease;
}
.has-sub:hover .nav__sub,
.has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a {
  display: block;
  padding: 11px 20px;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.nav__sub li:last-child a { border-bottom: 0; }
.nav__sub a:hover { color: var(--white); background: rgba(244, 97, 34, .14); padding-left: 26px; }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 10px; flex-shrink: 0; }
.nav__phone {
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 4px;
}
.nav__phone:hover { color: var(--brand-orange); background: rgba(255, 255, 255, .06); }

@media (max-width: 980px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px 0 40px;
    overflow-y: auto;
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links > li > a {
    padding: 16px 24px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .03);
    min-width: 0;
    padding: 0;
  }
  .nav__sub a { padding: 13px 40px; font-size: .95rem; }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 22px 24px 0;
  }
  .nav__phone { text-align: center; font-size: 1.05rem; padding: 12px; border: 1px solid var(--navy-line); border-radius: 4px; }
  .nav__actions .btn { padding: 14px 20px; font-size: 1rem; }
}

/* ============ SECTIONS ============ */
.section { padding: var(--section-pad) 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--navy); color: rgba(255, 255, 255, .78); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--deep { background: var(--navy-deep); color: rgba(255, 255, 255, .78); }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }
.section--dark .section-head p, .section--deep .section-head p { color: rgba(255, 255, 255, .74); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.section--dark .eyebrow, .section--deep .eyebrow { color: var(--accent-amber); }

.lead { font-size: 1.15rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(244, 97, 34, .22), transparent 60%),
    radial-gradient(760px 420px at 10% 108%, rgba(244, 156, 34, .13), transparent 62%),
    linear-gradient(165deg, #16162e 0%, #101026 55%, #0b0b18 100%);
  color: rgba(255, 255, 255, .8);
  padding: 92px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--brand-orange); }
.hero__sub { font-size: 1.18rem; color: rgba(255, 255, 255, .8); max-width: 640px; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__note { font-size: .95rem; color: rgba(255, 255, 255, .55); }
.hero__points { display: grid; gap: 12px; margin: 26px 0 0; }
.hero__points li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: rgba(255, 255, 255, .82); }
.hero__points .ico { color: var(--cta-green); flex-shrink: 0; margin-top: 3px; }

.hero-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--navy-line);
  border-top: 3px solid var(--brand-orange);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-card h2 { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.hero-card__price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--accent-amber);
  line-height: 1;
  margin: 10px 0 4px;
}
.hero-card__price small { font-size: 1rem; color: rgba(255, 255, 255, .6); letter-spacing: 1px; }
.hero-card p { font-size: .98rem; color: rgba(255, 255, 255, .72); }
.hero-card ul { display: grid; gap: 10px; margin: 18px 0 22px; }
.hero-card li { display: flex; gap: 10px; font-size: .95rem; color: rgba(255, 255, 255, .78); }
.hero-card li .ico { color: var(--cta-green); flex-shrink: 0; margin-top: 3px; }

/* Page hero for interior pages */
.page-hero {
  background:
    radial-gradient(900px 440px at 82% -12%, rgba(244, 97, 34, .2), transparent 62%),
    linear-gradient(165deg, #16162e 0%, #0f0f24 100%);
  color: rgba(255, 255, 255, .8);
  padding: 74px 0 66px;
  border-bottom: 1px solid var(--navy-line);
}
.page-hero h1 { color: var(--white); margin-bottom: 18px; max-width: 900px; }
.page-hero h1 span { color: var(--brand-orange); }
.page-hero__sub { font-size: 1.15rem; max-width: 720px; color: rgba(255, 255, 255, .8); }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ============ TRUST STRIP ============ */
.strip { background: var(--navy-deep); border-bottom: 1px solid var(--navy-line); padding: 22px 0; }
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .68);
  font-size: .95rem;
  text-align: center;
}
.strip__item { display: flex; align-items: center; gap: 9px; }
.strip__item .ico { color: var(--brand-orange); flex-shrink: 0; }

/* ============ CARDS ============ */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(53, 28, 17, .12);
  border-top: 3px solid var(--brand-orange);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(20, 20, 42, .12); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(244, 97, 34, .16), rgba(244, 156, 34, .16));
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 1rem; }
.card ul { display: grid; gap: 9px; margin: 16px 0 0; }
.card li { display: flex; gap: 10px; font-size: .97rem; }
.card li .ico { color: var(--brand-orange); flex-shrink: 0; margin-top: 4px; }
.card__link { margin-top: auto; padding-top: 20px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; font-size: .92rem; }

.card--dark {
  background: rgba(255, 255, 255, .04);
  border-color: var(--navy-line);
  color: rgba(255, 255, 255, .76);
}
.card--dark:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, .35); }
.card--dark h3 { color: var(--white); }
.card--dark .card__icon { color: var(--accent-amber); background: rgba(244, 156, 34, .14); }

/* ============ NUMBERED STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
}
.step__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brand-orange);
  margin-bottom: 12px;
  display: block;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .97rem; }

/* ============ CHECK LIST ============ */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.03rem; }
.checklist .ico { color: var(--cta-green); flex-shrink: 0; margin-top: 4px; }
.checklist--orange .ico { color: var(--brand-orange); }

/* ============ SPLIT ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split--wide-left { grid-template-columns: 1.2fr .8fr; }

.panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--navy-line);
  border-left: 3px solid var(--brand-orange);
  border-radius: 8px;
  padding: 26px 26px;
}
.panel--light {
  background: var(--white);
  border-color: rgba(53, 28, 17, .12);
  border-left: 3px solid var(--brand-orange);
}
.panel h3 { margin-bottom: 12px; }
.panel + .panel { margin-top: 18px; }

/* Stack math box */
.stack-math {
  display: grid;
  gap: 0;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}
.stack-math__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--navy-line);
  font-size: 1rem;
}
.stack-math__row:last-child { border-bottom: 0; }
.stack-math__row--total {
  background: rgba(244, 97, 34, .12);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.stack-math__row span:last-child { white-space: nowrap; font-weight: 700; color: var(--white); }

/* ============ TABLE (privacy ladder) ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(53, 28, 17, .14); }
table.data { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--white); }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(53, 28, 17, .1); font-size: .98rem; }
table.data th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .88rem;
}
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:nth-child(even) { background: rgba(251, 239, 235, .55); }

/* ============ FAQ ============ */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid rgba(53, 28, 17, .12);
  border-radius: 8px;
  padding: 20px 22px;
}
.faq__item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.section--dark .faq__item, .section--deep .faq__item {
  background: rgba(255, 255, 255, .04);
  border-color: var(--navy-line);
}

/* ============ VIDEO EMBEDS ============ */
.video-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.video-row--single { grid-template-columns: minmax(0, 760px); justify-content: center; }
.video figure { margin: 0; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--navy-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video figcaption {
  margin-top: 12px;
  font-size: .96rem;
  line-height: 1.5;
}
.video figcaption strong { display: block; font-family: var(--font-heading); font-weight: 500; text-transform: uppercase; letter-spacing: .6px; font-size: 1.02rem; }
.section--dark .video figcaption strong, .section--deep .video figcaption strong { color: var(--white); }
.video-note { font-size: .95rem; margin-top: 26px; }

@media (max-width: 820px) {
  .video-row { grid-template-columns: 1fr; gap: 26px; }
}

/* ============ CTA BAND ============ */
.cta-band {
  background:
    radial-gradient(700px 340px at 80% 0%, rgba(244, 97, 34, .24), transparent 62%),
    linear-gradient(160deg, #16162e, #0b0b18);
  color: rgba(255, 255, 255, .8);
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--navy-line);
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { max-width: 640px; margin: 0 auto 26px; font-size: 1.08rem; }
.cta-band__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ CONTACT FORM ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.form-card {
  background: var(--white);
  border: 1px solid rgba(53, 28, 17, .12);
  border-top: 3px solid var(--brand-orange);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 16px 40px rgba(20, 20, 42, .1);
}
.section--dark .form-card, .section--deep .form-card, .cta-band .form-card { box-shadow: 0 20px 50px rgba(0, 0, 0, .35); }
/* The card is always light, even inside a dark section. */
.form-card,
.section--dark .form-card,
.section--deep .form-card { color: var(--body-brown); }
.form-card h2, .form-card h3,
.section--dark .form-card h2, .section--dark .form-card h3,
.section--deep .form-card h2, .section--deep .form-card h3 { color: var(--body-brown); }
.form-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card__note { font-size: .95rem; color: var(--midtone-taupe); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-group label {
  font-family: var(--font-heading);
  font-size: .82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--body-brown);
  margin-bottom: 7px;
}
.form-group .opt { color: var(--midtone-taupe); letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-brown);
  background: #FAF7F5;
  border: 1px solid rgba(53, 28, 17, .18);
  border-radius: 6px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(244, 97, 34, .15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B3A29A; }
.form-hp { position: absolute; left: -9999px; top: -9999px; }
.form-legal { font-size: .85rem; color: var(--midtone-taupe); margin-top: 14px; }

/* ============ FOOTER ============ */
.footer { background: #000; color: rgba(255, 255, 255, .6); padding: 62px 0 26px; font-size: .95rem; }
.footer a { color: rgba(255, 255, 255, .6); }
.footer a:hover { color: var(--brand-orange); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand-mark {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__brand-mark span { color: var(--brand-orange); }
.footer__by { font-size: .85rem; color: rgba(255, 255, 255, .55); margin-bottom: 14px; }
.footer__brand p { font-size: .92rem; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: .86rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer li { margin-bottom: 9px; line-height: 1.45; }
.footer address { font-style: normal; line-height: 1.7; font-size: .92rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
}

/* ============ THANK YOU ============ */
.thanks { text-align: center; max-width: 720px; margin: 0 auto; }
.thanks__mark {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(111, 216, 30, .14);
  border: 2px solid var(--cta-green);
  color: var(--cta-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.thanks .checklist { text-align: left; max-width: 520px; margin: 28px auto 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --section-pad: 68px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .grid--2 { grid-template-columns: 1fr; }
  .split, .split--wide-left { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 660px) {
  .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --section-pad: 56px; }
  body { font-size: 16px; }
  .hero { padding: 62px 0 56px; }
  .page-hero { padding: 54px 0 48px; }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn { width: 100%; }
  .hero__cta .btn, .page-hero__cta .btn, .cta-band__buttons .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .form-card { padding: 24px 20px; }
  .section-head { margin-bottom: 34px; }
  .strip__inner { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
