/* /ansarada landing page (CrossCourtAI × Ansarada). Standalone: index.html and signin.html use styles.css. */

:root {
  --night: #0a0e16;
  --bar: #0e1522;
  --paper: #f6f2eb;
  --panel: #12192a;
  --blue: #2071f5;
  --ink: #111111;
  --soft: #4d4d4d;
  --faint: #6f6b64;
  --rule: rgba(17, 17, 17, 0.12);
  --tag: #7d786f;
  --gutter: 80px;
  --section: 170px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --app: "Geist", ui-sans-serif, system-ui, sans-serif;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

[id] { scroll-margin-top: 24px; }

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

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.025em; }

.h2 { margin: 0; font-size: clamp(36px, 4.2vw, 60px); line-height: 1.02; }
.h2-56 { font-size: clamp(36px, 3.9vw, 56px); }
.h2-52 { font-size: clamp(36px, 3.6vw, 52px); }

.lead { margin: 0; font-size: 18px; line-height: 1.6; color: var(--soft); }

.tag {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tag);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-light { background: #fff; color: #111111; }
.btn-light:hover { background: #e9e9ec; }
.btn-small { height: 40px; font-size: 14px; }

.panel { border-radius: 6px; overflow: hidden; }
.texture { background: var(--panel) url("/ansarada-assets/harbour-texture.webp") center / cover no-repeat; }

.logo-grey { filter: brightness(0); opacity: 0.5; width: auto; }
.top .logo-grey { filter: brightness(0) invert(1); opacity: 0.55; }
.logo-white { filter: brightness(0) invert(1); opacity: 0.9; }

.section { padding-top: var(--section); }

.split { display: flex; justify-content: space-between; align-items: flex-start; gap: 64px; }
.split-end { align-items: flex-end; }

/* ---------- Dark top: announcement, header, hero, video, proof ---------- */

.top {
  --ink: #ffffff;
  --soft: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.52);
  --rule: rgba(255, 255, 255, 0.13);
  --tag: rgba(255, 255, 255, 0.52);
  background: var(--night);
  color: var(--ink);
}

.announce {
  min-height: 44px;
  padding: 8px 20px;
  background: var(--bar);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 14px;
}
.announce p { margin: 0; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 4px 10px; }
.announce-for, .announce-text { opacity: 0.75; }
.announce-logo { height: 14px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.announce a { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

.header-shell { height: 80px; display: flex; align-items: center; gap: 36px; }
.brand { margin-right: auto; }
.brand img { height: 30px; width: auto; }
.main-nav { display: flex; gap: 36px; }
.main-nav a { font-size: 15px; font-weight: 500; }
.main-nav a:hover { color: rgba(255, 255, 255, 0.72); }

.hero { padding-top: 72px; display: flex; flex-direction: column; gap: 40px; }
.lockup { display: flex; align-items: center; gap: 22px; }
.lockup-ccai { height: 44px; width: auto; }
.lockup-x { font-size: 30px; font-weight: 300; line-height: 1; color: var(--faint); }
.lockup-ansarada { height: 21px; width: auto; filter: brightness(0) invert(1); }
.hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 64px; }
.hero h1 { margin: 0; flex: 1 1 auto; max-width: 780px; font-size: clamp(44px, 5.85vw, 84px); line-height: 0.98; }
.hero-side { flex: 0 1 430px; display: flex; flex-direction: column; gap: 24px; padding-bottom: 8px; }
.hero-lead { font-size: 19px; }
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 22px; }
.hero-actions .btn { padding: 0 18px; }
.watch-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.watch-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch-link:hover .watch-icon { border-color: rgba(255, 255, 255, 0.6); }
.hero-check { margin: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 14px; color: var(--soft); }
.hero-check .dot { opacity: 0.5; }

.video-section { padding-top: 56px; }
.trust-line { margin: 0; padding-top: 56px; text-align: center; font-size: 18px; color: var(--soft); }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09);
}
.video-poster, .video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame video { background: #000; }
.video-play {
  position: absolute;
  left: 50%;
  top: 41.1%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 144px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}
.video-caption > div { display: flex; flex-direction: column; gap: 4px; }
.video-tag { font-size: 12px; letter-spacing: 0.09em; font-weight: 600; text-transform: uppercase; opacity: 0.62; }
.video-title { font-size: 18px; font-weight: 600; }
.video-who { font-size: 14px; opacity: 0.7; white-space: nowrap; }
.video-frame.is-playing .video-play,
.video-frame.is-playing .video-caption,
.video-frame.is-playing .video-poster { display: none; }

.proof { padding-top: 56px; padding-bottom: 96px; display: flex; flex-direction: column; gap: 56px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.stat {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.stat-num { font-size: clamp(44px, 4.45vw, 64px); line-height: 1; }
.stat-label { font-size: 16px; line-height: 1.5; color: var(--soft); max-width: 300px; }
.logos { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px 44px; }
.logo-group { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; }
.logo-label { font-size: 14px; color: var(--faint); }
.logo-row { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 44px; }
.logo-startmate { height: 20px; }
/* The SVG has empty space around the text; the margins trim it, as in the design. */
.logo-sydney-angels { height: 26px; margin: -5.2px -38.7px -2.3px 0; }
.logo-venturecrowd { height: 24px; }
.logo-ansarada { height: 17.5px; }
.logo-microsoft { height: 23px; }

/* ---------- Light middle ---------- */

.light { background: var(--paper); color: var(--ink); }

.outputs-head { padding-top: 150px; display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.outputs { padding-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.output { margin: 0; display: flex; flex-direction: column; }
.output img { width: 100%; height: auto; }
.output h3 { margin: 22px 0 8px; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.output p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--soft); }

.problem h2 { max-width: 640px; }
.problem-copy { max-width: 470px; display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.lead-strong { color: var(--ink); font-weight: 600; }
.stats-light { padding-top: 64px; }
.stats-light .stat { gap: 12px; }
.stat-big { font-size: clamp(44px, 5vw, 72px); }
.aside { margin-top: 0; margin-bottom: 0; padding-top: 36px; font-size: 16px; color: var(--faint); }

#how h2 { max-width: 620px; }
.how-lead { max-width: 430px; padding-bottom: 6px; }
.how-grid { padding-top: 64px; display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 80px; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--rule); }
.step { border-top: 1px solid var(--rule); padding: 24px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.step h3 { margin: 0; font-size: 25px; font-weight: 600; letter-spacing: -0.02em; }
.step p { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--soft); }
.how-shot { width: 100%; height: auto; }

.email-grid { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 80px; align-items: center; }
.email-copy { display: flex; flex-direction: column; gap: 22px; }
.email-panel { min-height: 540px; padding: 70px 110px 50px; display: flex; align-items: center; justify-content: center; }
.email {
  width: 100%;
  max-width: 560px;
  min-height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--app);
  color: #18181b;
}
.email-subject {
  height: 52px;
  flex-shrink: 0;
  padding: 0 20px;
  border-bottom: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
}
.email-msg { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; border-bottom: 1px solid #f4f4f5; }
.email-msg p { margin: 0; font-size: 13px; line-height: 1.55; }
.email-reply { background: #fcfcfc; flex-grow: 1; border-bottom: 0; }
.email-from { display: flex; align-items: center; gap: 10px; }
.email-from > div { display: flex; flex-direction: column; gap: 1px; }
.email-avatar {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #52525b;
}
.email-avatar-dark { background: #18181b; }
.email-name { font-size: 12.5px; font-weight: 600; }
.email-to { font-size: 11px; color: #71717a; }
.email-files { display: flex; gap: 8px; flex-wrap: wrap; }
.email-files span {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11.5px;
  background: #fff;
  overflow-wrap: anywhere;
}
.email-files img { width: 14px; height: 14px; flex-shrink: 0; }


.offer {
  min-height: 560px;
  padding: 62px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 64px;
  align-items: center;
  color: #fff;
}
.offer-copy { display: flex; flex-direction: column; gap: 22px; }
.tag-on-dark { color: rgba(255, 255, 255, 0.62); }
.offer-copy p { margin: 0; max-width: 520px; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.78); }
.offer-copy .btn { align-self: flex-start; margin-top: 6px; }
.offer-card {
  background: rgba(10, 14, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 40px 36px;
}
.offer-count { display: flex; align-items: center; gap: 18px; }
.offer-count .serif { font-size: 112px; line-height: 0.9; }
.offer-count span:last-child { font-size: 20px; font-weight: 600; line-height: 1.3; }
.offer-list { list-style: none; margin: 24px 0 0; padding: 0; }
.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15.5px;
}
.offer-list svg { flex-shrink: 0; }
.offer-terms { margin: 16px 0 0; font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.62); }

/* ---------- Security (dark) ---------- */

.security { margin-top: var(--section); padding: 150px 0; background: var(--night); color: #fff; }
.security-grid { display: grid; grid-template-columns: 460px minmax(0, 1fr); gap: 80px; align-items: start; }
.security-copy { display: flex; flex-direction: column; gap: 22px; }
.security-copy p { margin: 0; font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }
.security-list { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.security-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
}
.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-list h3 { margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.security-list p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.62); }

/* ---------- FAQ and booking ---------- */

.faq-grid { padding-top: 150px; display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 80px; align-items: start; }
.faq { border-bottom: 1px solid var(--rule); }
.faq details { border-top: 1px solid var(--rule); padding: 24px 0; }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 10.2px;
  height: 1.6px;
  border-radius: 1px;
  background: var(--faint);
}
.faq-icon::after { transform: rotate(90deg); }
.faq details[open] .faq-icon::before { background: var(--ink); }
.faq details[open] .faq-icon::after { display: none; }
.faq details p { margin: 12px 0 0; max-width: 620px; font-size: 16.5px; line-height: 1.65; color: var(--soft); }

.book-grid {
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 80px;
  align-items: start;
}
.book-copy { padding-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.book-copy .lead { max-width: 480px; }
.agenda { margin-top: 12px; max-width: 480px; display: flex; flex-direction: column; }
.agenda .tag { padding-bottom: 8px; }
.agenda ol { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--rule); }
.agenda li { display: flex; gap: 16px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--rule); font-size: 17px; }
.agenda li span { font-size: 14px; font-weight: 600; color: var(--faint); }
.book-note { margin: 4px 0 0; font-size: 15px; line-height: 1.5; color: var(--faint); }
.book-note a, .cal-direct a { text-decoration: underline; text-underline-offset: 2px; }

.cal {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  overflow: hidden;
  color: #18181b;
}
.cal-head { padding: 24px 28px; border-bottom: 1px solid #e4e4e7; display: flex; align-items: center; gap: 14px; }
.cal-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; flex-shrink: 0; }
.cal-title { display: flex; flex-direction: column; gap: 3px; flex-grow: 1; }
.cal-title span { font-size: 13px; color: #71717a; }
.cal-title strong { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.cal-meta { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: #71717a; }
.cal-meta span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.cal-frame { width: 100%; height: 700px; border: 0; }
.cal-done { padding: 64px 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.cal-done[hidden] { display: none; }
.cal-done-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.cal-done strong { font-size: 22px; }
.cal-done p { margin: 0; max-width: 360px; font-size: 15px; line-height: 1.6; color: #52525b; }
.cal-direct { margin: 14px 0 0; font-size: 14px; color: var(--faint); text-align: center; }

.site-footer { background: var(--night); color: rgba(255, 255, 255, 0.6); border-top: 1px solid rgba(255, 255, 255, 0.07); }
.footer-shell { padding: 56px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px; font-size: 14px; }
.footer-shell > img { height: 26px; width: auto; }
.footer-tagline { margin-right: auto; }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 28px; }
.footer-links a:hover { color: #fff; }

/* ---------- Client quotes (same three as the homepage) ---------- */

.quote-shell { display: grid; grid-template-columns: 520px minmax(0, 1fr); gap: 88px; align-items: center; }
.quote-logo-panel { position: relative; aspect-ratio: 520 / 440; }
.quote-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 64px;
  max-width: 70%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: opacity 250ms ease;
}
.quote-logo.is-active { opacity: 0.9; }
.quote-main { display: flex; flex-direction: column; gap: 30px; }
/* Every quote sits in the same grid cell, so the section keeps the height of the longest one. */
.quote-slides { display: grid; }
.quote-slide {
  grid-area: 1 / 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms;
}
.quote-slide.is-active { opacity: 1; visibility: visible; }
.quote-slide blockquote { margin: 0; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.25; letter-spacing: -0.02em; }
.quote-slide figcaption { display: flex; flex-direction: column; gap: 4px; }
.quote-name { font-size: 16px; font-weight: 600; }
.quote-role { font-size: 15px; color: var(--soft); }
.quote-picks { display: flex; flex-wrap: wrap; gap: 28px; border-top: 1px solid var(--rule); padding-top: 22px; }
.quote-pick {
  margin: 0;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  font: inherit;
  font-size: 15px;
  color: var(--faint);
  cursor: pointer;
}
.quote-pick:hover { color: var(--ink); }
.quote-pick.is-active { color: var(--ink); font-weight: 600; border-bottom-color: var(--ink); }

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

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  :root { --gutter: 40px; --section: 120px; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-side { flex-basis: auto; max-width: 560px; }
  .split, .split-end { flex-direction: column; align-items: flex-start; gap: 24px; }
  .problem-copy, .how-lead { max-width: 640px; }
  .how-grid, .email-grid, .quote-shell, .security-grid, .faq-grid, .book-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .quote-logo-panel { aspect-ratio: auto; height: 280px; }
  .how-grid { padding-top: 48px; }
  .steps { max-width: 640px; }
  .offer { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 56px; }
  .offer-card { max-width: 480px; }
  .security { padding: 110px 0; }
  .faq-grid { padding-top: 110px; }
  .book-grid { padding-bottom: 110px; }
  .book-copy { padding-top: 0; }
  .book-side { max-width: 560px; width: 100%; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .outputs { grid-template-columns: minmax(0, 1fr); gap: 48px; max-width: 560px; }
  .outputs-head { padding-top: 110px; }
  .email-panel { min-height: 0; padding: 48px 40px; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --section: 88px; }
  .announce { font-size: 13px; }
  .header-shell { height: 64px; gap: 16px; }
  .brand img { height: 24px; }
  .hero { padding-top: 40px; gap: 28px; }
  .lockup { gap: 14px; }
  .lockup-ccai { height: 30px; }
  .lockup-x { font-size: 22px; }
  .lockup-ansarada { height: 15px; }
  .hero-lead { font-size: 17px; }
  .video-section { padding-top: 40px; }
  .video-frame { overflow: visible; aspect-ratio: auto; background: none; box-shadow: none; }
  .video-poster, .video-frame video { height: auto; aspect-ratio: 16 / 9; border-radius: 6px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09); }
  .video-play { top: 23%; width: 56px; height: 56px; }
  .video-play svg { width: 22px; height: 22px; }
  .video-caption { position: static; height: auto; padding: 16px 0 0; align-items: flex-start; }
  .video-title { font-size: 16px; }
  .video-who { font-size: 13px; }
  .trust-line { padding-top: 32px; text-align: left; font-size: 16px; }
  .proof { padding-top: 40px; padding-bottom: 72px; gap: 48px; }
  .stats { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .stat { padding-top: 18px; }
  .logos, .logo-group { flex-direction: column; align-items: flex-start; }
  .logo-row { gap: 16px 32px; }
  .outputs-head { padding-top: 88px; align-items: flex-start; text-align: left; }
  .outputs { padding-top: 40px; }
  .stats-light { padding-top: 48px; }
  .step h3 { font-size: 22px; }
  .email-panel { padding: 24px 14px; }
  .quote-logo-panel { height: 200px; }
  .quote-logo { height: 48px; }
  .quote-picks { gap: 12px 22px; }
  .email { min-height: 0; }
  .offer { padding: 36px 24px; }
  .offer-card { padding: 28px 24px; }
  .offer-count .serif { font-size: 88px; }
  .security { padding: 88px 0; }
  .security-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .faq-grid { padding-top: 88px; }
  .faq summary { font-size: 18px; }
  .book-grid { padding-bottom: 88px; }
  .cal-head { padding: 18px 20px; flex-wrap: wrap; }
  .cal-meta { flex-direction: row; gap: 16px; width: 100%; padding-left: 62px; }
  .cal-frame { height: 760px; }
  .footer-shell { flex-direction: column; align-items: flex-start; padding: 44px 0; }
  .footer-tagline { margin-right: 0; }
}
