/* ============================================================
   Roadmapp — Marketing Site Stylesheet
   ============================================================ */

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

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --orange:        #e37228;
  --orange-dark:   #c55e15;
  --orange-light:  #fef0e6;
  --orange-mid:    #f5e0cc;
  --dark:          #1c2030;
  --dark-mid:      #252d42;
  --text:          #4a4a4a;
  --text-light:    #888;
  --text-xlight:   #aaa;
  --border:        #e5e7eb;
  --border-dark:   #d1d5db;
  --bg:            #f6f7f9;
  --bg-mid:        #eef0f4;
  --white:         #ffffff;
  --green:         #22c55e;
  --amber:         #f59e0b;
  --red:           #ef4444;
  --shadow:        0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.14);
  --r:             8px;
  --r-lg:          14px;
  --r-xl:          20px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:  'Plus Jakarta Sans', 'Inter', sans-serif;
  --max-w:         1160px;
  --nav-h:         80px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.hidden { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-light); max-width: 620px; }
.lead.center { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(227,114,40,0.30); }
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border-color: var(--border-dark);
}
.btn-secondary:hover { border-color: var(--dark); background: var(--bg); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); }
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover { background: var(--orange-light); }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 7px 14px;
  border-radius: var(--r);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: var(--bg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.2s; margin: 5px 0; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(227,114,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content .eyebrow { color: var(--orange); }
.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-content h1 span { color: var(--orange); }
.hero-content .lead { color: rgba(255,255,255,0.70); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 48px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.hero-trust-dots { display: flex; gap: 6px; }
.hero-trust-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── App Mockup ─────────────────────────────────────────────── */
.hero-visual { position: relative; }
.app-mockup {
  background: #1a2035;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.mockup-chrome {
  background: #141828;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mockup-dot-row { display: flex; gap: 6px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red   { background: #ff5f57; }
.mockup-dot.amber { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }
.mockup-url {
  flex: 1; background: rgba(255,255,255,0.07); border-radius: 5px;
  padding: 4px 10px; font-size: 10px; color: rgba(255,255,255,0.35); margin: 0 10px;
}
.mockup-body { display: flex; height: 320px; }
.mockup-sidebar {
  width: 52px; background: #141828; border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 16px;
}
.mockup-sidebar-icon { width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,0.08); }
.mockup-sidebar-icon.active { background: var(--orange); }
.mockup-main { flex: 1; padding: 14px; overflow: hidden; }
.mockup-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mockup-topbar-title { font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85); }
.mockup-topbar-badge {
  font-size: 9px; padding: 2px 7px; border-radius: 99px;
  background: rgba(227,114,40,0.22); color: var(--orange); font-weight: 600;
}

/* Health cards row */
.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 12px; }
.mockup-card {
  background: rgba(255,255,255,0.06);
  border-radius: 7px; padding: 8px;
  border: 1px solid rgba(255,255,255,0.07);
}
.mockup-card-label { font-size: 8px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.mockup-card-value { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.mockup-card-sub { font-size: 7px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* Gantt section */
.mockup-gantt-header { font-size: 8px; color: rgba(255,255,255,0.4); margin-bottom: 7px; }
.mockup-gantt-rows { display: flex; flex-direction: column; gap: 5px; }
.mockup-gantt-row { display: flex; align-items: center; gap: 7px; }
.mockup-gantt-label { font-size: 8px; color: rgba(255,255,255,0.55); width: 65px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-gantt-track { flex: 1; height: 10px; background: rgba(255,255,255,0.06); border-radius: 3px; position: relative; overflow: hidden; }
.mockup-gantt-bar { position: absolute; top: 0; height: 100%; border-radius: 3px; }

/* RAG dots */
.mockup-rag { display: flex; gap: 4px; margin-top: 10px; }
.mockup-rag-item { display: flex; align-items: center; gap: 4px; font-size: 7px; color: rgba(255,255,255,0.45); }
.mockup-rag-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── Trust bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-light);
}
.trust-icon { font-size: 1.1rem; }

/* ── Pillars ────────────────────────────────────────────────── */
.pillars { background: var(--white); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.pillar-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pillar-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-mid); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.pillar-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.15rem; }
.pillar-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.65; }

/* ── Feature sections ───────────────────────────────────────── */
.features-alt { background: var(--bg); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-text .eyebrow { display: block; }
.feature-text h2 { font-size: 1.9rem; margin-bottom: 16px; }
.feature-text p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.feature-bullets { display: flex; flex-direction: column; gap: 10px; }
.feature-bullet {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text);
}
.feature-bullet-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--orange-light); color: var(--orange); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* Feature visual panels */
.feature-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.feature-panel-dark {
  background: var(--dark-mid);
  border-color: rgba(255,255,255,0.08);
}
.panel-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.panel-row:last-child { border-bottom: none; }
.panel-row-label { flex: 1; font-size: 0.88rem; font-weight: 500; }
.panel-rag { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.panel-progress { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.panel-progress-fill { height: 100%; border-radius: 3px; }
.panel-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 99px; flex-shrink: 0; }
.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-amber  { background: #fef9c3; color: #ca8a04; }
.badge-red    { background: #fee2e2; color: #dc2626; }
.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-purple { background: #ede9fe; color: #7c3aed; }

/* Gantt visual */
.gantt-visual { display: flex; flex-direction: column; gap: 8px; }
.gantt-row-item { display: flex; align-items: center; gap: 10px; }
.gantt-row-name { font-size: 0.8rem; color: var(--text); width: 110px; flex-shrink: 0; font-weight: 500; }
.gantt-track { flex: 1; height: 18px; background: var(--bg); border-radius: 4px; position: relative; overflow: hidden; }
.gantt-bar { position: absolute; top: 0; height: 100%; border-radius: 4px; display: flex; align-items: center; padding: 0 7px; font-size: 9px; font-weight: 600; color: white; }

/* RAID visual */
.raid-table { width: 100%; }
.raid-thead { display: grid; grid-template-columns: 1fr 70px 70px 70px; gap: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); margin-bottom: 6px; }
.raid-th { font-size: 10px; font-weight: 700; color: var(--text-xlight); text-transform: uppercase; letter-spacing: .5px; }
.raid-tr { display: grid; grid-template-columns: 1fr 70px 70px 70px; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); align-items: center; }
.raid-tr:last-child { border-bottom: none; }
.raid-title { font-size: 0.82rem; font-weight: 500; }
.raid-cell { font-size: 0.78rem; color: var(--text-light); }

/* ── Feature grid ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.feature-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-mid); transform: translateY(-2px); }
.feature-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats { background: var(--orange); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 2.4rem; color: var(--white); margin-bottom: 4px; }
.stat-item p  { font-size: 0.88rem; color: rgba(255,255,255,0.80); }

/* ── Pricing cards ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 99px; white-space: nowrap;
}
.pricing-tier { font-size: 0.82rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.pricing-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.55; }
.pricing-cta-note { font-size: 0.88rem; color: var(--orange); font-weight: 700; margin-bottom: 24px; display: block; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; gap: 9px; font-size: 0.88rem; align-items: flex-start; }
.pricing-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cross { color: var(--text-xlight); flex-shrink: 0; margin-top: 1px; }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band { background: var(--dark); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-band-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Contact / Forms ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info p  { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; }
.contact-detail-icon { width: 36px; height: 36px; background: var(--orange-light); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.contact-detail-value { font-size: 0.92rem; color: var(--dark); font-weight: 500; }

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 6px; }
.form-card > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(227,114,40,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .form-note { font-size: 0.78rem; color: var(--text-xlight); }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--r); padding: 16px 20px; font-size: 0.92rem; color: #16a34a; font-weight: 500; display: none; }

/* ── About section ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-value { display: flex; gap: 14px; }
.about-value-icon { width: 42px; height: 42px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.about-value-text h4 { margin-bottom: 3px; font-size: 0.95rem; }
.about-value-text p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 64px) 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.65); margin: 0 auto; }

/* ── Features page specific ─────────────────────────────────── */
.features-page-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.features-page-section:last-of-type { border-bottom: none; }
.features-section-header { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 40px; }
.features-section-sticky { position: sticky; top: calc(var(--nav-h) + 20px); }
.features-section-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.features-section-title { font-size: 1.5rem; margin-bottom: 10px; }
.features-section-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.features-list { display: flex; flex-direction: column; gap: 14px; }
.features-list-item { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); transition: box-shadow 0.15s; }
.features-list-item:hover { box-shadow: var(--shadow); }
.features-list-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.features-list-content h4 { margin-bottom: 4px; font-size: 0.95rem; }
.features-list-content p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ── Comparison table ─────────────────────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.comparison-table th {
  text-align: left; padding: 14px 18px;
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  background: var(--bg); border-bottom: 2px solid var(--border);
}
.comparison-table th:first-child { color: var(--text-light); font-weight: 500; }
.comparison-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: middle; }
.comparison-table tr:hover td { background: var(--orange-light); }
.comparison-table .check { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.comparison-table .cross { color: var(--border-dark); font-weight: 700; }
.comparison-table .cat-row td { background: var(--bg); font-weight: 700; color: var(--dark); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .5px; padding: 10px 18px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--dark);
  gap: 14px;
}
.faq-q-arrow { flex-shrink: 0; font-size: 1.2rem; color: var(--orange); transition: transform 0.2s; }
.faq-q.open .faq-q-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.footer-brand img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.87rem; line-height: 1.65; max-width: 240px; }
.footer-col h5 { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.88rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-left { font-size: 0.82rem; }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { font-size: 0.82rem; transition: color 0.15s; }
.footer-bottom-right a:hover { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-visual { order: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-section-header { grid-template-columns: 1fr; }
  .features-section-sticky { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 10px 14px; }
  .nav-toggle { display: flex; flex-direction: column; }
  .nav-actions .btn-secondary { display: none; }
  .nav-logo img { height: 38px; } /* keep logo proportionate on small screens */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { flex-direction: column; gap: 12px; }
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.5s ease forwards; }
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
