/* ============================================================
   GITBACK REVIEWS — Marketing Stylesheet
   Brand: Navy #1A2332 | Orange #E8742B | Teal #2ECFB6
          Charcoal #1E2A3A | Cool White #F7F8FA
   Fonts: Outfit (headings) | DM Sans (body) | JetBrains Mono (stats)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:       #1A2332;
  --orange:     #E8742B;
  --teal:       #2ECFB6;
  --charcoal:   #1E2A3A;
  --cool-white: #F7F8FA;
  --white:      #ffffff;
  --border:     #E2E6EA;
  --muted:      #6B7280;
  --muted-light:#9CA3AF;

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(26,35,50,0.08);
  --shadow-md: 0 4px 24px rgba(26,35,50,0.10);
  --shadow-lg: 0 8px 40px rgba(26,35,50,0.14);
}

/* ── Base Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cool-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: 56px; letter-spacing: -1.5px; }
h2 { font-size: 36px; letter-spacing: -0.5px; }
h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.2px; }
h4 { font-size: 20px; font-weight: 600; }
p  { font-size: 18px; line-height: 1.7; }

.mono { font-family: var(--font-mono); }

a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: #d4661f; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-brand {
  background-color: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
  line-height: 1.3;
}
.btn-brand:hover {
  background-color: #d4661f;
  border-color: #d4661f;
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,116,43,0.4);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-brand:active { transform: translateY(0); }

.btn-brand-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-brand-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: var(--radius);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.btn-brand-outline:hover {
  background-color: var(--orange);
  color: #fff;
  text-decoration: none;
}

.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: var(--radius);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-white-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-marketing {
  background-color: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-marketing .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.navbar-marketing .nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-marketing .nav-brand:hover { color: #fff; }

.navbar-marketing .nav-brand span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-login {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-login:hover { color: #fff; }

.nav-cta {
  background-color: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background-color: #d4661f; color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.mobile-nav {
  display: none;
  background: #111c2c;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.mobile-nav ul li a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  padding: 12px 24px;
  text-decoration: none;
}
.mobile-nav ul li a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-nav .mobile-cta {
  margin: 8px 24px 16px;
  display: block;
  text-align: center;
}

@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-actions { display: none; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--navy);
  padding: 48px 0 32px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}
.footer-brand span { color: var(--orange); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 24px 0;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Section Scaffolding ─────────────────────────────────────── */
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.section-xs   { padding: 48px 0; }

.section-white     { background-color: var(--white); }
.section-cool      { background-color: var(--cool-white); }
.section-navy      { background-color: var(--navy); }
.section-orange    { background: linear-gradient(135deg, #E8742B 0%, #c85e20 100%); }

.section-navy h1, .section-navy h2, .section-navy h3,
.section-navy p, .section-navy .section-label { color: #fff; }

.section-orange h2, .section-orange h3, .section-orange p { color: #fff; }

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.section-navy .section-label { color: var(--teal); }

.divider {
  height: 3px;
  width: 40px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px 0 32px;
}
.divider-center { margin: 14px auto 32px; }
.divider-teal { background: var(--teal); }

/* ── Hero (Home) ─────────────────────────────────────────────── */
.hero-home {
  background-color: var(--navy);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,207,182,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,116,43,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,207,182,0.1);
  border: 1px solid rgba(46,207,182,0.25);
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-home h1 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-home h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 19px;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 44px;
}
.hero-link {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.hero-link:hover {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.6);
}
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  font-family: var(--font-body);
}
.hero-visual-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.hero-stat-number {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
}
.hero-stat-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 20px 0;
}

/* ── Page Hero (interior pages) ─────────────────────────────── */
.hero-page {
  background-color: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46,207,182,0.04));
  pointer-events: none;
}
.hero-page h1 {
  color: #fff;
  font-size: 42px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-page .hero-page-sub {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Social Proof Bar ────────────────────────────────────────── */
.social-proof {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.social-proof-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--cool-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.industry-pill i { color: var(--teal); font-size: 15px; }

/* ── Value Proposition Cards ─────────────────────────────────── */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.value-card-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.icon-teal   { background: rgba(46,207,182,0.1);  color: var(--teal); }
.icon-orange { background: rgba(232,116,43,0.1);   color: var(--orange); }
.icon-navy   { background: rgba(26,35,50,0.07);    color: var(--navy); }

.value-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-card p  { font-size: 16px; color: var(--muted); margin: 0; }

.flow-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.flow-step {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  background: var(--cool-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--charcoal);
}
.flow-arrow { color: var(--muted-light); font-size: 12px; }

/* ── How It Works ─────────────────────────────────────────────── */
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-strong);
  height: 100%;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(232,116,43,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p  { font-size: 15px; color: var(--muted); margin: 0; }
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(46,207,182,0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

/* ── Pricing Teaser ───────────────────────────────────────────── */
.price-big {
  font-family: var(--font-mono);
  font-size: 68px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.price-period {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--muted);
  margin-left: 4px;
  vertical-align: middle;
}
.price-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.price-inclusion-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 100px;
}
.price-inclusion-tag i { color: var(--teal); font-size: 14px; }

/* ── Final CTA ────────────────────────────────────────────────── */
.final-cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* ── Feature Cards (features page) ──────────────────────────── */
.feature-group-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.feature-group-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-strong);
  height: 100%;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Pricing Page ─────────────────────────────────────────────── */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--navy);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-main {
  font-family: var(--font-mono);
  font-size: 60px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.price-mo {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted);
  margin-left: 4px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i {
  color: var(--teal);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Comparison Table */
.compare-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-strong);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
}
.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 20px 20px;
  text-align: center;
  border-bottom: 2px solid var(--border);
  background: var(--cool-white);
  vertical-align: bottom;
}
.compare-table thead th:first-child {
  text-align: left;
  width: 30%;
}
.compare-table thead th .col-price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.compare-table thead .th-gitback {
  background: var(--navy);
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.12);
  position: relative;
}
.compare-table thead .th-gitback::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}
.compare-table tbody td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-family: var(--font-body);
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
}
.compare-table tbody .td-gitback {
  background: rgba(26,35,50,0.03);
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.yes  { color: var(--teal);   font-size: 18px; }
.no   { color: #CBD5E1;        font-size: 18px; }
.partial { color: var(--muted); font-size: 13px; font-weight: 500; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  background-color: var(--white);
  padding: 22px 24px;
}
.accordion-button:not(.collapsed) {
  color: var(--orange);
  background-color: var(--white);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(232,116,43,0.15);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A2332'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8742B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  padding: 0 24px 22px;
}
.accordion-item {
  border: 1px solid var(--border-strong) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 8px;
}

/* ── About / Story ────────────────────────────────────────────── */
.story-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.story-wrap p {
  font-size: 19px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.story-wrap p:last-child { margin-bottom: 0; }
.story-highlight {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 36px 0;
}
.support-email-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cool-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.support-email-block i { color: var(--orange); }

/* ── Contact Form ─────────────────────────────────────────────── */
.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.2px;
}
.form-field {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-field:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,35,50,0.08);
}
.form-field::placeholder { color: var(--muted-light); }
textarea.form-field { resize: vertical; min-height: 140px; }

/* ── Utility ──────────────────────────────────────────────────── */
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted-custom { color: var(--muted); }
.bg-navy     { background-color: var(--navy); }

.gap-mb-24 > * + * { margin-top: 24px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1199px) {
  h1 { font-size: 48px; }
  .hero-home h1 { font-size: 48px; }
  .price-big { font-size: 56px; }
}
@media (max-width: 991px) {
  .section { padding: 72px 0; }
  .hero-home { padding: 88px 0 72px; }
  .hero-home h1 { font-size: 42px; letter-spacing: -1.5px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  .price-card { padding: 36px 28px; }
  .compare-table { font-size: 13px; }
  .compare-table thead th,
  .compare-table tbody td { padding: 12px 12px; }
}
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 44px 0; }
  .hero-home { padding: 72px 0 56px; }
  .hero-home h1 { font-size: 35px; letter-spacing: -1px; }
  .hero-sub { font-size: 17px; }
  h2 { font-size: 27px; }
  .price-main { font-size: 48px; }
  .price-big { font-size: 44px; }
  .price-card { padding: 28px 20px; }
  .value-card { padding: 28px 24px; }
  .story-wrap p { font-size: 17px; }
  .story-highlight { font-size: 19px; }
  .hero-page h1 { font-size: 32px; }
}
@media (max-width: 575px) {
  .industry-pills { justify-content: flex-start; }
  .price-inclusions { flex-direction: column; align-items: flex-start; }
  .hero-home h1 { font-size: 30px; }
}
