/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #fffbf5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  color: #1e293b;
}
.section-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow {
  transform: translateX(5px);
}
.btn-primary {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
  background: #ea580c;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}
.btn-orange {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}
.btn-orange:hover {
  background: #ea580c;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}
.btn-teal {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}
.btn-teal:hover {
  background: #0f766e;
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.35);
  transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent;
  color: #0d9488;
  border: 2px solid #0d9488;
}
.btn-outline-teal:hover {
  background: #0d9488;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}
.btn-ghost {
  background: transparent;
  color: #0d9488;
  font-weight: 700;
  padding: 15px 8px;
}
.btn-ghost:hover {
  color: #0f766e;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

/* ============================================================
   NAVBAR — Friendly Style (White/Warm + Teal)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.06);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo: Simple inline text */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d9488;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: #f97316;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #0d9488;
}

/* Agency pills in nav */
.nav-pills {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.nav-pill.pill-fda { background: #fef2f2; color: #dc2626; }
.nav-pill.pill-osha { background: #fefce8; color: #ca8a04; }
.nav-pill.pill-ftc { background: #f0fdf4; color: #16a34a; }
.nav-pill.pill-epa { background: #ecfdf5; color: #059669; }
.nav-pill.pill-cpsc { background: #eff6ff; color: #2563eb; }
.nav-pill.pill-dol { background: #faf5ff; color: #9333ea; }

/* Nav CTA */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 10px 22px !important;
  background: #0d9488;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
}
.nav-cta:hover {
  background: #0f766e !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1e293b;
  border-radius: 2px;
  transition: 0.2s;
}

/* ============================================================
   HERO — Friendly SaaS (Warm White + Teal/Orange)
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fffbf5;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Copy (Left) */
.hero-copy { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #0d9488;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-copy h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1e293b;
  margin-bottom: 24px;
}
.hero-copy h1 .highlight {
  color: #0d9488;
}
.hero-copy .lead {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Agency badges in hero */
.hero-agencies {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-agencies-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}
.agency-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.agency-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 50px;
}
.agency-badge:nth-child(1) { background: #fef2f2; color: #dc2626; }
.agency-badge:nth-child(2) { background: #fefce8; color: #ca8a04; }
.agency-badge:nth-child(3) { background: #f0fdf4; color: #16a34a; }
.agency-badge:nth-child(4) { background: #ecfdf5; color: #059669; }
.agency-badge:nth-child(5) { background: #eff6ff; color: #2563eb; }
.agency-badge:nth-child(6) { background: #faf5ff; color: #9333ea; }

/* Hero Visual (Right) — Checklist Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.card-stack {
  position: relative;
  width: 380px;
}
.checklist-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 3;
}
.checklist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.checklist-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.checklist-date {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}
.checklist-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}
.checklist-heading span { color: #0d9488; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
}
.checklist-item:first-of-type { border-top: none; padding-top: 0; }
.check-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}
.check-circle.done { background: #0d9488; color: #fff; }
.check-circle.pending { background: #fff7ed; border: 2px solid #fed7aa; color: #f97316; font-size: 0.6rem; }
.check-circle.info { background: #f0f9ff; border: 2px solid #bae6fd; color: #0284c7; font-size: 0.6rem; }
.checklist-content { flex: 1; }
.checklist-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}
.checklist-label.done-text {
  color: #94a3b8;
  text-decoration: line-through;
}
.checklist-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}
.checklist-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-left: 4px;
}
.tag-done { background: #f0fdfa; color: #0d9488; }
.tag-action { background: #fff7ed; color: #f97316; }
.tag-info { background: #f0f9ff; color: #0284c7; }

/* Background cards for depth */
.bg-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.bg-card-1 { top: 12px; left: 12px; z-index: 2; opacity: 0.6; }
.bg-card-2 { top: 24px; left: 24px; z-index: 1; opacity: 0.3; }

/* Floating badges */
.float-badge {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}
.float-badge-top { top: -16px; right: -20px; color: #0d9488; }
.float-badge-bottom { bottom: -12px; left: -16px; color: #f97316; animation-delay: 1.5s; }
.float-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.badge-icon.teal { background: #f0fdfa; }
.badge-icon.orange { background: #fff7ed; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: #fafaf9; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}
.problem-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.problem-stat {
  font-size: 44px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}
.problem-stat.red { color: #dc2626; }
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}
.problem-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #0d9488, #99f6e4, #0d9488);
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(13,148,136,0.25);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}
.step p {
  font-size: 16px;
  color: #475569;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SAMPLE BRIEF
   ============================================================ */
.brief-section { background: #fafaf9; }
.brief-card {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
}
.brief-header {
  background: linear-gradient(135deg, #0c1b2a, #1e293b);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brief-header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brief-header-text h4 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.brief-header-text p {
  color: #94a3b8;
  font-size: 14.5px;
  font-weight: 500;
}
.brief-body { padding: 32px; }
.brief-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.brief-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.brief-meta span {
  font-size: 13px;
  font-weight: 600;
}
.brief-meta .agency { color: #64748b; }
.brief-meta .severity {
  color: #f97316;
  background: #fff7ed;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 700;
}
.brief-field { margin-bottom: 18px; }
.brief-field-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0d9488;
  margin-bottom: 6px;
}
.brief-field p {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.7;
}
.brief-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0d9488;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.brief-source:hover { text-decoration: underline; }
.brief-footer {
  background: #f0fdfa;
  border-top: 1px solid #f1f5f9;
  padding: 16px 32px;
  font-size: 14px;
  color: #475569;
  text-align: center;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.industry-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.industry-card:hover {
  border-color: #0d9488;
  box-shadow: 0 8px 24px rgba(13,148,136,0.08);
  transform: translateY(-3px);
}
.industry-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.industry-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.industry-card p {
  font-size: 12px;
  color: #94a3b8;
}

/* ============================================================
   COMPETITIVE POSITIONING
   ============================================================ */
.compare-section { background: #fffbf5; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}
.compare-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.compare-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Center card (LucidX) — highlighted */
.compare-card.compare-lucidx {
  border: 2px solid #0d9488;
  box-shadow: 0 8px 40px rgba(13,148,136,0.12);
  padding-top: 48px;
}
.compare-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tags */
.compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.tag-enterprise { background: #fef2f2; color: #dc2626; }
.tag-lucidx { background: #f0fdfa; color: #0d9488; }
.tag-basic { background: #fefce8; color: #ca8a04; }

/* Price range */
.compare-price-range {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.compare-price-range span {
  font-size: 16px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0;
}
.compare-card.compare-lucidx .compare-price-range {
  color: #0d9488;
}

/* Description */
.compare-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

/* List */
.compare-list {
  margin-bottom: 24px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.5;
}
.compare-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.compare-icon.pro {
  background: #0d9488;
  color: #ffffff;
}
.compare-icon.con {
  background: #fee2e2;
  color: #dc2626;
}

/* Verdict label (for non-LucidX cards) */
.compare-verdict {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  letter-spacing: -0.01em;
}

/* CTA in LucidX card */
.compare-card.compare-lucidx .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Dim the non-LucidX cards slightly */
.compare-card.compare-enterprise,
.compare-card.compare-basic {
  opacity: 0.88;
}
.compare-card.compare-enterprise:hover,
.compare-card.compare-basic:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .compare-grid {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 16px;
  }
  .compare-card { padding: 28px 22px; }
  .compare-price-range { font-size: 28px; }
}
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 20px;
  }
  /* Reorder: LucidX first on mobile */
  .compare-card.compare-lucidx { order: -1; }
  .compare-card { padding: 32px 24px; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: #fafaf9; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 40px 32px;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.price-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.price-card.featured {
  border: 2px solid #0d9488;
  box-shadow: 0 8px 40px rgba(13,148,136,0.12);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-amount .dollar {
  font-size: 20px;
  font-weight: 700;
  color: #64748b;
}
.price-amount .value {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #1e293b;
  line-height: 1;
}
.price-amount .period {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
}
.price-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.6;
}
.price-features { margin-bottom: 32px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.price-features li .check {
  color: #0d9488;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card .btn { width: 100%; text-align: center; justify-content: center; }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.faq-item:first-child { border-top: 1px solid #f1f5f9; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: #0d9488; }
.faq-icon {
  font-size: 24px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(165deg, #0c1b2a 0%, #0f172a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn {
  position: relative;
}

/* ============================================================
   SIGNUP FORM — Premium Card Style
   ============================================================ */
.signup-section { background: #f0fdfa; }
.signup-form-wrap {
  max-width: 560px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}
.signup-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.signup-form .form-group {
  display: flex;
  flex-direction: column;
}
.signup-form .form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1e293b;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.signup-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.signup-form input::placeholder {
  color: #cbd5e1;
  font-weight: 400;
}
.signup-form input:focus,
.signup-form select:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.08);
  background: #ffffff;
}
.signup-form input:hover,
.signup-form select:hover {
  border-color: #cbd5e1;
}
.signup-form input:focus:hover,
.signup-form select:focus:hover {
  border-color: #0d9488;
}

/* Plan radio buttons — styled as selectable pill cards */
.plan-radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.plan-radio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 14px 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-align: center;
  background: #ffffff;
  position: relative;
}
.plan-radio:hover {
  border-color: #cbd5e1;
  background: #fafaf9;
}
.plan-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.plan-radio:has(input:checked) {
  border-color: #0d9488;
  background: #f0fdfa;
  color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.08);
}
.plan-price {
  font-weight: 800;
  font-size: 15px;
  color: #0d9488;
  display: block;
  margin-top: 2px;
}
.plan-radio:not(:has(input:checked)) .plan-price {
  color: #94a3b8;
}

/* Submit button */
.signup-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 17px;
  padding: 16px;
  border-radius: 14px;
}

/* Success state */
.signup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 40px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.signup-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 8px;
}
.signup-success p {
  color: #64748b;
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .signup-form .form-row { grid-template-columns: 1fr; }
  .signup-form-wrap { padding: 28px 24px 24px; }
  .plan-radios { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .plan-radio { padding: 12px 8px; font-size: 13px; }
  .plan-price { font-size: 13px; }
}
@media (max-width: 420px) {
  .plan-radios { grid-template-columns: 1fr; }
  .plan-radio { flex-direction: row; justify-content: center; gap: 8px; padding: 14px; }
  .plan-price { margin-top: 0; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 80px 0;
  background: #f0fdfa;
  text-align: center;
}
.contact-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.contact-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 48px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  min-width: 260px;
}
.contact-card:hover {
  border-color: #0d9488;
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.1);
  transform: translateY(-2px);
}
.contact-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.contact-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-card p {
  color: #64748b;
  font-size: 14px;
}

/* ============================================================
   FOOTER — Dark to Match Nav
   ============================================================ */
.footer {
  background: #0c1b2a;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(197, 165, 90, 0.1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-shield {
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo-primary {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-logo-secondary {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #c5a55a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-tagline {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.footer-links-group {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c5a55a;
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: #64748b;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #94a3b8;
}
.footer-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: #475569;
}

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

/* Hide nav seals on smaller screens */
@media (max-width: 1200px) {
  .nav-pills { display: none; }
}

@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 100%; }
  .hero-copy .lead { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-agencies { justify-content: center; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-visual { order: -1; }
  .card-stack { width: 340px; }
  .float-badge-top { right: -8px; }
  .float-badge-bottom { left: -8px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-links-group { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fffbf5;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #475569; }
  .nav-links a:hover { color: #0d9488; }
  .nav-pills { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 110px 0 60px; }
  .hero-copy h1 { font-size: 2rem; }
  .hero-visual { display: none; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .problem-grid,
  .steps-grid,
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links-group { flex-direction: column; gap: 24px; }
  .footer-top { text-align: center; align-items: center; }
  .footer-brand { text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-col { align-items: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .brief-body { padding: 24px; }
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { padding: 32px 24px; }
  .hero-copy h1 { font-size: 1.75rem; }
  .navbar .container { height: 62px; }
  .nav-links { top: 62px; }
  .footer-links-group { gap: 20px; }
}
