/* =====================================================
   WebHero — Vercel-inspired redesign
   Orange hero · White content · Clean minimal
   ===================================================== */

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

:root {
  /* Brand */
  --orange:       #0047AB;
  --orange-dark:  #003d91;
  --orange-light: #1a5fc7;
  --orange-faint: #e6eef8;

  /* Neutrals */
  --black:        #111111;
  --gray-900:     #1a1a1a;
  --gray-700:     #444444;
  --gray-500:     #737373;
  --gray-300:     #d4d4d4;
  --gray-100:     #f5f5f5;
  --gray-50:      #fafafa;
  --white:        #ffffff;

  /* Semantic */
  --text-primary:   var(--black);
  --text-secondary: var(--gray-700);
  --text-muted:     var(--gray-500);
  --border:         var(--gray-300);
  --border-light:   #e8e8e8;
  --bg:             var(--white);
  --bg-subtle:      var(--gray-50);
  --bg-card:        var(--white);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & Shape */
  --radius:    8px;
  --radius-lg: 14px;
  --max-w:     1120px;
  --section-v: 96px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Typography --- */
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
p  { color: var(--text-secondary); line-height: 1.7; }

/* =====================================================
   NAV
   ===================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; }

.nav-logo {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}

/* --- Dropdown nav items --- */
.nav-has-dropdown { position: relative; }

.nav-link-top {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.88rem; font-weight: 700;
  color: rgba(0,0,0,0.8);
  background: none;
  border: none;
  font-family: inherit;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link-top:hover,
.nav-has-dropdown:hover .nav-link-top,
.nav-has-dropdown.open .nav-link-top { color: #000; background: rgba(0,0,0,0.06); }

.nav-caret { font-size: 0.65rem; opacity: 0.7; transition: transform var(--transition); }
.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 170px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 200;
}
/* Invisible bridge on the li covers the 8px gap so hover stays active
   as the mouse travels from the button down into the dropdown panel */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 8px;
  background: transparent;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(0,0,0,0.75);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown li a:hover { background: rgba(0,0,0,0.05); color: #000; }

/* Simple (non-dropdown) nav links */
.nav-links > li > a:not(.nav-link-top) {
  display: flex; align-items: center;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(0,0,0,0.8);
  transition: var(--transition);
  text-decoration: none;
}
.nav-links > li > a:not(.nav-link-top):hover { color: #000; background: rgba(0,0,0,0.06); }

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

.btn-nav-ghost {
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.88rem; font-weight: 600;
  color: rgba(0,0,0,0.8);
  border: 1px solid rgba(0,0,0,0.25);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.btn-nav-ghost:hover { background: rgba(0,0,0,0.06); color: #000; }

.btn-nav-primary {
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.88rem; font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-nav-primary:hover { background: var(--orange-dark); box-shadow: 0 2px 8px rgba(0,71,171,0.25); }

/* --- Hamburger button --- */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-mobile-toggle:hover { background: rgba(0,0,0,0.06); }

.hamburger-line {
  display: block;
  width: 20px; height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

/* Animate to X when open */
.nav-mobile-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.nav-mobile-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile drawer --- */
.nav-drawer {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 12px 20px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 1rem; font-weight: 500;
  color: rgba(0,0,0,0.75);
  transition: background var(--transition), color var(--transition);
}
.nav-drawer a:hover { background: rgba(0,0,0,0.05); color: #000; }
.nav-drawer .drawer-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 8px 0;
}
.nav-drawer .drawer-cta {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 6px;
}
.nav-drawer .btn-drawer-ghost {
  display: block; text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  color: rgba(0,0,0,0.8);
  border: 1px solid rgba(0,0,0,0.2);
}
.nav-drawer .btn-drawer-ghost:hover { background: rgba(0,0,0,0.05); color: #000; }
.nav-drawer .btn-drawer-primary {
  display: block; text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  color: #fff;
  background: var(--orange);
}
.nav-drawer .btn-drawer-primary:hover { background: var(--orange-dark); }

/* =====================================================
   HERO  — orange background
   ===================================================== */
.hero {
  background: var(--orange);
  padding: 120px 28px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Works-with bar inside hero */
.hero-works-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.hero-ai-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hero-ai-tag {
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}
.hero-ai-tag.featured {
  background: #fff;
  border-color: #fff;
  color: var(--orange);
}

/* Subtle texture: radial light spot */
.hero::after {
  content: '';
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.15);
  font-size: 0.78rem; font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* --- Domain search form --- */
.domain-search-form {
  display: flex;
  align-items: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto 12px;
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.domain-search-input {
  flex: 1;
  border: none; outline: none;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--black);
  background: transparent;
  min-width: 0;
}
.domain-search-input::placeholder { color: #aaa; }
.domain-search-btn {
  padding: 14px 24px;
  background: var(--orange);
  color: #fff;
  border: none; outline: none;
  font-size: 0.92rem; font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.domain-search-btn:hover { background: var(--orange-dark); }

.domain-search-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.domain-search-hint a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.domain-search-hint a:hover { color: #fff; }

/* --- Download box --- */
.download-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 32px;
  text-align: left;
  backdrop-filter: blur(8px);
  position: relative; z-index: 1;
  max-width: 540px;
  width: 100%;
  transition: background var(--transition), border-color var(--transition);
}
.download-box:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
}
.download-box-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.download-box-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.download-box-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.download-box-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  color: var(--orange);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.download-btn:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .download-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .download-btn { width: 100%; justify-content: center; }
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto 22px;
  color: #fff;
  position: relative; z-index: 1;
}

.hero h1 .underline-white {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255,255,255,0.5);
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 38px;
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 1;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Hero CTAs */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: #fff;
  color: var(--orange);
  border: none; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-hero-primary:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

/* =====================================================
   TRUST BAR  — white bg
   ===================================================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 28px;
  text-align: center;
}

.trust-bar-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.ai-tag {
  padding: 5px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--gray-50);
  transition: var(--transition);
}
.ai-tag:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-faint); }
.ai-tag.featured { border-color: var(--orange); color: var(--orange); background: var(--orange-faint); }

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section {
  padding: var(--section-v) 28px;
}
.section-alt { background: var(--gray-50); }
.section-dark {
  background: var(--black);
  color: #fff;
}
.section-dark p { color: rgba(255,255,255,0.65); }

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

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

/* =====================================================
   PROBLEM SECTION
   ===================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); }

.problem-icon {
  width: 40px; height: 40px;
  background: #fff0eb;
  border: 1px solid #fdd0b8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.problem-card h3 { margin-bottom: 8px; }

.problem-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  padding: 3px 10px;
  background: #fff0eb;
  border: 1px solid #7aaad6;
  border-radius: 5px;
  font-size: 0.75rem; font-weight: 600;
  color: #003d91;
}

.problem-card.span-2 { grid-column: 1 / -1; }
.problem-callout {
  background: var(--orange-faint);
  border: 1px solid #fdd0b8;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.problem-callout blockquote {
  font-size: 1.15rem;
  color: var(--gray-900);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
}
.problem-callout cite {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); transform: translateY(-2px); }

.step-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
  margin-bottom: 18px;
}

.step-card h3 { margin-bottom: 8px; }

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.comparison-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
}

table.compare th, table.compare td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
table.compare th:first-child,
table.compare td:first-child { text-align: left; }
table.compare tbody tr:last-child td { border-bottom: none; }

table.compare thead th {
  background: #0047AB;
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #003d91;
}

table.compare thead th.col-hero {
  background: var(--orange);
  color: #fff;
}

table.compare td.col-hero {
  background: var(--orange-faint);
  font-weight: 600;
}

table.compare tbody tr:hover td { background: var(--gray-50); }
table.compare tbody tr:hover td.col-hero { background: #ffeadb; }

.check  { color: #16a34a; font-weight: 700; }
.cross  { color: #dc2626; font-weight: 700; }
.partial { color: #d97706; font-size: 0.82rem; font-weight: 600; }
table.compare td:first-child { color: var(--text-secondary); font-weight: 500; }

/* =====================================================
   FEATURES GRID
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); transform: translateY(-2px); }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--orange-faint);
  border: 1px solid #fdd0b8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.feature-card h3 { margin-bottom: 6px; font-size: 1rem; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); }

.pricing-card.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
}

.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
  color: #fff; white-space: nowrap;
  letter-spacing: 0.03em;
}

.plan-name {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pricing-card.popular .plan-name { color: var(--orange); }

.price {
  display: flex; align-items: baseline; gap: 3px;
  margin-bottom: 4px;
}
.price .amount { font-size: 2.6rem; font-weight: 800; color: var(--black); line-height: 1; }
.price .per { font-size: 0.88rem; color: var(--text-muted); }
.price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }

.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 7px 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem; color: var(--text-secondary);
}
.plan-features li:first-child { border-top: none; }
.plan-tick { color: #16a34a; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

.btn-plan {
  display: block; width: 100%;
  padding: 11px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; text-align: center;
  transition: var(--transition);
}
.btn-plan-outline {
  border: 1.5px solid var(--border);
  background: transparent; color: var(--black);
}
.btn-plan-outline:hover { border-color: var(--gray-500); background: var(--gray-50); }
.btn-plan-fill {
  border: none;
  background: var(--orange); color: #fff;
}
.btn-plan-fill:hover { background: var(--orange-dark); box-shadow: 0 4px 14px rgba(232,93,4,0.35); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.section-dark .quote-card {
  background: #1e1e1e;
  border-color: #333;
}
.section-dark .quote-card blockquote { color: rgba(255,255,255,0.75); }
.section-dark .quote-card .author { color: #fff; }

.quote-stars { color: var(--orange); font-size: 0.88rem; margin-bottom: 12px; }
.quote-card blockquote { font-size: 0.92rem; font-style: italic; margin-bottom: 16px; }
.quote-card .author { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.quote-card .role { font-size: 0.78rem; color: var(--text-muted); }

/* =====================================================
   CTA SECTION — orange bg
   ===================================================== */
.cta-section {
  background: var(--orange);
  padding: var(--section-v) 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; max-width: 640px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 64px 28px 36px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

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

.footer-tagline {
  font-size: 0.88rem;
  margin-top: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 100px 24px 64px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card.span-2 { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .quotes-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
