/* FreightForensic — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2d42;
  --navy-light:  #243852;
  --orange:      #e8900d;
  --orange-hover:#c97b0a;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --text-dark:   #0f172a;
  --text-mid:    #374151;
  --text-light:  #6b7280;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:   0 4px 12px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; font-size: 16px; }

/* ─── NAV ─────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 18px; font-weight: 700; text-decoration: none; color: var(--text-dark); letter-spacing: -.3px; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: var(--radius); transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { background: var(--gray-100); color: var(--text-dark); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-right a { text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: var(--radius); transition: background .15s, color .15s; }
.nav-right a:hover { background: var(--gray-100); color: var(--text-dark); }
.btn-orange { background: var(--orange) !important; color: var(--white) !important; padding: 8px 16px !important; border-radius: var(--radius) !important; font-weight: 600 !important; font-size: 14px !important; transition: background .15s !important; }
.btn-orange:hover { background: var(--orange-hover) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-dark); }
.nav-mobile { display: none; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: background .15s, color .15s, border-color .15s; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1px solid var(--gray-200); }
.btn-outline:hover { background: var(--gray-100); }
.btn-sm { padding: 8px 16px; font-size: 14px; }

/* ─── HERO ─────────────────────────────────────────── */
.hero { background: var(--navy); padding: 96px 24px 80px; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -.5px; margin-bottom: 20px; }
.hero p { font-size: 18px; color: rgba(255,255,255,.72); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-disclaimer { font-size: 13px; color: rgba(255,255,255,.45); }

/* ─── STATS ─────────────────────────────────────────── */
.stats { background: var(--white); padding: 56px 24px; border-bottom: 1px solid var(--gray-200); }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-light); line-height: 1.4; }

/* ─── SECTION GENERIC ─────────────────────────────── */
.section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -.3px; }
.section-subtitle { font-size: 18px; color: var(--text-light); max-width: 600px; margin-bottom: 48px; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-navy .section-title, .bg-navy h2, .bg-navy h1 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,.72); }

/* ─── STEPS ─────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step-card { text-align: center; padding: 32px 24px; }
.step-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon svg { width: 24px; height: 24px; color: var(--gray-500); }
.step-number { display: inline-block; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 12px; font-weight: 700; text-align: center; line-height: 24px; margin-bottom: 16px; }
.step-card h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.steps-note { text-align: center; font-size: 14px; color: var(--text-light); margin-top: 32px; }

/* ─── TICKER ─────────────────────────────────────────── */
.ticker { padding: 28px 0; background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { font-size: 14px; font-weight: 500; color: var(--gray-500); padding: 0 28px; border-right: 1px solid var(--gray-200); text-decoration: none; transition: color .15s; white-space: nowrap; }
a.ticker-item:hover { color: var(--orange); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PROBLEM SECTION ─────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.problem-left h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.problem-left p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.75; }
.problem-right { display: flex; flex-direction: column; gap: 12px; }
.problem-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 18px 20px; font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.5; }
.problem-item::before { content: '→'; color: var(--orange); margin-right: 10px; font-weight: 600; }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 24px; }
.pricing-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; }
.pricing-card.featured { border-color: var(--navy); box-shadow: 0 0 0 2px var(--navy); }
.pricing-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; border-radius: 100px; margin-bottom: 16px; }
.pricing-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-price span { font-size: 15px; font-weight: 500; color: var(--text-light); }
.pricing-desc { font-size: 14px; color: var(--text-light); margin: 12px 0 24px; min-height: 40px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; color: var(--text-mid); padding: 6px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gray-100); }
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--orange); font-size: 16px; flex-shrink: 0; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-light); }
.pricing-note a { color: var(--orange); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* ─── FEATURE TABLE ─────────────────────────────────── */
.feature-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 16px; }
.feature-table th { text-align: left; padding: 12px 16px; font-weight: 600; color: var(--text-dark); border-bottom: 2px solid var(--gray-200); }
.feature-table th:not(:first-child) { text-align: center; width: 100px; }
.feature-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--text-mid); }
.feature-table td:not(:first-child) { text-align: center; }
.feature-table tr:last-child td { border-bottom: none; }
.feature-table .check-icon { color: var(--orange); font-size: 16px; }
.feature-table .dash { color: var(--gray-400); }
.feature-table .partial { color: var(--gray-400); font-size: 13px; }

/* ─── ROI TABLE ─────────────────────────────────────── */
.roi-table { width: 100%; border-collapse: collapse; font-size: 15px; margin-top: 16px; }
.roi-table th { text-align: left; padding: 14px 20px; font-weight: 600; color: var(--white); background: var(--navy-mid); }
.roi-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); }
.roi-table tr:last-child td { border-bottom: none; }
.roi-table tr:nth-child(even) td { background: var(--gray-50); }

/* ─── FAQ ───────────────────────────────────────────── */
.faq { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question:hover { color: var(--orange); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner { background: var(--navy-mid); padding: 64px 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 28px; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); padding: 56px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-size: 18px; font-weight: 700; color: var(--white); text-decoration: none; margin-bottom: 10px; display: block; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-email a { font-size: 14px; color: var(--orange); text-decoration: none; }
.footer-email a:hover { text-decoration: underline; }
.footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.35); }

/* ─── PAGE HERO (non-home pages) ─────────────────────── */
.page-hero { background: var(--navy); padding: 64px 24px; }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 580px; line-height: 1.7; }

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how-steps { max-width: 680px; margin: 0 auto; }
.how-step { display: flex; gap: 24px; margin-bottom: 40px; }
.how-step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.how-step-content h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.how-step-content p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.report-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.report-card h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.report-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.findings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.finding-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.finding-card h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.finding-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.confidential-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.lock-icon { font-size: 32px; }

/* ─── INDUSTRIES ──────────────────────────────────────── */
.qualify-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 24px; }
.qualify-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px 20px 20px 56px; font-size: 15px; color: var(--text-mid); line-height: 1.5; position: relative; }
.qualify-item::before { content: '✓'; position: absolute; left: 20px; top: 20px; color: var(--orange); font-weight: 700; font-size: 16px; }
.qualify-note { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-top: 20px; font-style: italic; }
.industries-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.industry-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.industry-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.industry-card h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.exposure-badge { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.exposure-highest { background: #fef2cd; color: #92620d; }
.exposure-high { background: #e8f5e9; color: #2e7d32; }
.industry-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.not-fit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.not-fit-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px 20px 20px 56px; font-size: 15px; color: var(--text-mid); line-height: 1.5; position: relative; }
.not-fit-item::before { content: '✗'; position: absolute; left: 20px; top: 20px; color: var(--gray-400); font-weight: 700; font-size: 16px; }

/* ─── PRODUCTS ────────────────────────────────────────── */
.product-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.product-tab { text-decoration: none; padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--text-mid); border: 1px solid var(--gray-200); transition: all .15s; }
.product-tab:hover, .product-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.product-block { padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.product-block:last-child { border-bottom: none; }
.product-tier { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--orange); margin-bottom: 8px; }
.product-block h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.product-quote { font-size: 17px; color: var(--text-light); font-style: italic; margin-bottom: 20px; padding-left: 16px; border-left: 3px solid var(--orange); }
.product-block > p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.product-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.product-list-section h3 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--text-light); margin-bottom: 16px; }
.product-list-section ul { list-style: none; }
.product-list-section li { font-size: 15px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: flex-start; gap: 10px; }
.product-list-section li:last-child { border-bottom: none; }
.product-list-section li::before { content: '→'; color: var(--orange); flex-shrink: 0; }

/* ─── ABOUT ───────────────────────────────────────────── */
.about-body { max-width: 720px; }
.about-body p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.mission-box { background: var(--navy); border-radius: var(--radius-lg); padding: 36px 40px; margin: 48px 0; }
.mission-box blockquote { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.85); font-style: italic; border-left: 3px solid var(--orange); padding-left: 20px; margin-bottom: 24px; }
.mission-box p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ─── FREE AUDIT ──────────────────────────────────────── */
.free-audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.email-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px; text-align: center; }
.email-cta a { font-size: 20px; font-weight: 700; color: var(--orange); text-decoration: none; }
.email-cta a:hover { text-decoration: underline; }
.email-cta p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; }
.trust-items { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.trust-item { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: '✓'; color: var(--orange); font-weight: 700; }
.free-audit-steps { list-style: none; counter-reset: steps; }
.free-audit-steps li { counter-increment: steps; display: flex; gap: 16px; margin-bottom: 24px; }
.free-audit-steps li::before { content: counter(steps); flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.free-audit-steps li p { font-size: 15px; color: var(--text-mid); line-height: 1.65; padding-top: 6px; }
.quick-qs { margin-top: 32px; }
.quick-q { margin-bottom: 24px; }
.quick-q h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.quick-q p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.includes-list { list-style: none; margin: 20px 0; }
.includes-list li { font-size: 15px; color: var(--text-mid); padding: 10px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: flex-start; gap: 10px; }
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.privacy-note { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; font-size: 14px; color: var(--text-light); line-height: 1.65; margin-top: 24px; }

/* ─── RESOURCES ───────────────────────────────────────── */
.resource-list { max-width: 720px; }
.resource-item { padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.resource-item:last-child { border-bottom: none; }
.resource-item h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.resource-item p { font-size: 15px; color: var(--text-light); line-height: 1.65; }
.glossary-cloud { display: flex; flex-wrap: wrap; gap: 8px; max-width: 800px; }
.gloss-term { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 100px; padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--text-mid); }
.resources-cta { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; text-align: center; margin-top: 48px; }
.resources-cta p { font-size: 16px; color: var(--text-mid); margin-bottom: 20px; }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-email-box { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.contact-email-box p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 8px; }
.contact-email-box a { font-size: 22px; font-weight: 700; color: var(--orange); text-decoration: none; }
.contact-form label { display: block; font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.contact-form label span { color: var(--orange); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: 15px; color: var(--text-dark); background: var(--white); margin-bottom: 20px; transition: border-color .15s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { width: 100%; padding: 12px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); font-size: 16px; font-weight: 600; cursor: pointer; transition: background .15s; }
.contact-form button:hover { background: var(--orange-hover); }
.contact-what-we-are { margin-top: 32px; }
.contact-what-we-are h2 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.contact-what-we-are p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
.contact-what-we-are a { color: var(--orange); text-decoration: none; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile { display: none; padding: 16px 24px; border-top: 1px solid var(--gray-200); }
  .nav-mobile.open { display: block; }
  .nav-mobile a { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; color: var(--text-mid); text-decoration: none; border-bottom: 1px solid var(--gray-100); }
  .nav-right .nav-text-link { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 2rem; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-step { flex-direction: column; gap: 12px; }
  .report-grid { grid-template-columns: 1fr; }
  .findings-grid { grid-template-columns: 1fr; }
  .qualify-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .not-fit-grid { grid-template-columns: 1fr; }
  .product-cols { grid-template-columns: 1fr; }
  .free-audit-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-table { font-size: 13px; }
  .feature-table th, .feature-table td { padding: 10px 8px; }
  .page-hero { padding: 48px 24px; }
}

/* ─── UTILITIES ───────────────────────────────────────── */
.text-orange { color: var(--orange); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
