/* ============================================
   BrandMate.ai — Styles
   Matching senni.in brand design system
   Clean, professional, light theme
   ============================================ */

/* Fonts — same as senni */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Nunito+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* Tokens — senni design system */
:root {
  --blue: #2B4ACB;
  --blue-dark: #1E3399;
  --blue-light: #3B82F6;
  --blue-subtle: #EEF2FF;
  --gold: #E8960A;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --navy: #1A1A2E;
  --slate: #3D3D5C;
  --grey: #6B6B8D;
  --light-bg: #FAFAF7;
  --white: #FFFFFF;
  --border: #E8E8E0;
  --red: #EF4444;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --max-w: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
}

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

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--slate);
  max-width: 680px;
  line-height: 1.7;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announcement-bar {
  background: var(--navy);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.announcement-bar a {
  color: var(--gold-light);
  font-weight: 600;
  margin-left: 6px;
}
.announcement-bar a:hover { text-decoration: underline; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: 1px;
}
.nav-logo .dot { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--blue); }
.nav-dropdown { position: relative; cursor: pointer; }
.nav-dropdown::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
}
.dropdown-menu-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--slate);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: var(--blue-subtle);
  color: var(--blue);
}
.nav-dropdown:hover .dropdown-menu { display: block; }

.btn-nav {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(43,74,203,0.3);
}
.btn-nav:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-nav:active,
.btn-nav:focus {
  background: var(--blue-dark);
  color: var(--white);
  outline: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn-mobile-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  padding: 14px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--white) 0%, var(--blue-subtle) 50%, #EEF2FF 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,74,203,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-pretag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,74,203,0.1);
  border: 1px solid rgba(43,74,203,0.15);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 28px;
}
.hero-pretag .flags { font-size: 1rem; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hero h1 .accent {
  color: var(--blue);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 8px;
  background: var(--gold-light);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(43,74,203,0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,74,203,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--slate);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.hero-proof {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 12px;
}
.hero-urgency {
  font-size: 0.85rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================
   STATS / MARKET REALITY
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,74,203,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.stats-section .section-label { color: var(--gold); }
.stats-section .section-headline { color: var(--white); }
.stats-section .section-sub { color: rgba(255,255,255,0.7); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  position: relative;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: rgba(43,74,203,0.4);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.stat-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  font-style: italic;
}
.stats-statement {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}
.stats-statement::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: Georgia, serif;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.problem-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43,74,203,0.08);
}
.problem-icon {
  width: 52px; height: 52px;
  background: rgba(43,74,203,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SOLUTION / FEATURES
   ============================================ */
.solution-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--blue-subtle) 0%, var(--white) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-tile {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
}
.feature-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(43,74,203,0.08);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(43,74,203,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature-tile h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-tile p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}
.step {
  position: relative;
  text-align: center;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(43,74,203,0.25);
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section {
  padding: 80px 0;
  background: var(--white);
}
.tier-block { margin-top: 48px; }
.tier-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.tier-desc {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 20px;
  max-width: 600px;
}
.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.industry-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.industry-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43,74,203,0.08);
}
.industry-card-tag {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.industry-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.55;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.cases-section {
  padding: 80px 0;
  background: var(--blue-subtle);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.case-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(43,74,203,0.08);
  transform: translateY(-4px);
}
.case-label {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.case-stars {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.case-before, .case-after {
  display: flex;
  align-items: center;
  gap: 4px;
}
.case-before { color: var(--grey); }
.case-after { color: var(--blue); font-weight: 600; }
.case-arrow { color: var(--grey); font-size: 1.2rem; }
.case-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.case-card .story {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
}
.case-results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.case-result-tag {
  background: rgba(43,74,203,0.08);
  border: 1px solid rgba(43,74,203,0.15);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
}
.case-quote {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--slate);
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  margin-top: 16px;
  line-height: 1.6;
}
.case-attribution {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 8px;
}

/* ============================================
   REVIEW VELOCITY
   ============================================ */
.velocity-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.velocity-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.velocity-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s;
}
.velocity-col:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.velocity-col h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.velocity-col p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .velocity-cols { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
}
.pricing-card {
  max-width: 520px;
  margin: 40px auto 0;
  background: linear-gradient(180deg, var(--blue-subtle) 0%, var(--white) 100%);
  border: 2px solid var(--blue);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  text-align: left;
}
.pricing-card::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-plan-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-amount span {
  font-size: 1.2rem;
  color: var(--grey);
  font-weight: 500;
}
.pricing-currency {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 6px;
  margin-bottom: 4px;
}
.pricing-billing {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 28px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-comparison {
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
}
.pricing-comparison strong { color: var(--navy); }
.pricing-risk {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--grey);
  font-style: italic;
  padding: 16px;
  background: rgba(43,74,203,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43,74,203,0.1);
}
.pricing-section .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
  padding: 80px 0;
  background: var(--white);
}
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
}
.comparison-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table th:nth-child(2) {
  color: var(--blue);
}
.comparison-table td:nth-child(2) {
  font-weight: 600;
  color: var(--blue);
}
.comparison-table .check { color: var(--blue); }
.comparison-table .cross { color: var(--red); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ============================================
   AUDIT CTA
   ============================================ */
.audit-cta-section {
  padding: 80px 0;
  background: linear-gradient(165deg, var(--blue-subtle) 0%, #EEF2FF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.audit-cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(43,74,203,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.audit-form {
  max-width: 480px;
  margin: 32px auto 0;
  position: relative;
}
.audit-form input,
.audit-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: border-color 0.3s;
  outline: none;
}
.audit-form input:focus,
.audit-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,74,203,0.1);
}
.audit-form input::placeholder { color: var(--grey); }
.audit-form select { cursor: pointer; }
.audit-form select option { background: var(--white); }
.audit-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.audit-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--grey);
}
.audit-trust span::before {
  content: '✓ ';
  color: var(--blue);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--blue); }
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(43,74,203,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; color: var(--white); }
.footer-brand .nav-logo .dot { color: var(--gold); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--blue-light); }
.footer-cities {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-cities strong {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 90;
}
.sticky-mobile-cta .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  .footer { padding-bottom: 80px; }
}

/* ============================================
   INNER PAGES — Shared
   ============================================ */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  background: linear-gradient(165deg, var(--white) 0%, var(--blue-subtle) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,74,203,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--navy);
}
.page-hero .page-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 620px;
  line-height: 1.7;
}

.content-section {
  padding: 60px 0;
  background: var(--light-bg);
}
.content-section:nth-child(even) {
  background: var(--white);
}

.content-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.market-box {
  background: rgba(43,74,203,0.05);
  border: 1px solid rgba(43,74,203,0.12);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 24px;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 24px 0;
}

.bullet-list { margin: 20px 0; }
.bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.numbered-list { margin: 20px 0; counter-reset: item; }
.numbered-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
  counter-increment: item;
}
.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 8px;
}

/* Page-level case study */
.page-case {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
}
.page-case h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.page-case p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ============================================
   PRICING PAGE (full)
   ============================================ */
.pricing-page-section { padding: 80px 0; }
.perspective-table {
  max-width: 600px;
  margin: 32px auto;
  width: 100%;
  border-collapse: collapse;
}
.perspective-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--slate);
}
.perspective-table td:first-child { color: var(--grey); }
.perspective-table td:last-child { color: var(--blue); font-weight: 600; }

/* ============================================
   FREE AUDIT PAGE
   ============================================ */
.audit-page { min-height: 100vh; background: var(--light-bg); }
.audit-page-hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(165deg, var(--white) 0%, var(--blue-subtle) 100%);
}
.audit-page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(43,74,203,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.audit-page-form {
  max-width: 440px;
  margin: 32px auto 0;
  position: relative;
}
.audit-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 640px;
  margin: 32px auto 0;
  text-align: left;
}
.audit-benefit {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate);
}
.audit-benefit .check { color: var(--blue); flex-shrink: 0; }

/* Counter animation */
.count-up {
  display: inline-block;
}
