/* ═══════════════════════════════════════════════════════════════
   Amassa Marketing Site — Master Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary: #f97316;
  --primary-hover: #ea580c;
  --primary-light: #fff7ed;
  --primary-100: #ffedd5;
  --primary-200: #fed7aa;

  --dark: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --text: #1e293b;
  --text-sec: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-alt: #f1f5f9;

  --success: #22c55e;
  --info: #3b82f6;

  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12);

  --transition: 150ms ease;
  --max-w: 1200px;
  --header-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p { color: var(--text-sec); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 50%, var(--primary-hover) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-subtle); }
.section--dark { background: var(--dark); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--radius-md); border: none;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,.3);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 4px 16px rgba(249,115,22,.4); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost { background: transparent; color: var(--text-sec); }
.btn-ghost:hover { color: var(--primary); }

.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: .8rem; }

.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--primary-100); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s, background .2s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; height: 100%; gap: 32px;
}
.header-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-size: 1.25rem; font-weight: 800; color: var(--dark); letter-spacing: -.03em;
}
.logo-img {
  height: 32px; width: auto; display: block; border-radius: var(--radius-sm);
}
.logo-img--full {
  height: 38px; border-radius: 0;
}
.logo-img--footer {
  height: 36px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--text-sec);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--dark); background: var(--bg-subtle); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--dark); }
.mobile-toggle i { width: 22px; height: 22px; }
.toggle-close { display: none; }
.mobile-toggle.open .toggle-open { display: none; }
.mobile-toggle.open .toggle-close { display: block; }

@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .mobile-toggle { display: flex; }
}

/* ── Mobile Drawer ─────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 99;
  pointer-events: none; opacity: 0;
  transition: opacity .25s;
}
.mobile-drawer.open { pointer-events: all; opacity: 1; }
.mobile-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
}
.mobile-drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  padding-top: calc(var(--header-h) + 8px);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,.1);
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-link {
  display: block; padding: 14px 24px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--bg-alt);
  transition: background var(--transition);
}
.mobile-link:hover { background: var(--bg-subtle); color: var(--primary); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--header-h) + 60px) 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero p.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-sec);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-visual {
  margin-top: 60px; position: relative;
  max-width: 1000px; margin-left: auto; margin-right: auto;
}
.hero-visual img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 80px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
}

/* ── Social Proof Bar ──────────────────────────────────────── */
.proof-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.proof-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 20px; }
.proof-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat .val { font-size: 2rem; font-weight: 800; color: var(--dark); letter-spacing: -.03em; }
.proof-stat .lbl { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }

/* ── Section Heading ───────────────────────────────────────── */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .badge {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: var(--primary-light); color: var(--primary);
  margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; line-height: 1.7; }

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all .2s;
}
.feature-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 20px;
}
.feature-icon i { width: 22px; height: 22px; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: .9rem; line-height: 1.6; }

/* ── Feature Showcase (alternating) ────────────────────────── */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 48px 0;
}
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
.showcase-text { }
.showcase-text .badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: var(--primary-light); color: var(--primary);
  margin-bottom: 16px;
}
.showcase-text h3 { font-size: 1.5rem; margin-bottom: 12px; }
.showcase-text p { font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.showcase-text ul { display: flex; flex-direction: column; gap: 8px; }
.showcase-text li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-sec);
}
.showcase-text li i { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.showcase-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .showcase, .showcase.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}

/* ── How It Works ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 24px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  margin: 0 auto 20px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: .9rem; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }

/* ── Pricing Cards ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  padding: 36px 28px; border-radius: var(--radius-xl);
  border: 1.5px solid var(--border); background: var(--bg);
  transition: all .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  position: relative;
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 16px; border-radius: var(--radius-full);
}
.pricing-tier { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { margin-bottom: 8px; }
.pricing-price .amount { font-size: 2.8rem; font-weight: 800; color: var(--dark); letter-spacing: -.04em; }
.pricing-price .period { font-size: .9rem; color: var(--text-muted); }
.pricing-desc { font-size: .85rem; color: var(--text-sec); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--text-sec);
}
.pricing-features li i { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ── Toggle (Monthly/Annual) ───────────────────────────────── */
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.toggle-pill {
  display: flex; background: var(--bg-alt); border-radius: var(--radius-full); padding: 4px;
}
.toggle-pill button {
  padding: 8px 20px; border-radius: var(--radius-full); border: none;
  font-family: var(--font); font-size: .85rem; font-weight: 600;
  cursor: pointer; background: transparent; color: var(--text-sec);
  transition: all var(--transition);
}
.toggle-pill button.active { background: #fff; color: var(--dark); box-shadow: var(--shadow-sm); }
.annual-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  background: #dcfce7; color: #16a34a; padding: 2px 8px;
  border-radius: var(--radius-full); margin-left: 6px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
}
.testimonial-quote {
  font-size: 1rem; line-height: 1.7; color: var(--text);
  font-style: italic; margin-bottom: 20px; position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem;
}
.testimonial-name { font-size: .85rem; font-weight: 600; color: var(--dark); }
.testimonial-role { font-size: .75rem; color: var(--text-muted); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0; background: none; border: none;
  font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--dark);
  cursor: pointer; text-align: left;
}
.faq-question i { width: 18px; height: 18px; color: var(--text-muted); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 0 20px; font-size: .9rem; line-height: 1.7; color: var(--text-sec); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: 1.05rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font); font-size: .9rem;
  color: var(--text); background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px; font-size: .9rem;
}
.contact-info-item i { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── About ─────────────────────────────────────────────────── */
.about-story { max-width: 720px; margin: 0 auto; }
.about-story p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.value-card { padding: 32px; border-radius: var(--radius-lg); background: var(--bg-subtle); text-align: center; }
.value-card i { width: 32px; height: 32px; color: var(--primary); margin-bottom: 16px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: .9rem; }

.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 16px;
}
.team-card h4 { margin-bottom: 2px; }
.team-card p { font-size: .85rem; color: var(--text-muted); }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card { border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-thumb { height: 180px; background: var(--bg-alt); }
.blog-body { padding: 20px; }
.blog-tag {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  background: var(--primary-light); color: var(--primary);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-card p { font-size: .85rem; margin-bottom: 12px; }
.blog-meta { font-size: .75rem; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 12px;
}
.footer-desc { font-size: .85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-social a i { width: 16px; height: 16px; }
.footer-col h4 { color: rgba(255,255,255,.8); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.45); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; font-size: .8rem; text-align: center; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Animations ────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .15s; }
.stagger > *:nth-child(4) { transition-delay: .2s; }
.stagger > *:nth-child(5) { transition-delay: .25s; }
.stagger > *:nth-child(6) { transition-delay: .3s; }

/* ── ROI Grid ─────────────────────────────────────────────── */
.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.roi-item { padding: 32px 20px; }
.roi-val {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary);
  letter-spacing: -.03em; line-height: 1; margin-bottom: 8px;
}
.roi-label { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.roi-desc { font-size: .8rem; color: var(--text-muted); }
@media (max-width: 768px) { .roi-grid { grid-template-columns: 1fr; } }

/* ── Comparison Table ─────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-weight: 700; color: var(--dark); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; background: var(--bg-subtle); }
.compare-table td:first-child { font-weight: 600; color: var(--dark); }
.compare-table .col-highlight { background: var(--primary-light); }
.compare-table .col-highlight-head { background: var(--primary); color: #fff; font-weight: 700; }
.compare-table i[data-lucide="check"] { color: var(--success); width: 16px; height: 16px; }
.compare-table i[data-lucide="x"] { color: var(--text-muted); width: 16px; height: 16px; }
.compare-table i[data-lucide="minus"] { color: var(--text-muted); width: 16px; height: 16px; }
@media (max-width: 768px) {
  .compare-table { font-size: .75rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}

/* ── Pricing Setup Fee ────────────────────────────────────── */
.pricing-setup {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-muted); margin-bottom: 16px;
}
.pricing-setup i { width: 14px; height: 14px; }

/* ── Positioning Grid ─────────────────────────────────────── */
.positioning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.positioning-card {
  padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
}
.positioning-card h4 { font-size: .95rem; margin-bottom: 12px; color: var(--dark); }
.positioning-card p { font-size: .85rem; line-height: 1.6; }
@media (max-width: 768px) { .positioning-grid { grid-template-columns: 1fr; } }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 8px; }
.legal-content p { font-size: .95rem; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content li { font-size: .95rem; line-height: 1.7; color: var(--text-sec); margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--primary); }

/* ── Utilities ─────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 48px; }
