/* ============================================
   BuildOnAuto.com - Main Stylesheet
   ============================================ */

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

:root {
  --navy:       #0A0F1E;
  --navy2:      #0F1729;
  --navy3:      #1A2340;
  --cyan:       #00D4B4;
  --cyan2:      #00F0CC;
  --cyan-dim:   rgba(0, 212, 180, 0.12);
  --cyan-dim2:  rgba(0, 212, 180, 0.06);
  --off-white:  #F5F4F0;
  --slate:      #8892A4;
  --slate2:     #B4BDC8;
  --white:      #FFFFFF;
  --card:       #111827;
  --border:     rgba(255, 255, 255, 0.07);
  --border2:    rgba(0, 212, 180, 0.2);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --font:       'Plus Jakarta Sans', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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


/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-block;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

p { color: var(--slate2); line-height: 1.7; }

.lead {
  font-size: 1.15rem;
  color: var(--slate2);
  max-width: 600px;
}

.text-cyan   { color: var(--cyan); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-slate  { color: var(--slate); }


/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; margin: 0 auto; max-width: 520px; }

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

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  font-family: var(--font);
  cursor: pointer;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 32px rgba(0, 212, 180, 0.25);
  border: none;
}
.btn-primary:hover {
  background: var(--cyan2);
  transform: translateY(-1px);
  box-shadow: 0 0 48px rgba(0, 212, 180, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }


/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.22s var(--ease);
}
.card:hover {
  border-color: var(--border2);
  background: #141d33;
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--cyan); }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: 14px; }


/* ============================================
   TAGS / BADGES
   ============================================ */

.tag {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
}

.highlight-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cyan-dim);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--cyan);
  font-weight: 600;
}
.highlight-bar svg { width: 20px; height: 20px; flex-shrink: 0; }


/* ============================================
   NAV
   ============================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.22s var(--ease);
}
nav.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 18px; height: 18px; color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate2);
  transition: all 0.22s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.22s var(--ease);
}
.hamburger:hover { background: rgba(255, 255, 255, 0.1); }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 100vw);
  background: var(--navy2);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.mobile-close:hover { background: rgba(255, 255, 255, 0.12); }
.mobile-close svg    { width: 18px; height: 18px; color: var(--white); }

.mobile-nav-links { padding: 16px; flex: 1; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  transition: all 0.22s var(--ease);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--cyan-dim);
  color: var(--cyan);
}
.mobile-nav-link svg { width: 16px; height: 16px; opacity: 0.4; }

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-nav-cta {
  display: block;
  text-align: center;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius);
  transition: all 0.22s var(--ease);
}
.mobile-nav-cta:hover { background: var(--cyan2); }
.mobile-tag {
  font-size: 11px;
  color: var(--slate);
  margin-top: 10px;
  text-align: center;
}


/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1         { margin-bottom: 24px; }
.hero h1 .accent { color: var(--cyan); }
.hero .lead      { margin-bottom: 40px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }

.stat-num   { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: var(--slate); margin-top: 2px; }


/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.trust-items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; flex: 1; }
.trust-item  {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg { width: 16px; height: 16px; color: var(--cyan); }


/* ============================================
   HOW IT WORKS
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  pointer-events: none;
}
.step { text-align: center; padding: 24px 20px; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
}
.step h3 { margin-bottom: 8px; }
.step p  { font-size: 14px; }


/* ============================================
   BONUS GRID
   ============================================ */

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

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.22s var(--ease);
}
.bonus-item:hover { border-color: var(--border2); }
.bonus-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bonus-icon svg  { width: 20px; height: 20px; color: var(--cyan); }
.bonus-title     { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.bonus-desc      { font-size: 13px; color: var(--slate); line-height: 1.5; }


/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 180, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; position: relative; }
.cta-section p  { margin-bottom: 36px; position: relative; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}
.cta-note { font-size: 13px; color: var(--slate); margin-top: 20px; }


/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.22s var(--ease);
}
.faq-item.open { border-color: var(--border2); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  transition: color 0.22s var(--ease);
}
.faq-q:hover { color: var(--cyan); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s var(--ease);
}
.faq-item.open .faq-icon { background: var(--cyan-dim); transform: rotate(180deg); }
.faq-icon svg             { width: 14px; height: 14px; color: var(--slate2); }
.faq-item.open .faq-icon svg { color: var(--cyan); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--slate2);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; }


/* ============================================
   COMPARISON TABLES
   ============================================ */

.comp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}
.comp-table th {
  background: var(--navy3);
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate2);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}
.comp-table th.highlight-col { color: var(--cyan); }
.comp-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--slate2);
}
.comp-table td.feature      { color: var(--white); font-weight: 500; }
.comp-table td.highlight-col {
  background: var(--cyan-dim2);
  font-weight: 600;
  color: var(--white);
}
.comp-table tr:last-child td         { border-bottom: none; }
.comp-table tr:hover td              { background: rgba(255, 255, 255, 0.02); }
.comp-table tr:hover td.highlight-col { background: rgba(0, 212, 180, 0.1); }

.check-yes     { color: #00D4B4; }
.check-no      { color: #ef4444; }
.check-partial { color: #f59e0b; }


/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.22s var(--ease);
}
.pricing-card:hover { border-color: var(--border2); }
.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, #0d1b2e 0%, #0f2040 100%);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-name  { font-size: 13px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--white); }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--slate); }
.pricing-sub   { font-size: 13px; color: var(--slate); margin-top: 4px; }

.pricing-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate2);
}
.pricing-features li svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.pricing-features li.dim { color: var(--slate); opacity: 0.5; }
.pricing-features li.dim svg { color: var(--slate); }

.commission-badge {
  background: var(--cyan-dim);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.commission-badge svg { width: 16px; height: 16px; }


/* ============================================
   ABOUT PAGE
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }

.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-value  { display: flex; align-items: flex-start; gap: 14px; }
.about-value-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-value-icon svg { width: 18px; height: 18px; color: var(--cyan); }

.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.about-stat-num   { font-size: 2rem; font-weight: 800; color: var(--cyan); margin-bottom: 4px; }
.about-stat-label { font-size: 13px; color: var(--slate); }


/* ============================================
   FREE TRIAL PAGE
   ============================================ */

.trial-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 180, 0.08) 0%, transparent 60%);
}
.trial-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.trial-step {
  background: var(--navy3);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.trial-step-num   { font-size: 1.5rem; font-weight: 800; color: var(--cyan); margin-bottom: 8px; }
.trial-step-label { font-size: 13px; color: var(--slate2); line-height: 1.5; }


/* ============================================
   WHAT IS GHL PAGE
   ============================================ */

.page-hero {
  padding-top: 68px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 180, 0.07) 0%, transparent 60%);
}
.page-hero-inner { padding: 80px 0 64px; }

.feature-list { display: flex; flex-direction: column; gap: 64px; }
.feature-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row.reverse         { direction: rtl; }
.feature-row.reverse > *     { direction: ltr; }

.feature-img {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--slate2);
}
.tool-pill svg { width: 14px; height: 14px; color: var(--cyan); }


/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--slate);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link  { font-size: 14px; color: var(--slate); transition: color 0.22s var(--ease); }
.footer-link:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p   { font-size: 13px; color: var(--slate); }
.footer-bottom a   { color: var(--slate2); transition: color 0.22s var(--ease); }
.footer-bottom a:hover { color: var(--cyan); }

.disclosure {
  font-size: 12px;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}


/* ============================================
   RESPONSIVE
   ============================================ */

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

@media (max-width: 900px) {
  .grid-3        { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }
  .about-grid    { grid-template-columns: 1fr; }
  .feature-row   { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .bonus-grid    { grid-template-columns: 1fr; }
}

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

  .grid-3    { grid-template-columns: 1fr; }
  .grid-2    { grid-template-columns: 1fr; }

  .cta-section { padding: 40px 24px; }
  .section     { padding: 64px 0; }

  .trial-steps { grid-template-columns: 1fr; }

  .comp-table { font-size: 12px; }
  .comp-table th,
  .comp-table td { padding: 10px 12px; }

  .steps::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-stats    { gap: 20px; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .about-stat-grid { grid-template-columns: 1fr; }
  .trial-card    { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
