@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Variables ───────────────────────────────────── */
:root {
  --purple:      #5B4FE8;
  --purple-dark: #4A3FD9;
  --dark:        #111111;
  --cream:       #F2F1EF;
  --border:      #D9D7D3;
  --white:       #FFFFFF;
  --muted:       #666666;
  --success:     #10B981;
  --error:       #EF4444;
  /* dashboard aliases */
  --gray-50:     #F8F9FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-600:    #6C757D;
  --gray-800:    #495057;
  --serif: 'Playfair Display', Georgia, serif;
  --font:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
}

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

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary { background: var(--purple); color: white; }
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(91,79,232,0.3);
}
.btn-primary:active   { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: #999; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* White button (used in purple nav) */
.btn-nav {
  background: white;
  color: var(--purple);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-nav:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.18); transform: translateY(-1px); }
.btn-nav:active { transform: none; }
.btn-nav:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  background: var(--purple);
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: white; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f8f7ff 0%, #eeeaff 50%, #f0f4ff 100%);
  padding: 90px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* ── Animated geometric shapes ───────────────────── */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: shapeFadeIn 1s forwards;
}
@keyframes shapeFadeIn { to { opacity: 1; } }

/* large soft circles */
.shape-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(91,79,232,0.10) 0%, transparent 70%);
  top: -160px; right: -80px;
  animation: shapeFadeIn 0.8s 0.1s forwards, floatA 12s 1s ease-in-out infinite;
}
.shape-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(91,79,232,0.07) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  animation: shapeFadeIn 0.8s 0.2s forwards, floatB 15s 1s ease-in-out infinite;
}
/* medium rings */
.shape-3 {
  width: 200px; height: 200px;
  border: 1.5px solid rgba(91,79,232,0.12);
  border-radius: 50%;
  top: 60px; right: 420px;
  background: transparent;
  animation: shapeFadeIn 0.8s 0.3s forwards, floatA 10s 1s ease-in-out infinite;
}
.shape-4 {
  width: 120px; height: 120px;
  border: 1.5px solid rgba(91,79,232,0.10);
  border-radius: 50%;
  bottom: 80px; right: 380px;
  background: transparent;
  animation: shapeFadeIn 0.8s 0.4s forwards, floatB 8s 1s ease-in-out infinite;
}
/* small dots */
.shape-5 {
  width: 10px; height: 10px;
  background: rgba(91,79,232,0.25);
  top: 120px; right: 340px;
  animation: shapeFadeIn 0.6s 0.5s forwards, floatA 7s 1s ease-in-out infinite;
}
.shape-6 {
  width: 6px; height: 6px;
  background: rgba(91,79,232,0.2);
  bottom: 140px; right: 440px;
  animation: shapeFadeIn 0.6s 0.6s forwards, floatB 9s 1s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-14px) translateX(6px); }
  66%       { transform: translateY(8px) translateX(-5px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) translateX(0); }
  40%       { transform: translateY(12px) translateX(-8px); }
  70%       { transform: translateY(-10px) translateX(4px); }
}

/* ── Hero 2-col layout ───────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Entrance animation for left column children */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-copy > * { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.38s; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--purple);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--purple); }
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.72;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 0;
}
.hero-stat { flex: 1; padding-right: 20px; border-right: 1px solid var(--border); }
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 20px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.hero-stat span {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── Product preview card ────────────────────────── */
.hero-preview {
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.preview-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(91,79,232,0.13), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(91,79,232,0.1);
  overflow: hidden;
}
.preview-card-header {
  background: var(--dark);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.preview-lead-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-avatar {
  width: 38px; height: 38px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.preview-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.preview-org {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.preview-badge {
  background: rgba(16,185,129,0.15);
  color: #34D399;
  border: 1px solid rgba(16,185,129,0.3);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.preview-score-row {
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: #FAFAFA;
}
.preview-score-label {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.preview-score-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.preview-score-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), #9B88FF);
  border-radius: 100px;
  animation: scoreFill 1.2s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
@keyframes scoreFill { to { width: 87%; } }
.preview-score-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}
.preview-score-num span { font-size: 11px; color: #aaa; font-weight: 500; }
.preview-sections { padding: 4px 0; }
.preview-section {
  padding: 11px 22px;
  border-bottom: 1px solid #F1F0EE;
  animation: heroFadeUp 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.preview-section:nth-child(1) { animation-delay: 0.55s; }
.preview-section:nth-child(2) { animation-delay: 0.65s; }
.preview-section:nth-child(3) { animation-delay: 0.75s; }
.preview-section:nth-child(4) { animation-delay: 0.85s; }
.preview-section:nth-child(5) { animation-delay: 0.95s; }
.preview-section:last-child { border-bottom: none; }
.preview-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.preview-section-text {
  font-size: 12.5px;
  color: #444;
  line-height: 1.5;
}
.preview-footer {
  padding: 12px 22px;
  background: #F8F7FF;
  border-top: 1px solid rgba(91,79,232,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #888;
}
.preview-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ── Section header ──────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.section-header p { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto; }

/* ── Features ────────────────────────────────────── */
.features { padding: 100px 48px; background: var(--cream); }
/* Grid trick: parent bg = border color, gap = 1px creates thin lines */
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--cream);
  padding: 36px 32px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: white; }
.feature-number {
  display: block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Pricing ─────────────────────────────────────── */
.pricing { padding: 100px 48px; text-align: center; background: var(--white); }

.billing-toggle {
  display: inline-flex;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 40px;
  gap: 2px;
}
.toggle-opt {
  padding: 9px 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
}
.toggle-opt.active { background: var(--purple); color: white; }
.toggle-opt:not(.active):hover { color: var(--dark); }
.save-pill {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 44px 40px;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), #9B88FF);
}
.pricing-badge {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}
.pricing-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 16px 0 8px;
}
.pricing-price .amount   { font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.pricing-price .currency { font-size: 22px; font-weight: 600; align-self: flex-start; margin-top: 12px; }
.pricing-price .period   { font-size: 15px; color: rgba(255,255,255,0.5); margin-left: 4px; }
.pricing-desc { color: rgba(255,255,255,0.5); margin-bottom: 28px; font-size: 14px; }
.pricing-features { list-style: none; margin-bottom: 32px; text-align: left; }
.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-features li:last-child { border-bottom: none; }
.check {
  width: 18px; height: 18px;
  background: rgba(91,79,232,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #C4BBFF;
  font-size: 10px;
}

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.38);
  text-align: center;
  padding: 36px 48px;
  font-size: 13px;
}
footer a { color: rgba(255,255,255,0.38); text-decoration: none; }
footer a:hover { color: white; }

/* ── App header (dashboard) ──────────────────────── */
.app-header {
  background: white;
  padding: 0 32px;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.app-header-inner {
  max-width: 960px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* dashboard: show logo in original color, no invert */
.app-header .nav-logo-img { filter: none; }
.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 13px;
}
.user-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; }

/* ── Dashboard main ──────────────────────────────── */
.dashboard-main { max-width: 960px; margin: 0 auto; padding: 40px 24px 80px; }
.dashboard-intro { margin-bottom: 28px; }
.dashboard-intro h1 { font-size: 24px; color: var(--dark); margin-bottom: 6px; font-weight: 700; }
.dashboard-intro p  { color: var(--gray-600); font-size: 15px; }

/* ── Form card ───────────────────────────────────── */
.form-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.form-card-header { background: var(--dark); padding: 22px 30px; color: white; }
.form-card-header h2 { font-size: 16px; font-weight: 600; margin-bottom: 3px; color: white; }
.form-card-header p  { font-size: 13px; color: rgba(255,255,255,0.45); }
.form-body { padding: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 13px; font-weight: 500; color: var(--gray-800); }
label .req { color: var(--purple); margin-left: 1px; }

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  background: white;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,79,232,0.1);
}
textarea { resize: vertical; min-height: 88px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%236C757D' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-footer {
  padding: 20px 30px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-note { font-size: 12px; color: var(--gray-600); }

/* ── Result ──────────────────────────────────────── */
.result-section { margin-top: 28px; display: none; }
.result-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.result-header {
  background: var(--dark);
  padding: 20px 30px;
  color: white;
  display: flex;
  align-items: center;
  gap: 14px;
}
.result-icon {
  width: 36px; height: 36px;
  background: rgba(91,79,232,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #C4BBFF; flex-shrink: 0;
}
.result-icon svg { width: 18px; height: 18px; stroke: currentColor; }
.result-header h3 { font-size: 16px; margin-bottom: 2px; font-weight: 600; color: white; }
.result-header p  { font-size: 13px; opacity: 0.55; }
.result-body {
  padding: 30px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--dark);
  white-space: pre-wrap;
}

/* ── Spinner ─────────────────────────────────────── */
.spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Alerts ──────────────────────────────────────── */
.alert { padding: 13px 17px; border-radius: var(--radius-sm); font-size: 14px; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ── Full-page (success / locked) ───────────────── */
.full-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: white;
  text-align: center;
}
.full-page h1 { font-size: 32px; margin-bottom: 12px; color: white; }
.full-page > p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 400px; margin: 0 auto 32px; }
.circle-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
}
.circle-icon.green  { background: rgba(16,185,129,0.15); }
.circle-icon.yellow { background: rgba(251,191,36,0.15); }
.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 36px;
  max-width: 460px;
  width: 100%;
  margin-bottom: 28px;
}
.info-card .label { color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 6px; }
.info-card .value  { font-size: 17px; font-weight: 600; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy > * { animation: none; opacity: 1; transform: none; }
  .hero-eyebrow, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stat:first-child { padding-left: 20px; }
  .hero-preview { max-width: 560px; margin: 0 auto; }
  .shape-3, .shape-4, .shape-5, .shape-6 { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav, .hero, .features, .pricing, footer { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .form-grid     { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero          { padding-top: 60px; padding-bottom: 56px; }
  .hero-stats    { flex-direction: column; gap: 16px; padding-top: 24px; }
  .hero-stat     { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 16px 0 !important; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .pricing-card  { padding: 32px 24px; }
  .form-body, .form-footer { padding: 20px; }
  .result-header, .result-body { padding: 20px; }
  .form-footer   { flex-direction: column; align-items: stretch; }
  .form-footer .btn { justify-content: center; }
  .billing-toggle { flex-direction: column; border-radius: var(--radius); }
  .toggle-opt    { border-radius: var(--radius-sm); justify-content: center; }
}
