/* Sunny Coast AC — mobile-first styles */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--tap) + 1.5rem);
}

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

a {
  color: var(--color-link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--deep-blue);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: var(--gutter);
  top: 0.5rem;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - (var(--gutter) * 2), 42rem);
  margin-inline: auto;
}

/* Type */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

/* Sharp Acquisition-style hero / VSL headlines only */
.hero .display,
.vsl-hero .display {
  font-family: var(--font-hero);
  letter-spacing: -0.02em;
}

.eyebrow {
  text-align: center;
  margin: 0 0 0.35rem;
  color: var(--deep-blue);
}

.script {
  font-family: var(--font-script);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  font-style: normal;
}

.lede {
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--color-text-muted);
  font-size: var(--text-md);
}

.muted {
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-lg {
  min-height: 3.25rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-action);
  color: var(--color-action-text);
  border-color: var(--color-action);
}

.btn-primary:hover {
  background: var(--color-action-hover);
  border-color: var(--color-action-hover);
  color: var(--color-action-text);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn:active {
  transform: translateY(1px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
  justify-self: start;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--white);
}

.brand-text span {
  color: var(--sun-gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  opacity: 1;
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: var(--sun-gold) !important;
}

.nav-desktop a.nav-cta {
  font-weight: 700;
  color: var(--sun-orange) !important;
}

.nav-desktop a.nav-cta:hover {
  color: var(--sun-gold) !important;
}

a.nav-cta-phone,
.header-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-action);
  color: var(--color-action-text) !important;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(232, 145, 15, 0.35);
  white-space: nowrap;
}

a.nav-cta-phone:hover,
.header-phone:hover {
  background: var(--color-action-hover);
  color: var(--color-action-text) !important;
}

.nav-phone-icon {
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-desktop a[aria-current="page"] {
  color: var(--sun-gold) !important;
}

.nav-drawer-inner a[aria-current="page"] {
  color: var(--sun-orange);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  grid-column: -1;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 0.4rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-header.is-nav-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-drawer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
}

.nav-drawer-inner a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0.85rem var(--gutter);
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer-inner a:hover {
  color: var(--sun-gold) !important;
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-desktop {
    display: flex;
    justify-self: center;
    grid-column: 2;
  }

  .header-phone,
  a.nav-cta-phone.header-phone {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
  }

  .nav-toggle,
  .nav-drawer {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .brand-text {
    display: none;
  }
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.tint-soft {
  background: #eef6fb;
}

/* Hero */
.hero {
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  background: #e9ebee;
}

.hero-tight {
  padding-top: 2.75rem;
  padding-bottom: 2rem;
}

.hero-tall {
  min-height: calc(75vh - var(--header-h));
  min-height: calc(75svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: clamp(2.6rem, 7.5vw, 4.875rem);
  padding-bottom: clamp(2.6rem, 7.5vw, 4.875rem);
}

.hero-tight .lede {
  margin-bottom: 1.25rem;
}

.risk-line {
  text-align: center;
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

/* Wave dividers — signature element */
.wave {
  line-height: 0;
  margin: 0;
  display: block;
}

.wave svg {
  width: 100%;
  height: 56px;
  display: block;
}

.wave-foam {
  color: #eef6fb;
}

/* Trust band: only wave on the site (by hero) */
.trust-band {
  margin: 0;
  padding: 0;
  background: #eef6fb;
}

.wave-join-hero {
  background: #e9ebee; /* matches hero — fills above the curve */
  color: #eef6fb; /* trust band fill */
}

.wave-join-next {
  background: var(--foam); /* matches section below */
  color: #eef6fb;
}

.wave-join-next svg {
  transform: scaleY(-1);
}

.trust-bar {
  background: #eef6fb;
  padding: 1.25rem 0 1.25rem;
  margin: 0;
}

.wave-mascot {
  position: relative;
  margin-top: 1rem;
}

.sunny-peek {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.sunny-peek img {
  margin-inline: auto;
  filter: drop-shadow(0 8px 16px rgba(13, 59, 102, 0.2));
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.trust-lic {
  margin-left: 0.4em;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.trust-list li:not(:last-child)::after {
  content: "•";
  margin: 0 0.55rem;
  color: var(--surf-blue);
  font-weight: 400;
}

@media (min-width: 720px) {
  .trust-list {
    font-size: var(--text-sm);
    gap: 0;
  }
  .trust-list li:not(:last-child)::after {
    margin: 0 0.85rem;
  }
}

/* Promises */
.promise-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  counter-reset: promise;
}

.promise-list li {
  position: relative;
  padding: 1.25rem 0 1.25rem 3.25rem;
  border-bottom: 1px solid rgba(13, 59, 102, 0.1);
  text-align: left;
}

.promise-list li::before {
  counter-increment: promise;
  content: counter(promise);
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
}

.promise-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.promise-list p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Services */
.service-rows {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.service-rows li {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(13, 59, 102, 0.1);
  text-align: left;
}

.service-rows h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.service-rows p {
  margin: 0;
  color: var(--color-text-muted);
}

.financing-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .service-rows li {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Offers (when enabled) */
.offer-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-card {
  background: var(--white);
  border: 2px solid rgba(13, 59, 102, 0.12);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.offer-draft {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sunset);
  border: 1px solid var(--sunset);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin: 0 0 0.75rem;
}

.offer-expiry {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--sunset);
}

/* Guarantee */
.check-list {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 28rem;
  text-align: left;
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.85rem;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0 2px var(--teal);
}

/* Van */
.van-figure {
  margin: 0 auto 1.75rem;
  max-width: 52rem;
}

.van-figure img {
  width: 100%;
  border-radius: 0.75rem;
}

/* FAQs */
.faq-list {
  margin-top: 1.5rem;
}

.faq-list details {
  border-bottom: 1px solid rgba(13, 59, 102, 0.12);
  padding: 0.35rem 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  padding-right: 1.5rem;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.35rem;
  color: var(--surf-blue);
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  text-align: left;
}

/* Home FAQ + About split */
.home-faq .faq-list {
  margin-top: 1.25rem;
}

.about-home {
  background: var(--foam);
}

.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  max-width: 60rem;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .about-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.75rem;
  }
}

.about-photo {
  margin: 0;
  border: 4px solid var(--navy);
  background: var(--white);
  line-height: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy {
  text-align: left;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: var(--leading-body);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(160deg, #f7941d 0%, #f26522 55%, #0d3b66 160%);
  color: var(--white);
}

.final-cta .display,
.final-cta .lede {
  color: var(--white);
}

.final-cta .lede {
  opacity: 0.95;
}

/* Footer */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 3rem 0 2rem;
  font-size: var(--text-sm);
}

.site-footer.compact {
  padding: 1.75rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
  }
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand-link img {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: var(--white);
}

.footer-tagline {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.footer-blurb {
  margin: 0 0 1rem;
  line-height: 1.5;
  max-width: 22rem;
}

.footer-heading {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.45rem;
}

.footer-links a,
.footer-contact a {
  color: var(--color-footer-text);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sun-gold);
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-social-btn:hover {
  background: var(--color-action);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.footer-legal,
.footer-area,
.footer-consent,
.footer-disclaimer {
  margin: 0 0 0.85rem;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.footer-nav a {
  color: var(--white);
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--sun-gold);
}

/* Mobile sticky CTA bar */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(247, 249, 251, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(13, 59, 102, 0.1);
}

@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* Guide + legal pages */
.guide-page,
.legal-page {
  padding-top: 2.5rem;
}

.guide-preview {
  margin-bottom: 2rem;
}

.guide-form {
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: 0.35rem;
}

.optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.field input {
  width: 100%;
  min-height: var(--tap);
  padding: 0.65rem 0.85rem;
  border: 2px solid rgba(13, 59, 102, 0.18);
  border-radius: 0.65rem;
  font: inherit;
  color: var(--navy);
  background: var(--foam);
}

.field input:focus {
  border-color: var(--surf-blue);
  outline: none;
}

.consent-block {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

.check {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: var(--text-sm);
  line-height: 1.45;
  cursor: pointer;
}

.check input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--sun-orange);
}

.form-note,
.fallback-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 1rem 0 0;
  text-align: center;
}

/* "Not sure yet?" block under the homepage form */
.form-after {
  text-align: center;
  margin-top: 2.5rem;
}

.form-after-title {
  font-weight: 700;
  font-size: var(--text-lg, 1.15rem);
  margin: 0 0 0.35rem;
}

.form-after-copy {
  color: var(--color-text-muted);
  margin: 0 auto 1.1rem;
  max-width: 32rem;
}

.form-status {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--teal);
}

.form-status.is-error {
  color: var(--sunset);
}

.back-link {
  margin-top: 2rem;
  text-align: center;
}

.prose {
  text-align: left;
}

.prose .display,
.prose .lede {
  text-align: center;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
}

.prose p,
.prose ul {
  color: var(--color-text-muted);
}

.legal-note {
  font-size: var(--text-sm);
  border-left: 3px solid var(--sun-gold);
  padding-left: 0.85rem;
}

/* Motion.
   Scroll reveals are gated behind html.js (set by an inline script in <head>)
   so content is never invisible when JS is slow or blocked.
   The hero never waits on JS: it renders instantly with a CSS-only staged fade. */
.reveal {
  transition: opacity var(--dur) var(--ease);
}

html.js .reveal {
  opacity: 0;
}

.reveal.is-in,
html.js .reveal.is-in {
  opacity: 1;
}

.hero .reveal {
  opacity: 1;
  animation: hero-fade 0.6s var(--ease) both;
}

html.js .hero .reveal {
  opacity: 1;
}

.hero .reveal.eyebrow {
  animation-delay: 0.05s;
}
.hero .reveal.display {
  animation-delay: 0.12s;
}
.hero .reveal.lede {
  animation-delay: 0.22s;
}
.hero .cta-row.reveal {
  animation-delay: 0.32s;
}
.hero .risk-line.reveal {
  animation-delay: 0.4s;
}

@keyframes hero-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero .reveal {
    animation: none;
  }
}

/* Desktop type bump */
@media (min-width: 900px) {
  .wave svg {
    height: 72px;
  }
}

/* ========== VSL / book page ========== */
.page-book {
  padding-bottom: 0;
}

.page-book .mobile-cta {
  display: none !important;
}

.display-light {
  color: var(--white);
}

.vsl-hero {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0 3rem;
  text-align: center;
}

.vsl-hero-inner {
  max-width: 52rem;
}

.vsl-sub {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: #b8c9dc;
  font-size: var(--text-md);
}

.vsl-player {
  position: relative;
  margin: 0 auto 1.5rem;
  max-width: 720px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #061828;
  aspect-ratio: 16 / 9;
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.vsl-tap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.vsl-tap.is-visible,
.vsl-player:not(.is-playing-sound) .vsl-tap {
  opacity: 1;
  pointer-events: auto;
}

.vsl-player.is-playing-sound .vsl-tap {
  opacity: 0;
  pointer-events: none;
}

.vsl-tap-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--sun-orange);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  position: relative;
}

.vsl-tap-icon::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent var(--white);
}

.vsl-tap-label {
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  background: rgba(6, 24, 40, 0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.vsl-video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  margin: 0;
  background: linear-gradient(160deg, #0d3b66, #1b2a4a);
  color: #d6e4f0;
  font-weight: 600;
}

.vsl-pitch {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: #d6e4f0;
}

.vsl-hero .btn-primary:hover {
  color: var(--color-action-text);
}

/* Field proof stats */
.field-proof {
  text-align: center;
  background: var(--foam);
}

.proof-stats {
  list-style: none;
  margin: 1.25rem auto 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 14rem));
  justify-content: center;
  justify-items: center;
  gap: 1.5rem 3rem;
  max-width: 36rem;
  text-align: center;
}

.proof-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  width: 100%;
}

.proof-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--sun-orange);
  text-align: center;
  width: 100%;
}

.proof-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  max-width: 12rem;
  margin: 0 auto;
}

/* About page still has 3 stats — wrap the third centered */
.proof-stats:has(li:nth-child(3)) {
  grid-template-columns: repeat(3, minmax(0, 12rem));
  max-width: 42rem;
}

@media (max-width: 639px) {
  .proof-stats,
  .proof-stats:has(li:nth-child(3)) {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.proof-note {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--navy);
  font-weight: 600;
}

/* Rapport */
.rapport {
  background: #f0f2f4;
  text-align: center;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  text-align: left;
  margin: 0 0 1.25rem;
  color: var(--navy);
  text-transform: none;
}

.lede-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.review-stack {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  perspective: 800px;
}

@media (min-width: 800px) {
  .review-stack {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1.25rem;
  }
}

.review-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.15rem 1.2rem 1rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(13, 59, 102, 0.08);
  border: 1px solid rgba(13, 59, 102, 0.06);
}

@media (min-width: 800px) {
  .review-card--tilt-a,
  .review-card--tilt-b,
  .review-card--tilt-c {
    transform: none;
  }
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.review-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--deep-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.review-avatar--teal {
  background: var(--teal);
}
.review-avatar--gold {
  background: var(--sun-orange);
}

.review-name {
  margin: 0;
  font-weight: 700;
  font-size: var(--text-sm);
}

.review-stars {
  margin: 0;
  color: var(--sun-gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.review-body {
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.review-body mark {
  background: #ffe566;
  color: var(--navy);
  padding: 0 0.15em;
}

.review-draft {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sunset);
}

.disclaimer-sm {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.install-proof {
  text-align: left;
  margin-bottom: 2rem;
}

/* ── Install photo album (focus + side peeks) ── */
.album {
  position: relative;
  margin-top: 1.25rem;
  --album-side: clamp(4rem, 16vw, 9rem);
}

.album:focus {
  outline: none;
}

.album:focus-visible {
  outline: 2px solid var(--color-action);
  outline-offset: 4px;
  border-radius: 0.85rem;
}

.album-viewport {
  overflow: hidden;
  border-radius: 0.85rem;
  touch-action: pan-y;
  container-type: inline-size;
  container-name: album;
}

.album-track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.album-slide {
  /* Size against the viewport (cqi), not the growing track */
  flex: 0 0 calc(100cqi - (var(--album-side) * 2) - 1.7rem);
  width: calc(100cqi - (var(--album-side) * 2) - 1.7rem);
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #d5dbe3;
  opacity: 0.45;
  transform: scale(0.88);
  transition: opacity 0.45s ease, transform 0.45s ease;
  cursor: pointer;
}

.album-slide.is-active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
  box-shadow: 0 12px 28px rgba(13, 59, 102, 0.18);
}

.album-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.album-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  font-size: 1.85rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 59, 102, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.album-arrow:hover,
.album-arrow:focus-visible {
  background: #fff;
  outline: 2px solid var(--color-action);
  outline-offset: 2px;
}

.album-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.album-prev {
  left: max(0.35rem, calc(var(--album-side) - 0.35rem));
}

.album-next {
  right: max(0.35rem, calc(var(--album-side) - 0.35rem));
}

.album-caption {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  min-height: 1.4em;
}

.album-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.album-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(13, 59, 102, 0.28);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.album-dot[aria-selected="true"] {
  background: var(--navy);
  transform: scale(1.35);
}

.album-dot:focus-visible {
  outline: 2px solid var(--color-action);
  outline-offset: 2px;
}

@media (max-width: 639px) {
  .album {
    --album-side: 2.75rem;
  }

  .album-arrow {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.55rem;
  }

  .album-prev {
    left: 0.2rem;
  }

  .album-next {
    right: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .album-track,
  .album-slide {
    transition: none;
  }
}

/* Compact album (Recent installs) — full-width section, normal photo size, multi-peek */
.album--compact {
  width: 100%;
  max-width: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.album--compact .album-viewport {
  border-radius: 0;
}

.album--compact .album-slide {
  flex: 0 0 min(70vw, 18.5rem);
  width: min(70vw, 18.5rem);
  border-radius: 0.65rem;
  background: #e8edf2;
  overflow: hidden;
}

.album--compact .album-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

.album--compact .album-arrow {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.45rem;
  top: 50%;
}

.album--compact .album-caption,
.album--compact .album-dots {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.album--compact .album-caption {
  font-size: 0.875rem;
}

/* What you get columns */
.get-grid {
  text-align: center;
}

.get-columns {
  display: grid;
  gap: 1.75rem;
  text-align: left;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 800px) {
  .get-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.get-columns h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.get-columns p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* Book form */
.book-form-section {
  background: #eef6fb;
}

.book-form-card {
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.12);
  border-radius: 1rem;
  padding: 1.75rem 1.35rem;
  text-align: left;
}

.form-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #8aa0b5;
  margin: 0 0 1rem;
}

.form-steps .is-active {
  color: var(--sun-orange);
}

.form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  text-align: center;
  margin: 0 0 0.4rem;
  color: var(--navy);
}

.form-lede {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  font-size: var(--text-sm);
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.req {
  color: var(--sunset);
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.book-form .check {
  margin-bottom: 0.85rem;
}

.book-form .check + .check {
  margin-bottom: 1.25rem;
}

/* Pro FAQ — Hormozi-style dark bars */
.faq-pro {
  background: var(--foam);
}

.faq-pro-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-pro-list details {
  border-radius: 0.65rem;
  overflow: hidden;
  border: none;
}

.faq-pro-list summary {
  list-style: none;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding: 1rem 2.5rem 1rem 1rem;
  cursor: pointer;
  position: relative;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.faq-pro-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
}

.faq-pro-list details[open] summary::after {
  content: "×";
}

.faq-pro-body {
  background: #f3f5f7;
  padding: 1.15rem 1.25rem 1.25rem;
  text-align: left;
}

.faq-pro-body p {
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
}

.faq-pro-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .vsl-player {
    aspect-ratio: 16 / 9;
  }
}

/* How it works subhead */
.how-sub {
  margin-top: -0.5rem;
}

.faq-more {
  margin-top: 1.75rem;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.faq-more a {
  color: var(--navy);
  font-weight: 700;
}

.opt {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.85em;
}

textarea {
  width: 100%;
  min-height: 6.5rem;
  resize: vertical;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(13, 59, 102, 0.2);
  background: #fff;
  color: var(--color-text);
}

/* Brand marquee */
.brand-marquee-section {
  padding: 1.75rem 0 1.25rem;
  background: #eef1f4;
  overflow: hidden;
}

.brand-marquee-label {
  margin: 0 0 1rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--navy);
}

.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 42s linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-list {
  display: flex;
  gap: 2.75rem;
  list-style: none;
  margin: 0;
  padding: 0 2.75rem;
  align-items: center;
}

.brand-marquee-list li {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: rgba(13, 59, 102, 0.45);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 0.75rem;
  }

  .brand-marquee-list[aria-hidden="true"] {
    display: none;
  }
}

/* Before/after collage */
.collage-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 800px) {
  .collage-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 11rem;
  }

  .collage-tile--wide {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.collage-tile {
  margin: 0;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #d5dbe3;
  min-height: 9rem;
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.collage-tile--wide img {
  aspect-ratio: auto;
  min-height: 100%;
}

.collage-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(transparent, rgba(13, 59, 102, 0.75));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Review carousel */
.review-carousel {
  position: relative;
  margin: 1.25rem 0 1rem;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-carousel .review-card {
  flex: 0 0 min(100%, 22rem);
  transform: none !important;
}

.review-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 59, 102, 0.18);
}

.review-prev { left: 0.15rem; }
.review-next { right: 0.15rem; }

.review-arrow:hover,
.review-arrow:focus-visible {
  outline: 2px solid var(--color-action);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .review-track { transition: none; }
}

/* Contact cards */
.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-radius: 0.85rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(13, 59, 102, 0.06);
  text-align: left;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.55rem;
  background: rgba(232, 145, 15, 0.15);
  color: var(--color-action);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.contact-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}

.contact-primary {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.contact-primary a {
  color: inherit;
  text-decoration: none;
}

.contact-primary a:hover {
  color: var(--color-action);
}

.contact-desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* Services */
.service-blocks {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-radius: 0.85rem;
  padding: 1.5rem 1.4rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(13, 59, 102, 0.05);
}

.service-card > p {
  text-align: center;
}

.service-card-title {
  font-size: clamp(1.5rem, 3vw, 1.9rem) !important;
  margin-bottom: 0.75rem;
}
