/* ============================================================
   MyClickCollect — Shared Stylesheet
   Design: Glassmorphism on dark gradient
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg-from: #0a0f1e;
  --color-bg-mid: #0d1f3c;
  --color-bg-to: #0a1628;

  --color-green: #22c55e;
  --color-green-dim: rgba(34, 197, 94, 0.15);
  --color-green-glow: rgba(34, 197, 94, 0.35);
  --color-blue: #38bdf8;
  --color-purple: #a78bfa;

  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-subtle: #64748b;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(34, 197, 94, 0.5);
  --glass-blur: blur(12px);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.25s ease;

  --nav-height: 72px;

  /* Spacing scale (8pt base) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg-from);
  background-image:
    linear-gradient(135deg, var(--color-bg-from) 0%, var(--color-bg-mid) 50%, var(--color-bg-to) 100%),
    radial-gradient(ellipse 600px 400px at 80% 10%, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

.section {
  padding-block: var(--sp-10);
}

.section--sm {
  padding-block: var(--sp-6);
}

/* ---------- Typography ---------- */
.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-6xl  { font-size: 3.75rem; }

.font-medium  { font-weight: 500; }
.font-semi    { font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-muted   { color: var(--color-text-muted); }
.text-subtle  { color: var(--color-text-subtle); }
.text-green   { color: var(--color-green); }
.text-blue    { color: var(--color-blue); }
.text-purple  { color: var(--color-purple); }

.text-center  { text-align: center; }
.text-left    { text-align: left; }

.leading-tight  { line-height: 1.2; }
.leading-snug   { line-height: 1.35; }
.leading-normal { line-height: 1.6; }

/* ---------- Section Headers ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--sp-6);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-inline: auto;
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.1);
}

.glass-card--highlight {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.06);
}

.glass-card--sm {
  padding: var(--sp-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-green);
  border: 1.5px solid rgba(34, 197, 94, 0.5);
}

.btn-outline:hover {
  background: var(--color-green-dim);
  border-color: var(--color-green);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-blue {
  background: rgba(56, 189, 248, 0.12);
  color: var(--color-blue);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.badge-purple {
  background: rgba(167, 139, 250, 0.12);
  color: var(--color-purple);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
  background: var(--glass-bg-hover);
}

.nav-link.active {
  color: var(--color-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Page Top Offset ---------- */
.page-top {
  padding-top: var(--nav-height);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 60% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  margin-bottom: var(--sp-3);
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--color-text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.stat-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-chip .dot {
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
}

.feature-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
}

.feature-card-icon--green {
  background: rgba(34, 197, 94, 0.12);
}

.feature-card-icon--blue {
  background: rgba(56, 189, 248, 0.12);
}

.feature-card-icon--purple {
  background: rgba(167, 139, 250, 0.12);
}

.feature-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-icon--green svg { stroke: var(--color-green); }
.feature-card-icon--blue  svg { stroke: var(--color-blue); }
.feature-card-icon--purple svg { stroke: var(--color-purple); }

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

.feature-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- Steps / How it Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-3);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-3);
  max-width: 760px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.05);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-1);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.pricing-commitment {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.625rem;
  margin-bottom: var(--sp-3);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-4);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 50% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  position: relative;
}

.cta-banner-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-banner-actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Comparison Table ---------- */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

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

.comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table thead th:first-child {
  width: 35%;
}

.comparison-table thead th.col-mcc {
  color: var(--color-green);
}

.comparison-table tbody td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  color: var(--color-text);
  font-weight: 500;
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
}

.check-yes svg,
.check-no svg,
.check-partial svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-yes svg { stroke: var(--color-green); fill: none; }

.check-no {
  display: inline-flex;
  align-items: center;
  color: #f87171;
}

.check-no svg { stroke: #f87171; fill: none; }

.check-partial {
  display: inline-flex;
  align-items: center;
  color: #fbbf24;
}

.check-partial svg { stroke: #fbbf24; fill: none; }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin-block: var(--sp-2);
}

/* ---------- Tag List ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

.tag {
  font-size: 0.8125rem;
  padding: 0.25rem 0.625rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

/* ---------- Feature List (check items) ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-3);
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.4), transparent);
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-green);
}

.timeline-content {
  padding-bottom: var(--sp-5);
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- Config Param Grid ---------- */
.param-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-2);
}

.param-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
}

.param-name {
  font-size: 0.8125rem;
  font-family: 'Courier New', monospace;
  color: var(--color-green);
  margin-bottom: 4px;
}

.param-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ---------- ROI Card ---------- */
.roi-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.roi-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--glass-border);
  padding-block: var(--sp-8);
  margin-top: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--sp-2);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--color-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--glass-border);
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--sp-10));
  padding-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 70% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
}

@media (max-width: 768px) {
  :root {
    --sp-10: 60px;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile nav drawer */
  .nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--sp-3);
    z-index: 99;
    flex-direction: column;
    gap: 6px;
  }

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

  .nav-mobile .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-mobile .btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--sp-1);
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

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

  .pricing-grid {
    max-width: 100%;
  }

  .cta-banner {
    padding: var(--sp-6) var(--sp-3);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-2);
  }

  .glass-card {
    padding: var(--sp-3);
  }

  .hero-stats {
    flex-direction: column;
  }
}

/* ---------- Utilities ---------- */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1  { gap: var(--sp-1); }
.gap-2  { gap: var(--sp-2); }
.gap-3  { gap: var(--sp-3); }
.gap-4  { gap: var(--sp-4); }
.wrap   { flex-wrap: wrap; }
.w-full { width: 100%; }

.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mx-auto { margin-inline: auto; }

.max-w-xl { max-width: 580px; }
.max-w-2xl { max-width: 700px; }

/* ---------- Lead Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: rgba(13, 31, 60, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-5);
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 197, 94, 0.1);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--glass-bg-hover);
  color: var(--color-text);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--color-green);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-2);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-text-subtle);
}

.form-input:focus {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.04);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.08);
}

.form-input.error {
  border-color: rgba(248, 113, 113, 0.6);
}

.form-error {
  font-size: 0.78rem;
  color: #f87171;
  display: none;
}

.form-error.visible {
  display: block;
}

.modal-success {
  display: none;
  text-align: center;
  padding: var(--sp-4) 0;
}

.modal-success.visible {
  display: block;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
}

.modal-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-green);
  stroke-width: 2.5;
}

.modal-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

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

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: var(--sp-4) var(--sp-3); }
}

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