/* ============================================================
   LawTasksAI — Redesign v2 Stylesheet
   Branch: redesign-landing-v2
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --ink:         #0f172a;
  --ink-2:       #1e293b;
  --muted:       #374151;
  --muted-2:     #6b7280;
  --border:      #e2e8f0;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --green:       #16a34a;
  --green-light: #f0fdf4;
  --green-border:#bbf7d0;
  --red:         #dc2626;
  --amber:       #f59e0b;
}

html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  font-weight: 450;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--ink-2);
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 0;
  text-align: center;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tbitem { display: flex; align-items: center; gap: 5px; }

/* ---- Header ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > a,
.dropdown-toggle {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 7px 11px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.nav-links > a:hover,
.dropdown-toggle:hover {
  color: var(--ink);
  background: var(--bg);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
}
.dropdown-toggle::after {
  content: '▾';
  font-size: 0.9rem;
  opacity: 0.55;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 6px;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: all 0.15s;
}
.dropdown-menu a:hover { background: var(--bg); color: var(--ink); }

.header-cta {
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--blue);
  color: white !important;
  transition: background 0.15s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--blue-dark); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.mobile-overlay.active { display: block; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.28);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37,99,235,0.38);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

/* ---- Section primitives ---- */
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-align: center;
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- HERO ---- */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(155deg, #eef4ff 0%, var(--white) 55%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-xlight);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid var(--blue-light);
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--blue); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-meta-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* Hero card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.hero-card-header {
  background: var(--ink-2);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dots span:nth-child(1) { background: #ef4444; }
.hero-card-dots span:nth-child(2) { background: #f59e0b; }
.hero-card-dots span:nth-child(3) { background: #22c55e; }
.hero-card-title { color: #64748b; font-size: 0.85rem; font-weight: 500; }
.hero-card-body { padding: 18px; }

.task-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.done-row { background: var(--bg); }
.active-row { background: #eff6ff; border-color: #93c5fd; }
.task-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.task-info { flex: 1; min-width: 0; }
.task-name { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.active-text { color: var(--blue); }
.task-status { font-size: 0.9rem; color: var(--muted); }
.task-status.done { color: var(--green); font-weight: 700; }
.task-status.processing { color: #3b82f6; font-weight: 600; }
.task-time { font-size: 0.9rem; color: var(--muted-2); flex-shrink: 0; }

.hero-output {
  margin-top: 12px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: 9px;
  padding: 12px 14px;
}
.hero-output-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.hero-output p { font-size: 0.95rem; color: #166534; line-height: 1.5; }
.hero-timer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
}
.stars { color: var(--amber); font-size: 0.88rem; margin-bottom: 12px; }
.quote { font-size: 1rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; }
.attr  { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.testimonial-note {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 20px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 96px 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-card p  { font-size: 1.05rem; color: var(--ink-2); line-height: 1.65; }

/* ---- TRUST / PRIVACY ---- */
.trust-section {
  padding: 96px 0;
  background: color-mix(in srgb, var(--blue) 8%, white);
  color: var(--ink);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.trust-badges { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid color-mix(in srgb, var(--blue) 25%, #e5e7eb);
  border-radius: 12px;
  padding: 16px 18px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--blue) 10%, transparent);
}
.trust-badge:hover { background: #f8faff; box-shadow: 0 4px 16px color-mix(in srgb, var(--blue) 15%, transparent); }
.tbadge-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.trust-badge h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.trust-badge p  { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }

.trust-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.trust-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-plus { font-size: 1.6rem; color: #60a5fa; }
.stat-label { font-size: 0.95rem; color: #94a3b8; font-weight: 500; line-height: 1.45; }

/* ---- FEATURES ---- */
.features {
  padding: 96px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.feature-card {
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--blue-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-card p  { font-size: 1.05rem; color: var(--ink-2); line-height: 1.62; }

/* ---- PRICING ---- */
.pricing {
  padding: 96px 0;
  background: var(--bg);
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-top: -32px;
  margin-bottom: 40px;
}
.pricing-note a { color: var(--blue); text-decoration: underline; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.pricing-grid-lower {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 75%;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  padding: 3px 14px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.pricing-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-tasks { font-size: 0.97rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.pricing-per   { font-size: 0.95rem; color: var(--muted); margin-bottom: 18px; }
.pricing-perks { list-style: none; margin-bottom: 22px; flex: 1; }
.pricing-perks li {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pricing-perks li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.buy-btn {
  width: 100%;
  padding: 11px 18px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.buy-btn:hover    { background: var(--blue-dark); }
.buy-btn:disabled { background: #cbd5e1; cursor: not-allowed; }

.pricing-footnote {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.85rem;
  margin-top: 28px;
}

/* ---- TECH (collapsible) ---- */
.tech-section {
  padding: 52px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.collapsible-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  margin: 0 auto;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
}
.collapsible-trigger:hover { border-color: var(--blue); color: var(--blue); }
.chevron { transition: transform 0.25s; font-size: 0.9rem; display: inline-block; }

.collapsible-body {
  display: none;
  max-width: 820px;
  margin: 24px auto 0;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.collapsible-body.open { display: block; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.collapsible-body h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.collapsible-body p, .collapsible-body li {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
}
.collapsible-body ul { list-style: disc; padding-left: 18px; margin: 8px 0; }
.collapsible-body a { color: var(--blue); }

/* ---- NEWSLETTER ---- */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border-top: 1px solid var(--border);
}
.newsletter-inner { text-align: center; max-width: 540px; margin: 0 auto; }
.newsletter h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
}
.newsletter p { color: var(--muted); margin-bottom: 32px; }
.zoho-form-wrapper {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: inline-block;
}

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: #64748b;
  padding: 48px 0 32px;
}
.footer-disclaimer {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 32px;
}
.disclaimer-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 8px;
}
.footer-disclaimer span { font-size: 0.95rem; color: #94a3b8; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.footer-brand .logo { color: white; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.95rem; color: #64748b; max-width: 300px; line-height: 1.6; }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: #64748b; text-decoration: none; font-size: 0.95rem; transition: color 0.15s; }
.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  font-size: 0.95rem;
  color: #475569;
}

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--muted);
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: var(--bg); }
.modal h2 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.02em; }
.modal-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 22px; line-height: 1.55; }

.form-group { margin-bottom: 13px; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 600; color: #374151; margin-bottom: 4px; }
.form-group input {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s;
  background: var(--white);
}
.form-group input:focus { outline: none; border-color: var(--blue); }

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

.req { color: var(--red); }
.opt { color: var(--muted-2); font-weight: 400; }

.attestation-box {
  background: var(--green-light);
  border: 1.5px solid var(--green-border);
  border-radius: 10px;
  padding: 13px 16px;
  margin: 14px 0;
}
.attestation-box label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.attestation-box input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--green);
}
.attestation-box span { font-size: 0.95rem; color: #166534; line-height: 1.5; }

.modal-error { color: var(--red); font-size: 0.95rem; min-height: 1.2em; margin-bottom: 8px; }
.modal-stripe-note { text-align: center; font-size: 0.9rem; color: var(--muted-2); margin-top: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-lower { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 72px 20px 28px;
    gap: 0;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    z-index: 200;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.active { display: flex; }
  .nav-links > a, .dropdown-toggle {
    width: 100%;
    padding: 12px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .dropdown { width: 100%; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.mobile-open .dropdown-menu { display: block; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 10px; border-radius: 0; }
  .header-cta { width: 100%; text-align: center; margin-top: 12px; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid-lower { grid-template-columns: 1fr; max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar-inner { gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
}
