/* ============================================================
   Convirs Website — Shared Stylesheet
   ============================================================ */

/* 1. CSS Variables
   ============================================================ */
:root {
  --navy:    #1B2A4A;
  --offwhite:#F8F7F4;
  --white:   #FFFFFF;
  --amber:   #d3b54f;
  --charcoal:#2D2D2D;
  --muted:   #6B7280;
  --border:  #E5E7EB;
  --amber-hover: #BA8C14;
  --navy-hover:  #243660;

  --max-width: 68.75rem;
  --section-v: 5rem;
  --section-v-sm: 3rem;
  --radius-card: 0.5rem;
  --radius-btn: 0.375rem;
  --shadow-card: 0 2px 0.75rem rgba(0,0,0,0.07);
  --shadow-header: 0 2px 1rem rgba(0,0,0,0.10);
}

/* 2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Scroll reveal (used globally via nav.js auto-tagging) */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--offwhite);
}

/* Buttons use Fraunces — ties CTAs to the brand's heading identity */
.btn {
  font-family: 'Fraunces', Georgia, serif;
}

/* Nav, header, footer, labels use Fraunces — consistent brand voice */
.site-header,
.site-nav,
.header-phone,
.section-label,
.site-footer,
label,
.badge, .tag, .step-num, .stat-label, .stat-num {
  font-family: 'Fraunces', Georgia, serif;
}

/* Form inputs stay in Inter for readability while typing */
input, textarea, select {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 3. Typography
   ============================================================ */
h1 { font-size: 3rem; font-weight: 700; line-height: 1.15; font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 700; line-height: 1.2; font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
h4 { font-size: 1.1875rem; font-weight: 600; line-height: 1.3; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

blockquote {
  border-left: 4px solid var(--amber);
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-style: italic;
  color: var(--navy);
  margin: 1.5rem 0;
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--muted);
}

/* 4. Layout
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-v) 0;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* 5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--amber-hover);
  box-shadow: 0 4px 0.875rem rgba(212,160,23,0.35);
  transform: translateY(-0.0625rem);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-0.0625rem);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--offwhite);
  box-shadow: 0 4px 0.875rem rgba(0,0,0,0.12);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 1.0625rem 2.25rem;
  font-size: 1rem;
}

/* 6. Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 1.5rem;
}

/* Logo */
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.logo span { color: var(--amber); }
.logo-bolt {
  height: 0.95em;
  width: auto;
  flex-shrink: 0;
  color: var(--amber);
}

/* Nav wrapper */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 0.25rem;
  transition: color 0.15s, background 0.15s;
}
.nav-list > li > a:hover,
.nav-dropdown-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-list > li.active > a {
  color: var(--white);
}

.nav-dropdown-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Dropdown menus */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 13.75rem;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background 0.12s, color 0.12s;
}
.dropdown-menu a:hover {
  background: var(--offwhite);
  color: var(--navy);
}
.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.375rem 0;
}
.dropdown-menu .dropdown-header {
  padding: 0.5rem 1.125rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 0 0.5rem;
  flex-shrink: 0;
}
.header-phone svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }
.header-phone a { color: inherit; }
.header-phone a:hover { color: var(--amber); }

/* CTA in header */
.header-cta {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.hamburger span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.mobile-nav.open { display: block; }

.mobile-nav-list a,
.mobile-nav-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border: none;
  width: 100%;
  text-align: left;
  gap: 0.5rem;
}
.mobile-nav-list a:hover,
.mobile-nav-dropdown-btn:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.mobile-dropdown-items {
  display: none;
  background: rgba(0,0,0,0.15);
}
.mobile-dropdown-items.open { display: block; }
.mobile-dropdown-items a {
  padding: 0.625rem 1.5rem 0.625rem 2.25rem;
  font-size: 0.9375rem;
}

.mobile-nav-footer {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
}
.mobile-nav-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.mobile-nav-phone a { color: inherit; }
.mobile-nav-footer .btn { text-align: center; justify-content: center; }

/* 7. Hero Sections
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 48.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--amber); }

.hero-subtitle {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  max-width: 40rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-trust {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.hero-trust span { margin: 0 0.5rem; opacity: 0.4; }
.hero-trust span:first-child { margin-left: 0; }

/* Hero variant — centered (for inner pages) */
.hero-centered {
  text-align: center;
}
.hero-centered .hero-inner {
  max-width: 43.75rem;
  margin: 0 auto;
}
.hero-centered .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .hero-ctas {
  justify-content: center;
}
.hero-centered .hero-trust {
  text-align: center;
}

/* 8. Stats Bar
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 17.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.stat-context {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* 9. Section Backgrounds
   ============================================================ */
.section-white { background: var(--white); }
.section-offwhite { background: var(--offwhite); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy .section-title { color: var(--white); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }
.section-navy p { color: rgba(255,255,255,0.85); }

/* 10. Grid Layouts
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* 11. Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(27,42,74,0.07);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 1.5rem; height: 1.5rem; color: var(--navy); }

.card h3 { margin-bottom: 0.625rem; color: var(--navy); }
.card p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1rem; }
.card p:last-child { margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  transition: gap 0.15s;
}
.card-link:hover { gap: 0.625rem; }
.card-link svg { width: 0.875rem; height: 0.875rem; }

/* Service cards with amber accent */
.card-service {
  border-top: 3px solid var(--amber);
}

/* 12. Feature List
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.feature-item h3 { margin-bottom: 1rem; color: var(--navy); }
.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(212,160,23,0.12);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.feature-icon svg { width: 1.125rem; height: 1.125rem; color: var(--amber); }
.feature-text h4 { font-size: 1.0625rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.feature-text p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* 13. 3-Step Process
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-item {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-item h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
.step-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

/* 14. Pain Points
   ============================================================ */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 46.25rem;
}
.pain-item {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--border);
}
.pain-item h3 {
  font-size: 1.1875rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pain-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

/* 15. Pricing Tables
   ============================================================ */
.pricing-table-wrap { overflow-x: auto; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}
.pricing-table th:first-child { border-radius: 0; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.pricing-table td strong { color: var(--navy); }
.pricing-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

/* SEO pricing tier cards */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pricing-tier {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.pricing-tier.featured {
  border-color: var(--amber);
  border-width: 2px;
  position: relative;
}
.pricing-tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.8125rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 1.25rem;
  white-space: nowrap;
}
.tier-name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-size: 2.375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tier-price sup { font-size: 1.25rem; vertical-align: super; }
.tier-period { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.tier-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.tier-features {
  flex: 1;
  margin-bottom: 1.75rem;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features .check { color: var(--amber); flex-shrink: 0; margin-top: 0.125rem; }
.tier-features .dash { color: var(--muted); flex-shrink: 0; margin-top: 0.125rem; }
.tier-note {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* 16. FAQ / Accordion
   ============================================================ */
.faq-list {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: background 0.12s;
}
.faq-question:hover { background: var(--offwhite); }
.faq-question svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); color: var(--amber); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq-answer.open { display: block; }

/* 17. Contact Form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-method {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}
.contact-method-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(27,42,74,0.07);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 1.375rem; height: 1.375rem; color: var(--navy); }
.contact-method-text h3 { font-size: 1.0625rem; color: var(--navy); margin-bottom: 0.25rem; }
.contact-method-text p { font-size: 0.9375rem; color: var(--muted); margin: 0; }
.contact-method-text a { color: var(--navy); font-weight: 600; }
.contact-method-text a:hover { color: var(--amber); }
.contact-phone-number { font-size: 1.375rem; font-weight: 700; color: var(--navy); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-form-wrap h2 { font-size: 1.625rem; color: var(--navy); margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--offwhite);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 0.1875rem rgba(27,42,74,0.10);
  background: var(--white);
}
.form-group textarea { min-height: 7.5rem; resize: vertical; }

.form-submit { width: 100%; }
.form-success {
  display: none;
  padding: 1.125rem 1.25rem;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 0.375rem;
  color: #065f46;
  font-size: 0.9375rem;
  margin-top: 0.75rem;
}
.form-success.visible { display: block; }

/* 18. Trust Signals / Badge Row
   ============================================================ */
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.trust-row .trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--amber);
  flex-shrink: 0;
}

/* 19. CTA Section (Bottom of Pages)
   ============================================================ */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-v) 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.875rem;
}
.cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 36.25rem;
  margin: 0 auto 2.25rem;
}
.cta-section .cta-btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta-section .trust-row {
  justify-content: center;
  color: rgba(255,255,255,0.45);
}
.cta-section .trust-item svg { color: rgba(255,255,255,0.45); }

/* 20. Resource Guide Layout
   ============================================================ */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 17.5rem;
  gap: 3.5rem;
  align-items: start;
}
.guide-content h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.guide-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.guide-content h3 { font-size: 1.3125rem; color: var(--navy); margin-top: 2rem; margin-bottom: 0.75rem; }
.guide-content h4 { font-size: 1.0625rem; color: var(--navy); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.guide-content p { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; color: var(--charcoal); }
.guide-content ul, .guide-content ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
.guide-content ul { list-style: disc; }
.guide-content ol { list-style: decimal; }
.guide-content li { font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem; color: var(--charcoal); }
.guide-content li:last-child { margin-bottom: 0; }
.guide-content blockquote { margin: 1.5rem 0; }
.guide-content strong { color: var(--navy); }
.guide-content a:not(.btn) { color: var(--amber); text-decoration: underline; }
.guide-content a:not(.btn):hover { color: var(--amber-hover); }

.guide-step {
  counter-increment: guide-steps;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
}
.guide-step:last-child { border-bottom: none; }
.guide-step-num {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--navy);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-step-body h3 { margin-top: 0.375rem; }

.guide-sidebar {
  position: sticky;
  top: 5.5rem;
}
.guide-toc {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.guide-toc h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.875rem;
}
.guide-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc-steps; }
.guide-toc li {
  counter-increment: toc-steps;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--border);
}
.guide-toc li:last-child { border-bottom: none; }
.guide-toc a { color: var(--navy); font-weight: 500; }
.guide-toc a:hover { color: var(--amber); }
.guide-cta-box {
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  text-align: center;
}
.guide-cta-box p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 0.875rem; }
.guide-cta-box .btn { width: 100%; justify-content: center; }

/* Mistake/warning callout */
.callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
  margin: 1.5rem 0;
  display: flex;
  gap: 0.875rem;
}
.callout-info { background: #eff6ff; border: 1px solid #bfdbfe; }
.callout-warn { background: #fffbeb; border: 1px solid #fde68a; }
.callout-icon { flex-shrink: 0; margin-top: 0.125rem; }
.callout-icon svg { width: 1.25rem; height: 1.25rem; }
.callout-info .callout-icon svg { color: #3b82f6; }
.callout-warn .callout-icon svg { color: #d97706; }
.callout p { font-size: 0.9375rem; margin: 0; }
.callout-info p { color: #1e3a8a; }
.callout-warn p { color: #78350f; }

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}
.checklist li:last-child { border-bottom: none; }
.checklist .check { color: var(--amber); flex-shrink: 0; margin-top: 0.125rem; }
.checklist .x { color: #dc2626; flex-shrink: 0; margin-top: 0.125rem; }

/* Table in guides */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.9375rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}
.guide-table th, .guide-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.guide-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

/* 21. Past Work
   ============================================================ */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
}
.meta-badge svg { width: 0.875rem; height: 0.875rem; color: var(--amber); }

.project-section { margin-bottom: 3.5rem; }
.project-section h2 {
  font-size: 1.625rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.result-highlight {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.result-highlight .result-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-highlight .result-label {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
}

.image-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 16.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
}
.image-placeholder svg { width: 2.5rem; height: 2.5rem; opacity: 0.4; }
.image-placeholder span { font-style: italic; }

/* 22. Resources Hub
   ============================================================ */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.resource-card .resource-type {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--amber);
  margin-bottom: 0.625rem;
}
.resource-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}
.resource-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.resource-card .card-link {
  align-self: flex-start;
}

/* 23. About Page
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  padding: 1.75rem;
}
.value-card h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

.origin-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.origin-story-text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.origin-story-text p { font-size: 1rem; color: var(--charcoal); margin-bottom: 1rem; }

.origin-story-visual {
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.origin-story-visual .origin-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.origin-story-visual .origin-icon svg { width: 2.5rem; height: 2.5rem; color: var(--amber); }
.origin-story-visual p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-style: italic;
}

/* 24. Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { font-size: 1.25rem; margin-bottom: 0.75rem; display: flex; align-items: center; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.footer-phone {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}
.footer-phone a { color: inherit; }
.footer-phone a:hover { color: var(--amber); }
.footer-address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.375rem;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.875rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.12s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  gap: 1rem;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* 25. Breadcrumb
   ============================================================ */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 0.375rem; opacity: 0.5; }

/* 26. Back Link
   ============================================================ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: gap 0.15s;
}
.back-link:hover { gap: 0.625rem; }
.back-link svg { width: 1rem; height: 1rem; }

/* 27. Quiz
   ============================================================ */
.quiz-wrap {
  max-width: 48.75rem;
  margin: 0 auto;
}
.quiz-progress-track {
  background: var(--border);
  border-radius: 0.25rem;
  height: 0.375rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.quiz-progress-bar {
  background: var(--amber);
  border-radius: 0.25rem;
  height: 100%;
  width: 0%;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.quiz-step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.quiz-body {
  min-height: 20rem;
}
.quiz-question-text {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  color: var(--charcoal);
}
.quiz-option:hover {
  border-color: var(--amber);
  background: rgba(168,134,67,0.04);
  box-shadow: 0 2px 0.625rem rgba(0,0,0,0.08);
}
.quiz-option--selected {
  border-color: var(--amber);
  background: rgba(168,134,67,0.09);
}
.quiz-option--selected .quiz-option-letter {
  background: var(--amber);
  color: var(--white);
}
.quiz-option-letter {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--offwhite);
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.quiz-option-label {
  flex: 1;
  line-height: 1.4;
}
/* Quiz results */
.quiz-results {
  padding-top: 0.5rem;
}
.quiz-results-intro {
  margin-bottom: 2rem;
}
.quiz-results-intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.quiz-results-intro p {
  font-size: 1.0625rem;
  color: var(--muted);
}
.quiz-results-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.quiz-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 2rem;
}
.quiz-result-card--primary {
  box-shadow: 0 4px 1.25rem rgba(0,0,0,0.1);
}
.quiz-result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quiz-result-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: rgba(168,134,67,0.1);
  border-radius: 0.25rem;
  padding: 0.1875rem 0.625rem;
  margin-bottom: 0.375rem;
}
.quiz-result-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-result-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
  fill: none;
}
.quiz-result-headline {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.quiz-result-body {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.quiz-result-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.quiz-result-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
}
.quiz-result-bullets li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: rgba(168,134,67,0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23a88643' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2 8 6 12 14 4'/%3E%3C/svg%3E");
  background-size: 0.75rem;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0.125rem;
}
.quiz-result-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.15s;
}
.quiz-result-link:hover { gap: 0.625rem; }
.quiz-result-link svg { width: 1rem; height: 1rem; }
.quiz-result-note {
  background: rgba(168,134,67,0.08);
  border: 1px solid rgba(168,134,67,0.25);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.quiz-result-note strong {
  color: var(--navy);
}
.quiz-cta-block {
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem;
  text-align: center;
  color: var(--white);
}
.quiz-cta-block h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.quiz-cta-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.quiz-cta-block .trust-row {
  justify-content: center;
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
}
.quiz-cta-block .trust-item svg {
  stroke: var(--amber);
}
.quiz-restart-btn {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.15s, text-decoration-color 0.15s;
  font-family: 'Source Serif 4', serif;
}
.quiz-restart-btn:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
}
/* Fade transition for quiz body */
.quiz-body.fade-out {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.quiz-body.fade-in {
  opacity: 0;
  transform: translateX(1rem);
}
.quiz-body.fade-in-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
/* Quiz on resources hub */
.quiz-feature-card {
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.75rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.quiz-feature-card-text {
  flex: 1;
}
.quiz-feature-card-text .resource-type {
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.quiz-feature-card-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.quiz-feature-card-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.quiz-feature-card-cta {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .quiz-question-text { font-size: 1.25rem; }
  .quiz-result-card { padding: 1.375rem 1.25rem; }
  .quiz-cta-block { padding: 1.75rem 1.25rem; }
  .quiz-feature-card { flex-direction: column; gap: 1.5rem; padding: 1.75rem 1.5rem; }
  .quiz-feature-card-cta { width: 100%; }
  .quiz-feature-card-cta .btn { width: 100%; text-align: center; display: block; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .guide-layout { grid-template-columns: 1fr 15rem; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root {
    --section-v: var(--section-v-sm);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }

  /* Header */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 3.75rem 0 3.25rem; }
  .hero-subtitle { font-size: 1.0625rem; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-bar .container { flex-direction: column; }
  .stat-item { max-width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem 1.5rem; }
  .stat-item:last-child { border-bottom: none; }

  /* Feature cards */
  .feature-list { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-tiers { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  .origin-story { grid-template-columns: 1fr; }
  .origin-story-visual { display: none; }

  /* Guide */
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Misc */
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .hero-ctas { gap: 0.625rem; }
  .btn-lg { padding: 0.9375rem 1.75rem; font-size: 0.9375rem; }
  .trust-row { gap: 0.75rem; font-size: 0.8125rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-centered .hero-ctas { align-items: center; }
  .cta-section .cta-btns { flex-direction: column; align-items: center; }
}
