/* ============================================================
   ProvenFlow AI — Website Styles
   Brand: Deep Red (#C41230), White, Dark Navy
   Target: Canadian Dental Clinics
============================================================ */

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

:root {
  --red:       #C41230;
  --red-dark:  #9B0E26;
  --red-light: #E8192E;
  --navy:      #111827;
  --navy-2:    #1F2937;
  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-400:  #9CA3AF;
  --gray-600:  #4B5563;
  --gray-800:  #1F2937;
  --gold:      #D97706;
  --gold-bg:   #FEF3C7;
  --green:     #059669;
  --green-bg:  #D1FAE5;
  --blue:      #1D4ED8;
  --blue-bg:   #DBEAFE;
  --purple:    #7C3AED;
  --purple-bg: #EDE9FE;
  --orange:    #C2410C;
  --orange-bg: #FFEDD5;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--red);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-sm  { font-size: 0.85rem; padding: 8px 18px; }
.btn-xl  { font-size: 1.05rem; padding: 16px 32px; }
.btn-full { width: 100%; }

.btn-red {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,18,48,0.35);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: white; }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: white; }

.btn-white-on-red {
  background: white;
  color: var(--red);
  border-color: white;
}
.btn-white-on-red:hover { background: var(--gray-100); }

.mt-4 { margin-top: 16px; }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0ms);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
}
.brand-tagline-small {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* Phone number in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-phone:hover { color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--navy);
  padding-top: 68px; /* nav height */
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,18,48,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,18,48,0.08) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
}

.hero .container {
  padding-top: 80px;
  padding-bottom: 48px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.eyebrow-flag { font-size: 1rem; }

.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}
.text-red { color: var(--red-light); }
.text-gold { color: var(--gold); }
.text-green { color: #34D399; }
.text-white { color: white; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong { color: white; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-no-template {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* Stats Bar */
.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  gap: 4px;
}
.stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   SECTIONS — general
============================================================ */
.section { padding: 80px 0; }
.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 40px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--red);
  opacity: 0.4;
  vertical-align: middle;
  margin: 0 12px;
}

/* ============================================================
   FEATURES GRID
============================================================ */
.features-section { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  border-radius: var(--radius);
  padding: 28px;
  border-left: 5px solid;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.fc-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.7;
}
.fc-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.fc-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.feature-card--red   { border-color: var(--red);    background: #FFF5F6; }
.feature-card--red   .fc-num   { color: var(--red); }
.feature-card--red   .fc-title { color: var(--red); }

.feature-card--blue  { border-color: var(--blue);   background: #F0F5FF; }
.feature-card--blue  .fc-num   { color: var(--blue); }
.feature-card--blue  .fc-title { color: var(--blue); }

.feature-card--orange { border-color: var(--orange); background: #FFF6EF; }
.feature-card--orange .fc-num   { color: var(--orange); }
.feature-card--orange .fc-title { color: var(--orange); }

.feature-card--purple { border-color: var(--purple); background: #F8F5FF; }
.feature-card--purple .fc-num   { color: var(--purple); }
.feature-card--purple .fc-title { color: var(--purple); }

.feature-card--green { border-color: var(--green);  background: #F0FDF7; }
.feature-card--green .fc-num   { color: var(--green); }
.feature-card--green .fc-title { color: var(--green); }

.feature-card--gold  { border-color: var(--gold);   background: #FFFBEB; }
.feature-card--gold  .fc-num   { color: var(--gold); }
.feature-card--gold  .fc-title { color: #92400E; }

/* ============================================================
   GUARANTEE
============================================================ */
.guarantee-section {
  background: var(--gold-bg);
  padding: 40px 0;
  border-top: 1px solid #FDE68A;
  border-bottom: 1px solid #FDE68A;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 2px solid #FCD34D;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(217,119,6,0.12);
}

.guarantee-icon { flex-shrink: 0; }

.guarantee-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.guarantee-text {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.5;
}
.guarantee-text strong { color: var(--red); }

/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial-section { background: white; }

.testimonial-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: var(--gray-50);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 40px 44px 36px;
  box-shadow: var(--shadow);
}
.quote-icon {
  display: block;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  font-style: normal;
}

/* ============================================================
   5-DAY PROCESS
============================================================ */
.process-section { background: var(--navy); }
.process-section .section-label { color: #9CA3AF; }
.process-section .section-label::before,
.process-section .section-label::after { background: #4B5563; }

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  min-width: 130px;
  transition: border-color 0.2s, background 0.2s;
}
.process-step:hover {
  border-color: var(--red);
  background: rgba(196,18,48,0.08);
}

.process-step--live {
  border-color: var(--red);
  background: rgba(196,18,48,0.12);
}

.step-day {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red-light);
  margin-bottom: 8px;
  background: rgba(196,18,48,0.2);
  border-radius: 50px;
  padding: 3px 10px;
  display: inline-block;
}

.process-step--live .step-day {
  background: var(--red);
  color: white;
}

.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.step-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   PRICING
============================================================ */
.pricing-section { background: var(--gray-50); }

/* Build fee banner */
.build-fee-banner {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.build-fee-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 4px;
}
.build-fee-standard {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.build-fee-standard s { opacity: 0.5; }

.build-fee-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.build-fee-arrow { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.build-fee-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.build-fee-right { text-align: right; }
.build-fee-save {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #34D399;
  margin-bottom: 6px;
}
.build-fee-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: block;
  line-height: 1.5;
}

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.plan-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(196,18,48,0.2);
}
.plan-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-card--green .plan-name  { color: var(--green); }
.plan-card--red .plan-name    { color: var(--red); }
.plan-card--blue .plan-name   { color: var(--blue); }

.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-dollar { font-size: 1.5rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-mo { font-size: 1rem; font-weight: 500; color: var(--gray-400); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 5px;
}

.plan-card--green .plan-features li::before  { color: var(--green); }
.plan-card--red   .plan-features li::before  { color: var(--red); }
.plan-card--blue  .plan-features li::before  { color: var(--blue); }

/* Add-ons */
.addons-section {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
}
.addons-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 20px;
  text-align: center;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-size: 0.88rem;
}
.addon-name { color: var(--gray-600); }
.addon-price { font-weight: 700; color: var(--navy); }

/* ROI box */
.roi-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--green-bg);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.95rem;
  color: #064E3B;
  line-height: 1.6;
}
.roi-icon { flex-shrink: 0; margin-top: 2px; }
.roi-box strong { color: #065F46; }

/* ============================================================
   CUSTOM BUILT SECTION
============================================================ */
.custom-section { background: white; }

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.custom-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.custom-desc {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.7;
}

.custom-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.custom-list svg { flex-shrink: 0; margin-top: 2px; }

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

.custom-stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.csc-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.csc-lbl {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,18,48,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red-light);
  background: rgba(196,18,48,0.15);
  border: 1px solid rgba(196,18,48,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.cta-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-sub strong { color: white; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-serving {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.cta-serving strong { color: rgba(255,255,255,0.75); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #0A0F1A;
  padding-top: 64px;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}
.footer-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links-col .mt-2 { margin-top: 24px; }

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: white; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .custom-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  /* Hero */
  .hero .container { padding-top: 56px; padding-bottom: 40px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; max-width: 320px; }

  /* Stats bar */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 20px 12px;
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+5) { border-bottom: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .process-step { text-align: center; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }

  /* Build fee */
  .build-fee-banner { flex-direction: column; text-align: center; }
  .build-fee-right { text-align: center; }

  /* Custom */
  .custom-stats { grid-template-columns: 1fr 1fr; }

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

  /* Guarantee */
  .guarantee-box { flex-direction: column; text-align: center; }

  /* Testimonial */
  .testimonial-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .custom-stats { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.75rem; }
}
