:root {
  --bg: #07110e;
  --surface: #0d1a16;
  --surface-soft: #12231e;
  --surface-dark: #091411;
  --surface-dark-alt: #10201b;
  --text: #e8f5ef;
  --text-soft: #9db8b0;
  --text-inverse: #eff8f4;
  --line: rgba(194, 234, 215, 0.1);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.22);
  --green-1: #1fb36d;
  --green-2: #26bf77;
  --green-3: #8ae8b5;
  --accent: #dff4ea;
  --gradient-main: linear-gradient(135deg, #13985b 0%, #29bf74 45%, #7ae1aa 100%);
  --gradient-dark: linear-gradient(145deg, #07110e 0%, #0c1915 45%, #123126 100%);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 40px));
  --nav-height: 88px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(41, 191, 116, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(20, 92, 60, 0.28), transparent 22%),
    linear-gradient(180deg, #07110e 0%, var(--bg) 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(122, 225, 170, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(14, 28, 23, 0.96), rgba(10, 21, 18, 0.98));
}

.section-dark {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(123, 224, 168, 0.11), transparent 24%),
    var(--gradient-dark);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading--light {
  color: var(--text-inverse);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green-2);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading--light .section-kicker {
  color: var(--green-3);
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow: 0 0 0 7px rgba(31, 179, 109, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", "Aptos", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.section-heading--light p,
.section-dark p {
  color: rgba(239, 248, 244, 0.76);
}

.site-header {
  /* Frosted sticky header for a premium app-site feel. */
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 14, 0.72);
  border-bottom: 1px solid rgba(194, 234, 215, 0.06);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(7, 17, 14, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  border-color: rgba(194, 234, 215, 0.1);
}

.nav-wrap {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(194, 234, 215, 0.12);
  box-shadow: var(--shadow-soft);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1;
}

.brand-text small {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color var(--transition), transform var(--transition);
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 0.88rem;
  color: rgba(232, 245, 239, 0.72);
}

.store-btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.store-btn {
  background: rgba(223, 244, 234, 0.09);
  color: var(--text-inverse);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  border: 1px solid rgba(194, 234, 215, 0.12);
}

.store-btn--light {
  background: var(--gradient-main);
  color: #04160d;
  box-shadow: none;
}

.button:hover,
.store-btn:hover,
.button:focus-visible,
.store-btn:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gradient-main);
  color: #04160d;
  box-shadow: 0 16px 35px rgba(31, 179, 109, 0.26);
}

.button-secondary {
  color: var(--text);
  background: rgba(223, 244, 234, 0.06);
  border: 1px solid rgba(194, 234, 215, 0.12);
}

.button-full {
  width: 100%;
}

.text-link {
  position: relative;
  font-weight: 700;
  color: var(--green-3);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(223, 244, 234, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 4px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: 56px;
}

.hero-grid,
.why-grid,
.faq-grid {
  display: grid;
  gap: 42px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-text {
  margin-top: 24px;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-note {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 0.96rem;
  color: rgba(232, 245, 239, 0.86);
}

.hero-actions {
  margin-top: 30px;
}

.hero-secondary {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  font-size: 0.96rem;
}

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.info-card,
.feature-card,
.preview-panel,
.trust-card,
.faq-item,
.cta-panel,
.compare-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(18, 35, 30, 0.82);
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
}

.step-no {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(138, 232, 181, 0.9);
  font-family: "Bahnschrift", "Arial Narrow", "Aptos", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-cards {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(123, 224, 168, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 33, 28, 0.94), rgba(10, 20, 17, 0.98));
  border: 1px solid rgba(194, 234, 215, 0.1);
  box-shadow: var(--shadow);
}

.hero-panel-copy h3 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.hero-panel-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green-3);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-summary-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.hero-summary-list article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(194, 234, 215, 0.1);
}

.hero-summary-list span {
  color: var(--text-soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-summary-list strong {
  max-width: 18ch;
  text-align: right;
  color: var(--text-inverse);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.orb-one {
  width: 280px;
  height: 280px;
  top: 0;
  right: 10%;
  background: rgba(123, 224, 168, 0.22);
}

.orb-two {
  width: 180px;
  height: 180px;
  bottom: 18%;
  left: 6%;
  background: rgba(31, 179, 109, 0.18);
}

.floating-card {
  position: absolute;
  width: min(240px, 45vw);
  padding: 20px;
  border-radius: 24px;
  background: rgba(15, 29, 24, 0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(194, 234, 215, 0.12);
  box-shadow: var(--shadow);
  animation: floatCard 7s ease-in-out infinite;
}

.floating-card--top {
  top: 7%;
  right: 1%;
}

.floating-card--bottom {
  left: 0;
  bottom: 10%;
  animation-delay: -2.5s;
}

.floating-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.phone-mockup {
  /* CSS-only phone shell so the page stays fully self-contained. */
  width: min(360px, 88vw);
  padding: 14px;
  border-radius: 42px;
  background:
    linear-gradient(155deg, rgba(28, 45, 39, 0.94), rgba(13, 25, 21, 0.96));
  border: 1px solid rgba(194, 234, 215, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.34);
  position: relative;
}

.phone-mockup--hero {
  transform: rotate(-6deg);
}

.phone-mockup--mini {
  width: min(270px, 72vw);
  margin: 0 auto 24px;
  transform: none;
}

.phone-top {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.phone-top span {
  width: 34%;
  height: 22px;
  border-radius: 999px;
  background: rgba(225, 245, 236, 0.12);
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(123, 224, 168, 0.1), transparent 28%),
    linear-gradient(180deg, #11211c 0%, #0b1714 100%);
  padding: 22px;
  min-height: 610px;
}

.phone-mockup--mini .phone-screen {
  min-height: 470px;
}

.screen-header,
.mini-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.screen-header p,
.mini-header p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.screen-header h3,
.mini-header strong {
  margin-top: 6px;
  font-size: 1.35rem;
}

.screen-badge,
.result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(38, 191, 119, 0.14);
  color: var(--green-3);
  font-weight: 800;
}

.scan-card,
.mini-card,
.estimate-strip,
.screen-list article,
.mini-list article,
.quote-breakdown article,
.booking-summary,
.booking-calendar {
  background: rgba(18, 33, 28, 0.96);
  border: 1px solid rgba(194, 234, 215, 0.08);
  box-shadow: var(--shadow-soft);
}

.scan-card {
  margin-top: 22px;
  padding: 16px;
  border-radius: 24px;
}

.scan-preview {
  min-height: 210px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(179, 239, 204, 0.08), rgba(8, 17, 14, 0.55)),
    linear-gradient(145deg, #162923, #0f1916);
  position: relative;
  overflow: hidden;
}

.junk-shape {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(160deg, #365247, #5d7a70);
}

.junk-chair {
  width: 88px;
  height: 100px;
  left: 18%;
  bottom: 18px;
}

.junk-box {
  width: 100px;
  height: 76px;
  right: 12%;
  bottom: 20px;
  background: linear-gradient(160deg, #7b6e53, #a4926f);
}

.junk-bag {
  width: 70px;
  height: 70px;
  left: 48%;
  bottom: 36px;
  border-radius: 50%;
  background: linear-gradient(160deg, #2a6c50, #39a171);
}

.scan-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.scan-meta strong,
.estimate-strip strong,
.screen-list strong,
.mini-list strong,
.quote-breakdown strong,
.booking-summary strong,
.booking-calendar strong {
  color: var(--text-inverse);
}

.scan-meta span {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.estimate-strip {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.screen-list,
.mini-list,
.quote-breakdown {
  margin: 18px 0 22px;
  display: grid;
  gap: 12px;
}

.screen-list article,
.mini-list article,
.quote-breakdown article {
  padding: 15px 16px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.mini-card {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
}

.mini-card--gradient {
  background: var(--gradient-main);
  color: #04160d;
}

.mini-card--gradient span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.mini-card--gradient strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.camera-frame {
  min-height: 310px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 11, 9, 0.28), rgba(4, 11, 9, 0.12)),
    linear-gradient(145deg, #1a2e27, #101b18);
}

.camera-target {
  position: absolute;
  inset: 17%;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 28px;
}

.camera-junk,
.camera-junk--small {
  position: absolute;
  background: linear-gradient(160deg, #576d63, #2b4037);
  border-radius: 20px;
}

.camera-junk {
  width: 140px;
  height: 94px;
  left: 22%;
  bottom: 24%;
}

.camera-junk--small {
  width: 74px;
  height: 74px;
  right: 20%;
  bottom: 18%;
  border-radius: 50%;
}

.camera-footer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(18, 33, 28, 0.96);
  border: 1px solid rgba(194, 234, 215, 0.08);
}

.result-figure {
  margin: 18px 0 8px;
  font-family: "Bahnschrift", "Arial Narrow", "Aptos", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}

.result-note {
  font-size: 0.95rem;
}

.booking-slots {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.booking-slots article {
  padding: 14px 0;
  text-align: center;
  border-radius: 18px;
  background: rgba(18, 33, 28, 0.92);
  border: 1px solid rgba(194, 234, 215, 0.08);
  font-weight: 700;
}

.booking-slots .is-active {
  background: var(--gradient-main);
  color: #04160d;
}

.steps-grid,
.features-grid,
.preview-grid,
.trust-grid,
.audience-grid {
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-card--soft {
  background:
    radial-gradient(circle at top right, rgba(123, 224, 168, 0.08), transparent 28%),
    rgba(18, 35, 30, 0.9);
}

.preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-story {
  max-width: 1100px;
}

.product-lead {
  max-width: 760px;
  margin-bottom: 46px;
}

.product-intro {
  font-family: "Bahnschrift", "Arial Narrow", "Aptos", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: rgba(239, 248, 244, 0.9);
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}

.product-point {
  padding: 26px 0 0;
  border-top: 1px solid rgba(239, 248, 244, 0.12);
}

.product-point h3 {
  margin-bottom: 10px;
  color: var(--text-inverse);
}

.product-point p {
  max-width: 46ch;
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 26px;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.trust-card,
.preview-panel,
.audience-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(15, 28, 24, 0.88);
}

.info-card:nth-child(2),
.feature-card:nth-child(3),
.trust-card:nth-child(2) {
  transform: translateY(18px);
}

.info-card:nth-child(4),
.feature-card:nth-child(6),
.trust-card:nth-child(4) {
  transform: translateY(-12px);
}

.preview-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(239, 248, 244, 0.12);
}

.preview-panel h3,
.preview-panel p {
  color: var(--text-inverse);
}

.audience-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--text-inverse);
}

.icon-box {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(38, 191, 119, 0.12);
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: var(--green-2);
}

.why-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.why-points {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.why-points article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(194, 234, 215, 0.1);
}

.why-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.compare-card {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(123, 224, 168, 0.15), transparent 28%),
    #0d1915;
  color: var(--text-inverse);
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.compare-header {
  padding-bottom: 18px;
  margin-bottom: 12px;
  color: rgba(239, 248, 244, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.compare-row {
  padding: 18px 0;
  border-top: 1px solid rgba(239, 248, 244, 0.1);
}

.compare-row strong {
  color: var(--green-3);
}

.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge-row span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(38, 191, 119, 0.12);
  color: var(--green-3);
  font-weight: 800;
}

.compliance-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(18, 33, 28, 0.9);
  border: 1px solid rgba(194, 234, 215, 0.08);
}

.compliance-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-inverse);
}

.compliance-note span {
  color: var(--text-soft);
  line-height: 1.6;
}

.cta-section {
  padding-top: 40px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(123, 224, 168, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(18, 34, 29, 0.98) 0%, rgba(12, 25, 21, 0.98) 100%);
}

.cta-panel h2 {
  max-width: 18ch;
}

.faq-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(15, 28, 24, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p {
  padding: 0 24px 24px;
}

.site-footer {
  padding: 40px 0 26px;
  background: #050d0b;
  color: rgba(239, 248, 244, 0.76);
}

.legal-page {
  min-height: calc(100vh - 88px);
}

.legal-container {
  max-width: 860px;
}

.legal-updated {
  margin-top: 12px;
  color: rgba(232, 245, 239, 0.72);
}

.legal-section {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(194, 234, 215, 0.1);
}

.legal-section h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(239, 248, 244, 0.1);
}

.brand--footer .brand-text small,
.site-footer p,
.site-footer a {
  color: rgba(239, 248, 244, 0.68);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h3 {
  margin-bottom: 4px;
  color: var(--text-inverse);
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 20px;
  align-items: center;
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  font-size: 0.78rem;
  color: rgba(239, 248, 244, 0.46);
}

.reveal {
  /* Elements animate in once as they enter the viewport. */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .features-grid,
  .preview-grid,
  .product-columns,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card--wide {
    grid-column: span 1;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    min-height: 660px;
  }
}

@media (max-width: 920px) {
  :root {
    --nav-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(10, 20, 17, 0.98);
    border: 1px solid rgba(194, 234, 215, 0.1);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-actions {
    flex-direction: column;
  }

  .nav-actions .store-btn {
    width: 100%;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-cards {
    min-height: auto;
    padding: 30px 0;
  }

  .hero-panel {
    padding: 30px;
  }

  .phone-mockup--hero {
    transform: none;
  }

  .floating-card {
    display: none;
  }

  .cta-panel,
  .footer-grid,
  .footer-bottom,
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-card:nth-child(2),
  .feature-card:nth-child(3),
  .trust-card:nth-child(2),
  .info-card:nth-child(4),
  .feature-card:nth-child(6),
  .trust-card:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .steps-grid,
  .features-grid,
  .preview-grid,
  .trust-grid,
  .product-columns,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 26px;
  }

  .hero-summary-list article {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-summary-list strong {
    max-width: none;
    text-align: left;
  }

  .hero-secondary {
    align-items: flex-start;
  }

  .scan-meta,
  .estimate-strip,
  .screen-list article,
  .mini-list article,
  .quote-breakdown article,
  .compare-header,
  .compare-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .compare-card,
  .cta-panel {
    padding: 28px;
  }

  .phone-screen {
    min-height: 560px;
    padding: 18px;
  }

  .phone-mockup--mini .phone-screen {
    min-height: 430px;
  }

  .booking-slots {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
