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

:root {
  --bg: #fafafa;
  --bg-dark: #f0f0f0;
  --text: #1a1a1a;
  --text-muted: #666;
  --accent: #0a0a0a;
  --accent-light: #333;
  --green: #00c853;
  --green-soft: #e8f8ef;
  --border: #e0e0e0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,250,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--green);
}

/* ===== Association Pricing ===== */
.association-pricing {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.assoc-heading {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.assoc-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(135deg, var(--green), #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.proof-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-dark);
}

/* ── CLIENT LOGOS ── */
.clients-section {
  padding: 36px 0;
  background: #f8fafc;
  border-top: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 24px;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.clients-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}
.clients-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}
.clients-pilot-tag {
  color: #f97316 !important;
  background: #fff7ed !important;
  border-color: #fed7aa !important;
}
.clients-pilot-tag span {
  background: #f97316 !important;
}
.clients-live-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.clients-live-tag span {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== Problem ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Testimonial ===== */
.testimonial-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  padding: 40px 0;
}
.testimonial-block-alt {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.quote-mark {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--green);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  blockquote {
    font-size: 0.97rem;
    line-height: 1.65;
  }
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Case Study ===== */
.cs-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.cs-arrow {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 900;
  text-align: center;
  padding: 0 8px;
}

.cs-panel {
  padding: 28px;
  border-radius: 16px;
}

.cs-before {
  background: #1e0a0a;
  border: 1.5px solid #7f1d1d;
}

.cs-after {
  background: #052e16;
  border: 1.5px solid #166534;
}

.cs-panel-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cs-before .cs-panel-label { color: #f87171; }
.cs-after  .cs-panel-label { color: #4ade80; }

.cs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-list li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cs-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.cs-list-before li {
  color: #fca5a5;
}

.cs-list-before li::before {
  background-color: #7f1d1d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 2l8 8M10 2l-8 8' stroke='%23f87171' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.cs-list-after li {
  color: #86efac;
}

.cs-list-after li::before {
  background-color: #14532d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 6l3.5 3.5 5.5-7' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cs-automations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: auto-counter;
}

.cs-built-header {
  text-align: center;
  margin: 52px 0 24px;
}

.cs-auto-card {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid #10b981;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-increment: auto-counter;
  position: relative;
}

.cs-auto-card::before {
  content: '0' counter(auto-counter);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 1px;
}

.cs-auto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
  border-left-color: #4ade80;
}

.cs-auto-name {
  font-size: 17px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cs-auto-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.cs-auto-tag {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 5px 10px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .cs-automations {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .cs-before-after {
    grid-template-columns: 1fr;
  }
  .cs-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
  .cs-automations {
    grid-template-columns: 1fr;
  }
}

/* ===== Billing Toggle ===== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.billing-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.billing-label.billing-active {
  color: var(--text);
  font-weight: 700;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  padding: 0;
}

.toggle-switch.active {
  background: var(--green);
}

.toggle-knob {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(24px);
}

.save-badge {
  display: inline-block;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-yearly-note {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== Built For / Verticals ===== */
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vertical-card { background: #f7f8fa; border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 12px; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.vertical-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.vertical-live { background: #0f172a; border: 1px solid rgba(255,255,255,0.08); }
.vertical-live h3 { color: #fff; }
.vertical-live p { color: rgba(255,255,255,0.55); }
.vertical-live-badge { position: absolute; top: 20px; right: 20px; background: #10b981; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.vertical-cta { background: var(--primary); border: none; }
.vertical-cta h3, .vertical-cta p { color: #fff; }
.vertical-cta p { color: rgba(255,255,255,0.8); }
.vertical-icon { font-size: 22px; color: var(--primary); margin-bottom: 4px; }
.vertical-live .vertical-icon { color: #10b981; }
.vertical-cta .vertical-icon { color: rgba(255,255,255,0.6); font-size: 28px; }
.vertical-card h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin: 0; }
.vertical-card p { font-size: 14px; color: #64748b; line-height: 1.7; flex: 1; margin: 0; }
.vertical-example { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: rgba(0,0,0,0.04); border-radius: 10px; margin-top: 4px; }
.vertical-live .vertical-example { background: rgba(255,255,255,0.07); }
.vertical-club { font-size: 12px; font-weight: 700; color: #0f172a; }
.vertical-live .vertical-club { color: #fff; }
.vertical-stat { font-size: 12px; font-weight: 700; color: var(--primary); }
.vertical-live .vertical-stat { color: #10b981; }
.vertical-link { display: inline-block; margin-top: 4px; font-size: 13px; font-weight: 700; color: var(--accent); text-decoration: none; letter-spacing: 0.01em; }
.vertical-link:hover { text-decoration: underline; }

@media (max-width: 900px) { .verticals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .verticals-grid { grid-template-columns: 1fr; } }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  text-align: center;
}

.pricing-featured {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-badge-green {
  background: var(--green);
  color: #000;
}

.pricing-card-custom {
  border-style: dashed;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-setup {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.price-monthly {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-for {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-saves {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}

.pricing-card .btn {
  width: 100%;
}

/* What's included drawer */
.included-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.included-toggle:hover { opacity: 0.75; }
.included-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}
.included-toggle[aria-expanded="true"] .included-arrow {
  transform: rotate(180deg);
}
.included-drawer {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
  margin-bottom: 16px;
}
.included-drawer.open {
  display: block;
}
.included-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.45;
}
.included-item:last-child { border-bottom: none; }
.included-item strong { color: var(--text); }

/* ===== Comparison ===== */
/* Mobile comparison cards — hidden by default, shown on mobile */
.comparison-mobile {
  display: none;
  margin-top: 32px;
  flex-direction: column;
  gap: 16px;
}
.comp-mobile-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.comp-check {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-mobile-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.comp-mobile-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.comparison-table {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.compare-highlight {
  background: var(--green-soft);
  font-weight: 600;
}

/* ===== Trust ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.trust-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.section-cta {
  text-align: center;
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
}

.section-cta h2 {
  color: #fff;
  max-width: none;
}

.section-cta .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta .btn-primary {
  background: var(--green);
  color: #000;
  font-weight: 700;
}

.section-cta .btn-primary:hover {
  background: #00e676;
}

.contact-alt {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.contact-alt a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form {
  width: 100%;
  max-width: 500px;
  margin: 32px auto 0;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.contact-form-row input {
  margin-bottom: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.1);
}

.contact-form textarea {
  resize: none;
  height: 96px;
}

.contact-form .btn-primary {
  display: block;
  width: 100%;
  margin-top: 4px;
}

.cf-feedback {
  font-size: 0.9rem;
  min-height: 22px;
  text-align: center;
  margin-top: 10px;
}

.cf-feedback.success { color: var(--green); }
.cf-feedback.error   { color: #f87171; }

@media (max-width: 520px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-location {
  font-size: 0.8rem !important;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .proof-divider {
    display: none;
  }

  .comparison-mobile {
    display: flex;
  }

  .comparison-desktop {
    display: none;
  }

  .hero-proof {
    gap: 24px;
  }

  .section {
    padding: 60px 0;
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }
}

/* ===== Hero Mockup ===== */
.hero-mockup {
  max-width: 580px;
  margin: 48px auto 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  text-align: left;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.mockup-body {
  padding: 8px 0;
}

.mockup-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
}

.mockup-row-last {
  border-bottom: none;
}

.mockup-icon-wrap {
  font-size: 1.1rem;
  width: 28px;
  flex-shrink: 0;
  padding-top: 1px;
}

.mockup-content {
  flex: 1;
}

.mockup-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mockup-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
}

.mockup-chip {
  display: inline-block;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
}

.mockup-chip-warn {
  background: #fff4e0;
  color: #b25e00;
}

.mockup-footer {
  padding: 10px 20px;
  font-size: 0.72rem;
  color: #bbb;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

/* ===== Early Adopter Banner ===== */
.early-adopter-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #e8f8ef, #d4f5e3);
  border: 1px solid #b2e8c8;
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 32px;
}

.early-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.early-adopter-banner strong {
  display: block;
  font-size: 0.95rem;
  color: #0d5c2a;
  margin-bottom: 2px;
}

.early-adopter-banner span {
  font-size: 0.85rem;
  color: #1a7a3a;
}

/* ===== Pricing — Setup Strike ===== */
.setup-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-setup-strike {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.free-until {
  display: inline-block;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #b2e8c8;
}

/* ===== Testimonial Live Badge ===== */
.testimonial-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  border: 1px solid #b2e8c8;
  color: #0d7a36;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

/* ===== 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);
}

/* ===== Dashboard Add-on ===== */
.addon-dashboard {
  margin-top: 40px;
  background: rgba(16,185,129,0.06);
  border: 1.5px solid rgba(16,185,129,0.2);
  border-radius: 20px;
  padding: 32px;
}

.addon-dashboard-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.addon-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #10b981;
  margin-bottom: 6px;
}

.addon-title {
  font-size: 22px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.addon-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.addon-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.addon-price {
  font-size: 28px;
  font-weight: 900;
  color: #f1f5f9;
  white-space: nowrap;
}

.addon-price span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

/* ===== Add-on Note ===== */
.addon-note {
  margin-top: 32px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.addon-note strong {
  color: var(--text);
}

.addon-note a {
  color: var(--green);
  font-weight: 600;
}

/* ===== Onboarding Steps (CTA) ===== */
.onboarding-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 40px;
  flex-wrap: wrap;
}

.onboarding-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  min-width: 200px;
}

.onboarding-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.onboarding-step div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.onboarding-step strong {
  font-size: 0.95rem;
  color: #fff;
}

.onboarding-step span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.onboarding-arrow {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .onboarding-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .onboarding-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}

/* ===== Floating CTA ===== */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 99;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}

.float-cta-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-cta:hover {
  background: var(--green);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,200,83,0.25);
}

@media (max-width: 768px) {
  .float-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
  .mockup-chrome { display: none; }
  .hero-mockup { border-radius: 12px; }
}

/* ===== Small phones (Android 360px and below) ===== */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    padding: 100px 0 48px;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 1rem;
    padding: 0 4px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .mockup-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .mockup-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .mockup-chip {
    margin-top: 4px;
    display: inline-block;
  }

  .section-sub {
    font-size: 0.95rem;
  }

  .early-adopter-banner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .founder-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-photo {
    width: 160px;
    height: 160px;
  }
}

/* =====================
   Spots Remaining
   ===================== */
.spots-remaining {
  color: #f97316;
  font-weight: 700;
}

/* =====================
   Founder Section
   ===================== */
.founder-section {
  background: var(--bg);
}

.founder-inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.founder-photo-wrap {
  flex-shrink: 0;
}

.founder-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.founder-text h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.founder-text p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.founder-sig {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.25rem;
  letter-spacing: 0.01em;
}



/* Case study stats row */
.cs-stats-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 0 3rem;
  flex-wrap: wrap;
}
.cs-stat-box {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 130px;
  flex: 1;
  max-width: 180px;
}
.cs-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.cs-stat-lab {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--accent);
  color: #fff;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 160px;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #fff;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stat-divider { display: none; }
  .stats-strip-inner { gap: 20px; }
  .stat-block { min-width: 140px; flex: 1 1 calc(50% - 20px); }
  .stat-num { font-size: 2rem; }
}

/* ===== Timeline Strip ===== */
.timeline-strip {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-align: center;
}

.timeline-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 1;
  position: relative;
}

.tl-day {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-dot-active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.12);
}

.tl-dot-green {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.15);
}

.tl-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
}

.tl-line {
  height: 2px;
  background: var(--border);
  flex: 1;
  margin-top: 33px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 320px;
  }
  .tl-line {
    width: 2px;
    height: 32px;
    margin-top: 0;
    margin-left: 6px;
  }
  .timeline-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .tl-day { min-width: 44px; padding-top: 0; }
  .tl-text { max-width: 100%; }
}

/* Hero mockup row fade-in animation */
.mockup-row {
  opacity: 0;
  transform: translateY(6px);
  animation: mockupRow 0.5s ease forwards;
}
.mockup-row:nth-child(1) { animation-delay: 0.3s; }
.mockup-row:nth-child(2) { animation-delay: 0.7s; }
.mockup-row:nth-child(3) { animation-delay: 1.1s; }
@keyframes mockupRow {
  to { opacity: 1; transform: translateY(0); }
}
