﻿/* ============================================================
   EASYSELECT � PREMIUM SAAS LANDING PAGE
   Redesigned: Linear/Vercel/Framer inspired
   ============================================================ */

/* === 1. CSS VARIABLES === */
:root {
  /* Core Colors */
  --clr-bg:            #060608;
  --clr-bg-2:          #0C0C12;
  --clr-bg-card:       #0F0F17;
  --clr-bg-card-hover: #141420;
  --clr-bg-input:      #0D0D14;

  --clr-border:        rgba(255,255,255,0.06);
  --clr-border-mid:    rgba(255,255,255,0.1);
  --clr-border-strong: rgba(255,255,255,0.15);

  --clr-text:          #FFFFFF;
  --clr-text-secondary:#A0A0B8;
  --clr-text-muted:    #6B6B80;

  /* Brand */
  --clr-indigo:        #6366F1;
  --clr-indigo-dim:    rgba(99,102,241,0.15);
  --clr-indigo-glow:   rgba(99,102,241,0.25);

  --clr-amber:         #F5A623;
  --clr-amber-dim:     rgba(245,166,35,0.12);
  --clr-amber-hover:   #E8960F;

  --clr-green:         #22C55E;
  --clr-red:           #EF4444;

  /* Gradients */
  --grad-text:   linear-gradient(90deg, #A5B4FC 0%, #F5A623 100%);
  --grad-indigo: linear-gradient(135deg, #6366F1, #8B5CF6);
  --grad-mesh:   
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(99,102,241,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(139,92,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 60% 80%, rgba(99,102,241,0.06) 0%, transparent 50%);

  /* Typography */
  --font-heading: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Grotesk', monospace;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.6);
  --shadow-card:  0 0 0 1px var(--clr-border), 0 4px 24px rgba(0,0,0,0.4);
  --shadow-indigo: 0 0 32px rgba(99,102,241,0.2);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.12s var(--ease);
  --t-base: 0.2s var(--ease);
  --t-slow: 0.35s var(--ease);

  /* Layout */
  --max-w: 1160px;
  --nav-h: 64px;
}

/* === 2. RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Noise texture for depth */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

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

/* === 3. LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section {
  padding: var(--space-24) 0;
  position: relative;
}

/* === 4. TYPOGRAPHY SYSTEM === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-indigo);
  margin-bottom: var(--space-4);
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--clr-indigo);
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--clr-text);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: 1rem;
  color: var(--clr-text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: var(--space-16);
}

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

.section-header.centered .section-sub {
  margin: 0 auto;
}

.section-header.centered .eyebrow {
  justify-content: center;
}

.section-header.centered .eyebrow::before { display: none; }

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === 5. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* Primary � solid amber, clean */
.btn-primary {
  background: var(--clr-amber);
  color: #0A0805;
  font-weight: 700;
  border-color: var(--clr-amber);
  box-shadow: 0 1px 3px rgba(245,166,35,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  background: var(--clr-amber-hover);
  border-color: var(--clr-amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:active { transform: translateY(0); }

/* Secondary � outline, subtle */
.btn-outline {
  background: rgba(255,255,255,0.04);
  border-color: var(--clr-border-mid);
  color: var(--clr-text-secondary);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--clr-border-strong);
  color: var(--clr-text);
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  color: var(--clr-text-muted);
  border-color: transparent;
  background: transparent;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}

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

/* Sizes */
.btn-sm  { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg  { padding: 0.85rem 1.75rem; font-size: 0.9375rem; }
.btn-xl  { padding: 1rem 2rem; font-size: 1rem; }

/* === 6. CARD === */
.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}

.card:hover {
  border-color: var(--clr-border-mid);
  background: var(--clr-bg-card-hover);
}

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

/* === 7. PARTICLES (subtle) === */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(99,102,241,0.4);
  animation: particle-rise linear infinite;
}

@keyframes particle-rise {
  0%   { transform: translateY(105vh) scale(0); opacity: 0; }
  5%   { opacity: 0.6; }
  95%  { opacity: 0.1; }
  100% { transform: translateY(-5vh) scale(1.2); opacity: 0; }
}

/* === 8. NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t-slow), border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 8, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--clr-border);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

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

.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--grad-indigo);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 16px;
  height: 16px;
  color: white;
  stroke-width: 2;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--clr-text);
}

.logo-accent { color: var(--clr-amber); }

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
  padding: var(--space-1) 0;
}

.nav-link:hover { color: var(--clr-text); }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--clr-text-secondary);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(6, 6, 8, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-6) var(--space-8) var(--space-8);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  pointer-events: none;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--t-fast);
}

.mobile-nav-link:hover { color: var(--clr-text); }

.mobile-cta {
  margin-top: var(--space-4);
  display: block;
  text-align: center;
  border: none;
  border-radius: var(--r-full);
}

/* === 9. HERO === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + var(--space-16));
  padding-bottom: var(--space-24);
  overflow: hidden;
  z-index: 1;
}

/* Mesh gradient background */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: 0;
}

/* Top border glow line */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
}

/* Hero Left */
.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--clr-indigo-dim);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--r-full);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: #A5B4FC;
  margin-bottom: var(--space-8);
  width: fit-content;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.015em;
  color: var(--clr-text);
  margin-bottom: var(--space-6);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-10);
}

.hero-sub strong {
  color: var(--clr-text);
  font-weight: 500;
}


/* Hero Feature Highlights */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.hero-feat-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.hero-feat-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-indigo-dim);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-feat-icon svg {
  width: 16px;
  height: 16px;
  color: var(--clr-indigo);
  stroke-width: 2;
}

.hero-feat-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 2px;
  letter-spacing: 0.005em;
}

.hero-feat-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

/* Mini Testimonial */
.hero-mini-testimonial {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
}

.mini-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.mini-quote {
  font-size: 0.8rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-1);
  font-style: italic;
}

.mini-name {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* Hero Right � Signup Card */
.hero-form-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}

/* Glow behind the card */
.hero-form-wrap::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-signup-card {
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-mid);
  border-radius: var(--r-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
}

.signup-card-header {
  margin-bottom: var(--space-8);
}

.signup-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-indigo-dim);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.signup-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-indigo);
  stroke-width: 1.75;
}

.signup-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}

.signup-card-sub {
  font-size: 0.8375rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* Form */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  letter-spacing: 0.01em;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap > svg:first-child {
  position: absolute;
  left: 12px;
  width: 15px;
  height: 15px;
  color: var(--clr-text-muted);
  stroke-width: 2;
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.form-input {
  width: 100%;
  background: var(--clr-bg-input);
  border: 1px solid var(--clr-border-mid);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

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

.form-input:focus {
  border-color: var(--clr-indigo);
  background: rgba(99,102,241,0.04);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.form-input.input-error {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.toggle-password {
  position: absolute;
  right: 10px;
  display: flex;
  padding: 4px;
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
  cursor: pointer;
}

.toggle-password:hover { color: var(--clr-text-secondary); }
.toggle-password svg { width: 15px; height: 15px; stroke-width: 2; }

.form-message {
  padding: 0.6rem 0.875rem;
  border-radius: var(--r-md);
  font-size: 0.825rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.5;
}

.form-message.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #FCA5A5;
}

.form-message.success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #86EFAC;
}

.signup-submit-btn {
  width: 100%;
  padding: 0.75rem;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: var(--space-1);
  border-radius: var(--r-lg);
}

.btn-loader svg {
  width: 14px;
  height: 14px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.signup-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.signup-divider::before, .signup-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

.signup-divider span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.signup-demo-btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--r-lg);
}

.signup-terms {
  margin-top: var(--space-4);
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.6;
}

.signup-terms a {
  color: var(--clr-text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.signup-terms a:hover { color: var(--clr-text); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-text-muted);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(6px); }
}

/* === 10. SECTION DIVIDERS / SEPARATORS === */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border-mid), transparent);
  margin: 0 var(--space-8);
}

/* === 11. PAIN POINTS === */
.pain-section {
  background: linear-gradient(180deg, transparent, rgba(99,102,241,0.03), transparent);
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.pain-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.2), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.pain-card:hover {
  border-color: var(--clr-border-mid);
  transform: translateY(-2px);
}

.pain-card:hover::before { opacity: 1; }

.pain-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.pain-icon-1 { background: rgba(245,166,35,0.1); color: var(--clr-amber); }
.pain-icon-2 { background: rgba(239,68,68,0.1); color: var(--clr-red); }
.pain-icon-3 { background: rgba(245,166,35,0.1); color: var(--clr-amber); }

.pain-card-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }

.pain-card-content h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  color: var(--clr-text);
}

.pain-card-content p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.pain-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--clr-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-full);
}

/* Divider */
.pain-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border-mid), transparent);
}

.divider-text {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
}

/* Solution block */
.solution-block {
  background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(139,92,246,0.04));
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--r-2xl);
  padding: var(--space-12) var(--space-16);
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.solution-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-indigo);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-indigo);
}

.solution-icon svg { width: 24px; height: 24px; color: white; stroke-width: 2; }

.solution-block h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

.solution-list {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  text-align: left;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
}

.solution-list li svg { width: 15px; height: 15px; color: var(--clr-green); stroke-width: 2.5; flex-shrink: 0; }

/* === 12. HOW IT WORKS === */
.steps-section {}

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition: border-color var(--t-base), background var(--t-base);
  first-child: border-radius var(--r-xl) 0 0 var(--r-xl);
}

.step-card:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.step-card:last-child  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }

/* Remove double borders between cards */
.step-card + .step-card { border-left: none; }

.step-card:hover {
  border-color: var(--clr-border-mid);
  background: var(--clr-bg-card-hover);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-5);
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-indigo-dim);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.step-icon svg { width: 20px; height: 20px; color: var(--clr-indigo); stroke-width: 1.75; }

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  color: var(--clr-text);
}

.step-card p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.step-connector { display: none; }

.steps-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* === 13. FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.feature-card {
  background: var(--clr-bg-card);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: background var(--t-base);
  position: relative;
}

.feature-card:hover {
  background: var(--clr-bg-card-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-1 { background: rgba(245,166,35,0.1); color: var(--clr-amber); }
.feat-2 { background: var(--clr-indigo-dim); color: var(--clr-indigo); }
.feat-3 { background: rgba(34,197,94,0.1); color: var(--clr-green); }
.feat-4 { background: rgba(245,166,35,0.1); color: var(--clr-amber); }
.feat-5 { background: var(--clr-indigo-dim); color: var(--clr-indigo); }
.feat-6 { background: rgba(239,68,68,0.08); color: #FC8080; }

.feature-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}

.feature-card p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  flex: 1;
}

/* === 15. SOCIAL PROOF / TESTIMONIALS === */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--space-12);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--clr-border);
}

.stat-divider { display: none; }

.stat-number {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--clr-amber);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.testimonial-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: border-color var(--t-base), transform var(--t-base);
}

.testimonial-card:hover {
  border-color: var(--clr-border-mid);
  transform: translateY(-2px);
}

.stars {
  color: var(--clr-amber);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.av2 { background: linear-gradient(135deg, #F472B6, #FB923C); }
.av3 { background: linear-gradient(135deg, #34D399, #06B6D4); }

.testimonial-author strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
}

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

.verified-badge {
  margin-left: auto;
  color: var(--clr-indigo);
  flex-shrink: 0;
}

.verified-badge svg { width: 16px; height: 16px; stroke-width: 2; }

/* === 16. PRICING === */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--clr-border-mid);
  border-radius: var(--r-full);
  position: relative;
  cursor: pointer;
  transition: background var(--t-base);
  border: 1px solid var(--clr-border-mid);
}

.toggle-switch[aria-checked="true"] { background: var(--clr-indigo); border-color: var(--clr-indigo); }

.toggle-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform var(--t-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.toggle-switch[aria-checked="true"] .toggle-knob { transform: translateX(20px); }

.save-badge {
  background: rgba(34,197,94,0.1);
  color: var(--clr-green);
  padding: 0.15rem 0.45rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: start;
  margin-bottom: var(--space-8);
}

.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base);
}

.pricing-card:hover {
  border-color: var(--clr-border-mid);
  transform: translateY(-2px);
}

.pricing-card-popular {
  background: linear-gradient(160deg, rgba(99,102,241,0.06), var(--clr-bg-card));
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-6px);
}

.pricing-card-popular:hover {
  border-color: rgba(99,102,241,0.45);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-indigo);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.plan-header {}

.plan-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-3);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: var(--space-2);
}

.price-amount {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--clr-text);
  line-height: 1;
}

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

.plan-tagline {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
}

.plan-features li svg { width: 14px; height: 14px; stroke-width: 2.5; flex-shrink: 0; }
.plan-features li:not(.feature-disabled) svg { color: var(--clr-green); }
.feature-disabled { opacity: 0.35; }
.feature-disabled svg { color: var(--clr-text-muted) !important; }

.plan-btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem;
  border-radius: var(--r-lg);
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* === 17. FAQ === */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
  transition: border-color var(--t-fast);
}

.faq-item:first-child { border-top: 1px solid var(--clr-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  text-align: left;
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--clr-text); }
.faq-question[aria-expanded="true"] { color: var(--clr-text); }

.faq-question svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  flex-shrink: 0;
  color: var(--clr-text-muted);
  transition: transform var(--t-base);
}

.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--clr-indigo); }

.faq-answer {
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* === 18. FINAL CTA === */
.final-cta-section {}

.final-cta-inner {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.05));
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--r-2xl);
  padding: var(--space-24) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
}

.final-cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.85vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  position: relative;
}

.final-cta-sub {
  font-size: 1rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-10);
  position: relative;
}

.final-cta-note {
  margin-top: var(--space-4);
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  position: relative;
}

/* === 19. FOOTER === */
.footer {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-16);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: start;
  padding-bottom: var(--space-16);
}

.footer-brand { max-width: 260px; }
.footer-logo  { margin-bottom: var(--space-3); }

.footer-tagline {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: var(--space-12);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }

.footer-col a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
}

.footer-col a:hover { color: var(--clr-text-secondary); }

/* Social links with icon */
.footer-social-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-5) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom p { font-size: 0.78rem; color: var(--clr-text-muted); }
.footer-sub { color: var(--clr-text-muted) !important; }

/* === 20. FLOATING ELEMENTS === */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-3) 0;
  z-index: 900;
  display: none;
}

.mobile-sticky-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem;
  font-size: 0.9375rem;
  border-radius: var(--r-lg);
  box-sizing: border-box;
}

.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 900;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

.whatsapp-float svg { width: 24px; height: 24px; color: white; }

/* === 21. ANIMATIONS === */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in-up.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

[style*="--delay"] { transition-delay: var(--delay, 0s) !important; }

/* === 22. RESPONSIVE � TABLET (960px) === */
@media (max-width: 960px) {
  /* Navbar ? hamburger only */
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .hamburger  { display: flex; }

  /* Hero ? keep 2 columns, tighten */
  .hero-inner {
    grid-template-columns: 1fr 340px;
    gap: var(--space-8);
  }
  .hero-form-wrap::before { display: none; }
  .hero-signup-card { width: 100%; max-width: 100%; }

  /* Pain cards ? 3 cols */
  .pain-cards-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
  .pain-card { padding: var(--space-5); }

  /* Steps ? keep side by side row */
  .steps-grid { flex-direction: row; }
  .step-card:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
  .step-card:last-child  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
  .step-card + .step-card { border-top: none; }
  .step-card { padding: var(--space-6) var(--space-4); }

  /* Features ? 3 cols */
  .features-grid { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials ? 3 cols */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
  .testimonial-card { padding: var(--space-5); }

  /* Pricing ? 3 cols */
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); max-width: 100%; }
  .pricing-card-popular { transform: none; }
  .pricing-card { padding: var(--space-6) var(--space-4); }

  /* Stats */
  .stats-bar { flex-wrap: nowrap; }
  .stat-item { flex: 1; }
  .stat-item::before { display: none !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr auto; gap: var(--space-8); }
  .footer-links { display: flex; gap: var(--space-8); }

  /* Mobile sticky CTA */
  .mobile-sticky-cta { display: block; }
  .whatsapp-float { bottom: 76px; }

  .solution-block { padding: var(--space-8) var(--space-6); }
}

/* === RESPONSIVE � MOBILE (600px) === */
@media (max-width: 600px) {
  :root {
    --space-24: 4rem;
    --space-16: 3rem;
  }

  .container { padding: 0 var(--space-5); }
  .section { padding: var(--space-16) 0; }

  .hero-section {
    padding-top: calc(var(--nav-h) + var(--space-8));
    padding-bottom: var(--space-12);
    min-height: auto;
  }

  .hero-heading { font-size: 1.75rem; letter-spacing: 0.01em; }
  .hero-sub { font-size: 0.9375rem; }


  .hero-signup-card { padding: var(--space-6); max-width: 100%; }
  .signup-card-title { font-size: 1.125rem; }

  .section-title { font-size: 1.35rem; }

  .features-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }

  .step-card { padding: var(--space-6) var(--space-5); }

  /* Stats � 2x2 grid on mobile */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-lg);
  }
  .stat-item { flex: unset; }
  .stat-item + .stat-item::before { display: none; }
  /* Add bottom border for top row */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--clr-border);
  }
  /* Add right border for left column */
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--clr-border);
  }

  .stat-number { font-size: 1.5rem; font-weight: 700; }

  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: var(--space-6) var(--space-5); }
  .price-amount { font-size: 2rem; font-weight: 700; }

  .final-cta-inner { padding: var(--space-16) var(--space-5); border-radius: var(--r-xl); }
  .final-cta-heading { font-size: 1.5rem; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: var(--space-8); }
  .footer-logo { font-size: 1.25rem; font-weight: 800; }

  .whatsapp-float { width: 44px; height: 44px; right: var(--space-4); }
  .whatsapp-float svg { width: 22px; height: 22px; }

  .solution-block { padding: var(--space-8) var(--space-5); }
  .solution-list { width: 100%; }


  /* Override tablet rules that bleed into mobile */
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-content { order: 1; }
  .hero-form-wrap { order: 2; }
  .hero-signup-card { max-width: 100%; margin: 0; }

  .pain-cards-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .pain-card { padding: var(--space-5); }

  .steps-grid { flex-direction: column; gap: var(--space-1); }
  .step-card:first-child { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .step-card:last-child  { border-radius: 0 0 var(--r-xl) var(--r-xl); }
  .step-card + .step-card { border-left: 1px solid var(--clr-border); border-top: none; }

  .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .testimonial-card { padding: var(--space-5); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto var(--space-8); }
  .pricing-card-popular { transform: none; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8) var(--space-6); }
}
