/* ============================================
   REVIEW CRANE — Design Tokens & Global Styles
   ============================================ */

:root {
  /* Brand */
  --rc-orange: #FF931E;
  --rc-orange-hover: #FFa740;
  --rc-orange-dark: #E8760A;
  --rc-orange-light: rgba(255, 147, 30, 0.1);
  --rc-orange-border: rgba(255, 147, 30, 0.2);
  --rc-orange-bg: #FFF9F2;
  --rc-teal: #2A9D8F;
  --rc-teal-dark: #1A7A6F;
  --rc-teal-light: rgba(42, 157, 143, 0.1);
  --rc-teal-border: rgba(42, 157, 143, 0.2);
  --rc-teal-bg: #E8F7F5;

  /* Surfaces */
  --rc-cream: #FAF8F5;
  --rc-white: #FFFFFF;
  --rc-border: #EDE9E3;
  --rc-border-hover: #D5D0C9;
  --rc-surface-alt: #F0ECE6;

  /* Text */
  --rc-text: #1A1A1A;
  --rc-text-muted: #6B6560;
  --rc-text-faint: #A09A93;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 40px;
  --page-padding: 48px;
  --section-gap: 80px;
  --max-width: 1200px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--rc-cream);
  color: var(--rc-text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Animations
   ============================================ */

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated-gradient {
  background: linear-gradient(90deg, var(--rc-orange), var(--rc-teal), var(--rc-orange), var(--rc-orange-dark), var(--rc-teal));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--rc-text);
  line-height: 1.15;
}

h1 { font-size: 59px; font-weight: 800; }
h2 { font-size: 38px; font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; }

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
  background: var(--rc-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.25s;
}

.btn-primary:hover {
  background: var(--rc-orange-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--rc-text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 28px;
  border: 1px solid var(--rc-border-hover);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: var(--rc-text-muted);
  background: var(--rc-white);
}

.btn-outline[href*="loom"],
.btn-outline[href*="youtube"],
.btn-outline[href*="youtu.be"] {
  position: relative;
  padding-left: 44px;
}

.btn-outline[href*="loom"]::before,
.btn-outline[href*="youtube"]::before,
.btn-outline[href*="youtu.be"]::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Crect width='24' height='18' rx='4' fill='%23FF0000'/%3E%3Cpolygon points='9.5,3.5 9.5,14.5 18,9' fill='%23fff'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-primary.btn-lg,
.btn-outline.btn-lg {
  font-size: 17px;
  padding: 14px 32px;
}

.btn-outline.btn-lg[href*="loom"],
.btn-outline.btn-lg[href*="youtube"],
.btn-outline.btn-lg[href*="youtu.be"] {
  padding-left: 48px;
}

.btn-outline.btn-lg[href*="loom"]::before,
.btn-outline.btn-lg[href*="youtube"]::before,
.btn-outline.btn-lg[href*="youtu.be"]::before {
  left: 16px;
}

/* ============================================
   Layout Helpers
   ============================================ */

   /* Global centering */
.container {
  text-align: center;
}

.section-label,
h2,
.services-grid,
.case-studies-grid,
.steps-grid,
.compare-grid {
  margin-left: auto;
  margin-right: auto;
}

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

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

.section-label {
  font-size: 14px;
  color: var(--rc-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--page-padding);
  border-bottom: 1px solid var(--rc-border);
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 16px;
  color: var(--rc-text-muted);
  list-style: none;
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rc-text);
}

.nav-cta .btn-primary {
  font-size: 15px;
  padding: 10px 22px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rc-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 90px var(--page-padding) 70px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 10px;
  font-size: 14px;
  color: var(--rc-text-muted);
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}

.hero-badge-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 20px;
  animation: fade-up 0.7s ease 0.1s both;
}

.hero p {
  font-size: 19px;
  color: var(--rc-text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.65;
  animation: fade-up 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  animation: fade-up 0.7s ease 0.3s both;
}

/* ============================================
   Trusted By (Logo Bar)
   ============================================ */

.trusted-bar {
  padding: 32px var(--page-padding);
  border-top: 1px solid var(--rc-border);
  border-bottom: 1px solid var(--rc-border);
}

.trusted-label {
  text-align: center;
  font-size: 12px;
  color: var(--rc-text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.trusted-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.trusted-track img {
  height: 70px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.3s, filter 0.3s;
}

.trusted-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Services Grid
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
  text-align: center;
}

.service-card .service-icon {
  margin-left: auto;
  margin-right: auto;
}

.service-card:hover {
  border-color: var(--rc-orange);
  transform: translateY(-3px);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 23px;
}

.service-icon.orange {
  background: var(--rc-orange-light);
  border: 1px solid var(--rc-orange-border);
  color: var(--rc-orange);
}

.service-icon.teal {
  background: var(--rc-teal-light);
  border: 1px solid var(--rc-teal-border);
  color: var(--rc-teal);
}

.service-icon .lucide,
.service-icon svg { width: 22px; height: 22px; stroke-width: 2; }

.service-card h3 { margin-bottom: 8px; }

.service-card p {
  font-size: 16px;
  color: var(--rc-text-muted);
  line-height: 1.6;
}

/* ============================================
   Case Studies
   ============================================ */

.case-studies-sub {
  font-size: 18px;
  color: var(--rc-text-muted);
  max-width: 520px;
  margin: 12px auto 0;
  text-align: center;
  line-height: 1.6;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card container */
.case-card-v2 {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.case-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Photo area with industry pill overlay */
.case-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rc-border);
  position: relative;
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.case-card-v2:hover .case-card-img img {
  transform: scale(1.04);
}

/* Industry pill — overlays top-left of image */
.case-industry-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.case-industry-pill.teal {
  color: var(--rc-teal);
}

.case-industry-pill.orange {
  color: var(--rc-orange);
}

.case-industry-pill.blue {
  color: #185FA5;
}

/* Card body */
.case-card-body {
  padding: 20px 24px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Centered business name */
.case-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--rc-text);
  text-align: center;
}

/* Stats row */
.case-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.case-stat-box {
  background: var(--rc-orange-bg, #FAFAF8);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.case-stat-box.accent {
  background: #FFF3E5;
}

.case-stat-label {
  font-size: 11px;
  color: var(--rc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.case-stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.case-stat-value .before {
  color: var(--rc-text-faint);
}

.case-stat-value .arrow {
  color: var(--rc-text-faint);
  font-size: 16px;
  margin: 0 2px;
}

.case-stat-value .after {
  color: var(--rc-orange);
}

.case-stat-value.accent-num {
  color: var(--rc-orange);
  font-size: 25px;
  font-weight: 800;
}

.case-stat-sub {
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}

.case-stat-sub.teal {
  color: var(--rc-teal);
}

.case-stat-sub.orange {
  color: #B35E08;
}

/* Full-width timeframe bar */
.case-timeframe-bar {
  background: var(--rc-orange-bg, #F5F4F0);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--rc-text);
}

/* Automated bar */
.case-automated-bar {
  margin-top: 36px;
  background: var(--rc-orange-bg, #F5F4F0);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.case-automated-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rc-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.case-automated-icon .lucide, .case-automated-icon svg { width: 18px; height: 18px; stroke-width: 2.5; color: #fff; }

.case-automated-bar p {
  font-size: 16px;
  color: var(--rc-text-muted);
  line-height: 1.5;
}

.case-automated-bar p strong {
  color: var(--rc-text);
  font-weight: 700;
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 900px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-automated-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 640px) {
  .case-card-body {
    padding: 16px 18px 10px;
  }

  .case-stat-value {
    font-size: 18px;
  }

  .case-stat-value.accent-num {
    font-size: 20px;
  }

  .case-studies-sub {
    font-size: 16px;
  }
}


/* ============================================
   Steps (How It Works)
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step { text-align: center; }

.step-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  color: var(--rc-border);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .step:hover .step-num {
    color: var(--rc-orange);
  }
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--rc-text-muted);
  line-height: 1.55;
}

/* ============================================
   Comparison
   ============================================ */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.compare-others {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
}

.compare-us {
  background: var(--rc-orange-bg);
  border: 2px solid var(--rc-orange);
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
}

.compare-others h3 { color: var(--rc-text-muted); }
.compare-us h3 { color: var(--rc-orange); }

.compare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--rc-surface-alt);
}

.compare-us .compare-item {
  color: var(--rc-text);
  border-bottom-color: #F5E6D3;
}

.compare-others .compare-item {
  color: var(--rc-text-muted);
}

.compare-item:last-child { border-bottom: none; }

.compare-x { color: #E24B4A; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.compare-check { color: var(--rc-teal); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.compare-x .lucide, .compare-x svg,
.compare-check .lucide, .compare-check svg { width: 18px; height: 18px; stroke-width: 2.5; }

/* ============================================
   About Section
   ============================================ */

.about-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  align-items: center;
}

.about-photo {
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-name {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-role {
  font-size: 15px;
  color: var(--rc-orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.about-bio p {
  font-size: 17px;
  color: var(--rc-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

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

/* ============================================
   Testimonial
   ============================================ */

.testimonial {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
}

.testimonial-stars {
  font-size: 40px;
  color: var(--rc-orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial cite {
  font-size: 16px;
  color: var(--rc-text-muted);
  font-style: normal;
}

/* ============================================
   FAQ
   ============================================ */
/* FAQ fix — center and constrain */
.faq-list {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  text-align: left;
}

.faq-item p {
  text-align: left;
}

.faq-list { max-width: 580px; }

.faq-item {
  border-bottom: 1px solid var(--rc-border);
  padding: 18px 0;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-toggle {
  font-size: 23px;
  color: var(--rc-text-faint);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 16px;
  color: var(--rc-text-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 12px;
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
  text-align: center;
  padding-top: 20px;
  padding-bottom: var(--section-gap);
}

.final-cta h2 {
  font-size: 43px;
  font-weight: 800;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 18px;
  color: var(--rc-text-muted);
  margin-bottom: 28px;
}

.final-cta .hero-ctas {
  animation: none;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  border-top: 1px solid var(--rc-border);
  padding: 28px var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--rc-text-faint);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--rc-text);
}

/* ============================================
   Booking Page
   ============================================ */

.booking-hero {
  padding: 60px var(--page-padding) 20px;
  text-align: center;
}

.booking-hero h1 {
  font-size: 45px;
  margin-bottom: 12px;
}

.booking-hero p {
  font-size: 19px;
  color: var(--rc-text-muted);
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.65;
}

.booking-embed {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--page-padding) var(--section-gap);
}

.booking-embed-placeholder {
  background: var(--rc-white);
  border: 2px dashed var(--rc-border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: var(--rc-text-faint);
  font-size: 16px;
}

.booking-embed-placeholder code {
  display: block;
  margin-top: 12px;
  font-family: monospace;
  font-size: 14px;
  color: var(--rc-text-muted);
  background: var(--rc-cream);
  padding: 12px;
  border-radius: var(--radius-sm);
  word-break: break-all;
}

/* ============================================
   Responsive — Tablet
   ============================================ */

@media (max-width: 900px) {
  :root { --page-padding: 32px; }

  h1 { font-size: 45px; }
  h2 { font-size: 32px; }

  .services-grid,
  .case-studies-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    width: 200px;
    height: 240px;
    margin: 0 auto;
  }

  .trusted-track {
    gap: 40px;
  }

  .trusted-track img {
    height: 40px;
    width: 100px;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */

@media (max-width: 640px) {
  :root {
    --page-padding: 20px;
    --section-gap: 56px;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 27px; }

  .nav-links { display: none; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--rc-cream);
    border-bottom: 1px solid var(--rc-border);
    padding: 20px var(--page-padding);
    gap: 16px;
  }

  .hero {
    padding: 56px var(--page-padding) 48px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }

  .case-numbers {
    flex-direction: column;
  }

  .case-arrow {
    transform: rotate(90deg);
  }

  .case-badges {
    flex-direction: column;
  }

  .final-cta h2 { font-size: 32px; }

  .final-cta .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .testimonial {
    padding: 28px 20px;
  }

  .testimonial blockquote {
    font-size: 19px;
  }

  .about-card {
    padding: 24px;
  }
}
.faq-list {
  max-width: 100%;
  padding: 0 20px;
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */

.legal-page {
  text-align: left;
  max-width: 760px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 25px;
  margin-top: 40px;
  margin-bottom: 12px;
  text-align: left;
}

.legal-content h3 {
  font-size: 19px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 17px;
  color: var(--rc-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  font-size: 17px;
  color: var(--rc-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--rc-orange);
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--rc-orange-dark);
}
