/* ==========================================================================
   Paralegal Genius — Matches paralegalgenius.com Wix layout
   Open Sans (body/headings) + PT Mono (brand)
   ========================================================================== */

:root {
  --bg-cream: #FCF5EE;
  --bg-brown: #4D2600;
  --bg-orange: #F07F29;
  --bg-gold: #FFC313;
  --text-dark: #000000;
  --text-body: #4D2600;
  --text-light: #FCF5EE;
  --text-muted: #6D462E;
  --accent: #F07F29;
  --accent-hover: #d96d1e;
  /* Accessible accent for use as text on light backgrounds (WCAG AA). The
     brand --accent fails contrast as text; reserve it for borders/fills. */
  --accent-text: #a8500c;
  --white: #FFFFFF;
  --border-color: #4D2600;

  --font-body: 'Open Sans', sans-serif;
  --font-brand: 'PT Mono', monospace;

  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ==========================================================================
   Buttons — matches Wix orange button style
   ========================================================================== */
main .btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border: 2px solid var(--accent);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
}
main .btn-primary {
  background: var(--accent);
  color: var(--white);
}
main .btn-primary:hover, main .btn-primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-body);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(240, 127, 41, 0.08);
}

/* ==========================================================================
   Header — matches Wix: logo+brand left, nav+CTA right, bottom border
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-cream);
  border-bottom: 2px solid var(--border-color);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-brand img { width: 50px; height: 50px; }
.header-brand-text { display: flex; flex-direction: column; }
.header-brand-name {
  font-family: var(--font-brand);
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-body);
}
.header-brand-tagline {
  font-family: var(--font-brand);
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-body);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a:not(.btn) {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.header-nav a:not(.btn):hover,
.header-nav a:not(.btn):focus-visible {
  color: var(--accent-text);
  border-bottom-color: var(--accent);
}

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-body);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.blog-inline-cta {
  margin: 32px 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255, 195, 19, 0.22), rgba(255, 195, 19, 0.14));
  border: 1px solid rgba(77, 38, 0, 0.14);
  border-left: 4px solid var(--accent);
}

.blog-inline-cta h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 28px;
  line-height: 1.12;
}

.blog-inline-cta p {
  margin-bottom: 0;
}

.blog-inline-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ==========================================================================
   Hero — matches Wix: H1 40px normal weight, text left, image right
   ========================================================================== */
.hero {
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text-body);
}
.hero-image img {
  width: 100%;
}

/* ==========================================================================
   Badges — matches Wix: three columns, icon + bold H3 + small body
   ========================================================================== */
.badges {
  padding: 48px 0;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.badge-icon { width: 48px; height: 48px; margin: 0 auto 12px; }
.badge-icon svg { width: 100%; height: 100%; fill: var(--accent); }
.badge h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.badge p { font-size: 14px; color: var(--text-body); line-height: 1.4; }

/* ==========================================================================
   Diagonal Section Dividers — matches Wix wave shapes
   ========================================================================== */
.diagonal-top, .diagonal-bottom {
  height: 80px;
  width: 100%;
}
.diagonal-brown.diagonal-top {
  background: linear-gradient(to bottom right, var(--bg-cream) 49.8%, var(--bg-brown) 50%);
}
.diagonal-brown.diagonal-bottom {
  background: linear-gradient(to bottom right, var(--bg-brown) 49.8%, var(--bg-cream) 50%);
}
.diagonal-orange.diagonal-top {
  background: linear-gradient(to bottom right, var(--bg-cream) 49.8%, var(--bg-orange) 50%);
}
.diagonal-orange.diagonal-bottom {
  background: linear-gradient(to bottom right, var(--bg-orange) 49.8%, var(--bg-cream) 50%);
}

/* ==========================================================================
   Revolutionizing — dark brown section, matches Wix
   ========================================================================== */
.section-dark {
  background: var(--bg-brown);
  color: var(--text-light);
  padding: 60px 0;
}
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}
.rev-content h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-light);
  margin-bottom: 24px;
}
.rev-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(252, 245, 238, 0.85);
}
.rev-content .drop-cap::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--accent-text);
}
.rev-image img {
  width: 100%;
}

/* ==========================================================================
   Product — centered heading + body, matches Wix
   ========================================================================== */
.product {
  padding: 60px 0 40px;
  text-align: center;
}
.product h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.product-intro {
  font-size: 16px;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   Feature Cards — on orange background, matches Wix two-column layout
   ========================================================================== */
.section-orange {
  background: var(--bg-orange);
  padding: 60px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card img {
  width: 100%;
  max-width: 300px;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
}
.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(252, 245, 238, 0.9);
}

/* ==========================================================================
   CTA — matches Wix: text left, handshake image right
   ========================================================================== */
.cta {
  padding: 80px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-content h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 32px;
}
.cta-image img {
  width: 100%;
}

/* ==========================================================================
   Contact — gold/yellow background, matches Wix form section
   ========================================================================== */
.contact {
  background: var(--bg-gold);
  padding: 80px 0;
  text-align: center;
}
.contact h2 {
  font-size: 56px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-body);
  margin-bottom: 40px;
}
.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

/* --- Form Styles --- */
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}
.form-group .required {
  color: var(--accent-text);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 0;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D2600' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-submit {
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  padding: 16px;
}
.cf-turnstile {
  margin-bottom: 16px;
}
.form-status {
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  min-height: 24px;
}
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Blog Index
   ========================================================================== */
.blog-index {
  padding: 60px 0 80px;
}
.blog-index h1 {
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}
.blog-series-label {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.blog-card {
  display: block;
  background: var(--white);
  border: 2px solid var(--border-color);
  padding: 28px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.blog-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.blog-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.blog-card .read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-text);
}

/* Blog Post */
.blog-post { padding: 40px 0 80px; }
.blog-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-text);
  margin-bottom: 32px;
}
.blog-back:hover { text-decoration: underline; }
.blog-post h1 {
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.blog-content {
  max-width: 760px;
  margin: 0 auto;
}
.blog-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}
.blog-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.blog-content strong {
  color: var(--text-dark);
}
.blog-content ul, .blog-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.blog-content ul li {
  margin-bottom: 8px;
  list-style: disc;
  line-height: 1.6;
}
.blog-content ol li {
  margin-bottom: 8px;
  list-style: decimal;
  line-height: 1.6;
}
.blog-series-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--border-color);
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
}
.blog-series-nav a {
  color: var(--accent-text);
  font-style: normal;
}
.blog-series-nav a:hover { text-decoration: underline; }

/* ==========================================================================
   Footer — matches Wix: large PT Mono brand, tagline, centered
   ========================================================================== */
.site-footer {
  padding: 60px 0 32px;
  text-align: center;
  border-top: 2px solid var(--border-color);
}
.footer-logo {
  width: 85px; height: 85px;
  margin: 0 auto 16px;
}
.footer-brand-name {
  font-family: var(--font-brand);
  font-size: 56px;
  color: var(--text-body);
  margin-bottom: 4px;
}
.footer-brand-name a { color: inherit; }
.footer-tagline {
  font-family: var(--font-brand);
  font-size: 24px;
  color: var(--text-body);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-text); }
.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-page { padding: 60px 0 80px; }
.legal-page h1 {
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
  text-align: center;
}
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p { font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content ul li { font-size: 16px; line-height: 1.6; margin-bottom: 8px; list-style: disc; }
.legal-content .contact-info { margin-top: 24px; line-height: 1.8; }

/* ==========================================================================
   Homepage Refresh
   ========================================================================== */
.btn-secondary {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border-color);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(77, 38, 0, 0.08);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.section-kicker-light {
  color: rgba(252, 245, 238, 0.75);
}

.hero {
  padding: 88px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(240, 127, 41, 0.14), transparent 32%),
    radial-gradient(circle at right center, rgba(255, 195, 19, 0.18), transparent 36%),
    var(--bg-cream);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
}
.hero-eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.02;
  max-width: 11ch;
  margin-bottom: 22px;
}
.hero-lede {
  max-width: 58ch;
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-points {
  display: grid;
  gap: 10px;
  max-width: 58ch;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--text-muted);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-orange);
}
.hero-proof {
  display: flex;
  justify-content: flex-end;
}
.hero-proof-card {
  width: 100%;
  max-width: 430px;
  padding: 28px;
  border: 2px solid rgba(77, 38, 0, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(77, 38, 0, 0.12);
  backdrop-filter: blur(10px);
}
.proof-label {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proof-output {
  padding: 14px 0;
  border-top: 1px solid rgba(77, 38, 0, 0.12);
}
.proof-output:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.proof-output span,
.proof-benchmark span {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proof-output strong,
.proof-benchmark strong {
  font-size: 18px;
  line-height: 1.35;
  color: var(--text-dark);
}
.proof-benchmark {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(240, 127, 41, 0.12), rgba(255, 195, 19, 0.14));
}

.proof-strip {
  padding: 0 0 60px;
}
.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-stat {
  padding: 22px;
  border: 2px solid rgba(77, 38, 0, 0.12);
  background: var(--white);
}
.proof-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
  color: var(--text-dark);
}
.proof-stat span {
  font-size: 15px;
  color: var(--text-muted);
}

.product {
  padding: 56px 0 72px;
  text-align: left;
}
.product h2 {
  max-width: 12ch;
  margin-bottom: 14px;
}
.product-intro {
  max-width: 64ch;
  margin: 0 0 34px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  min-height: 220px;
  padding: 24px;
  border: 2px solid rgba(77, 38, 0, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 245, 238, 0.92));
}
.product-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
  color: var(--text-dark);
}
.product-card p {
  font-size: 15px;
  color: var(--text-muted);
}

.rev-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}
.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.trust-list li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(252, 245, 238, 0.92);
}

.feature-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 36px;
  align-items: center;
}
.feature-spotlight-copy h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-light);
}
.feature-spotlight-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(252, 245, 238, 0.92);
}
.feature-bullets {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.feature-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: rgba(252, 245, 238, 0.92);
}
.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-gold);
}
.feature-spotlight-image img {
  width: 100%;
  max-width: 340px;
  border: 3px solid rgba(252, 245, 238, 0.28);
}

.segments {
  padding: 72px 0;
}
.segments h2 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-dark);
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.segment-card {
  padding: 24px;
  background: var(--white);
  border: 2px solid rgba(77, 38, 0, 0.12);
}
.segment-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--text-dark);
}
.segment-card p {
  margin-bottom: 14px;
  color: var(--text-muted);
}
.segment-card ul {
  padding-left: 20px;
}
.segment-card li {
  margin-bottom: 8px;
  list-style: disc;
  color: var(--text-body);
}

.cta {
  padding: 84px 0;
}
.cta-content h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.trust-pill {
  padding: 10px 14px;
  border: 1px solid rgba(77, 38, 0, 0.18);
  background: rgba(252, 245, 238, 0.8);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
}

.faq {
  padding: 0 0 80px;
}
.faq h2 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.faq-card {
  padding: 24px;
  border-top: 4px solid var(--accent);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(77, 38, 0, 0.06);
}
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-dark);
}
.faq-card p {
  color: var(--text-muted);
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 195, 19, 0.92), rgba(255, 195, 19, 0.96)),
    var(--bg-gold);
}
.contact h2 {
  max-width: 13ch;
  margin: 0 auto 14px;
  font-size: 48px;
  line-height: 1.04;
}
.contact-subtitle {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 40px; max-width: none; }
  .hero-proof { justify-content: flex-start; }
  .proof-strip-grid,
  .product-grid,
  .segments-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr; gap: 32px; }
  .rev-grid { grid-template-columns: 1fr; gap: 32px; }
  .rev-image { max-width: 420px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-card img { max-width: 100%; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-image { max-width: 400px; }
  .feature-spotlight { grid-template-columns: 1fr; }
  .contact h2 { font-size: 40px; }
  .footer-brand-name { font-size: 36px; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .hamburger { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .header-nav.is-open { display: flex; }
  .header-nav .btn { width: 100%; text-align: center; }
  .hero { padding: 48px 0; }
  .hero-content h1 { font-size: 32px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .contact-actions .btn { width: 100%; }
  .hero-proof-card { padding: 22px; }
  .diagonal-top, .diagonal-bottom { height: 50px; }
  .section-dark, .section-orange { padding: 40px 0; }
  .product { padding: 48px 0 24px; }
  .product h2,
  .rev-content h2,
  .cta-content h2,
  .segments h2,
  .faq h2,
  .feature-spotlight-copy h2 { font-size: 30px; }
  .contact h2 { font-size: 32px; }
  .legal-page h1 { font-size: 28px; }
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--white);
  padding: 12px 24px; z-index: 1000; font-weight: 600;
}
.skip-link:focus { top: 0; }

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