/* ============================================================
   ACADYL MARKETING &#8212; main.css
   ============================================================ */

/* &#9472;&#9472; 1. DESIGN TOKENS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
:root {
  --primary:       #4F46E5;
  --primary-dark:  #4338CA;
  --primary-light: #EEF2FF;
  --secondary:     #10B981;
  --accent:        #F59E0B;
  --text:          #1F2937;
  --text-light:    #6B7280;
  --text-muted:    #9CA3AF;
  --bg:            #FFFFFF;
  --bg-alt:        #F9FAFB;
  --bg-dark:       #111827;
  --border:        #E5E7EB;
  --shadow:        0 1px 3px rgba(0,0,0,0.1);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.10);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.15);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    all 0.3s ease;
}

/* &#9472;&#9472; 2. RESET & BASE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; color: var(--text); }

/* &#9472;&#9472; 3. LAYOUT &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* &#9472;&#9472; 4. NAVBAR &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.92); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* &#9472;&#9472; 5. BUTTONS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
/* Ripple effect */
.btn {
  overflow: hidden;
  position: relative;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  border-radius: inherit;
}
.btn.ripple-active::after {
  transform: scale(2.5);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  background-size: 200% 100%;
  color: white;
  border-color: var(--primary);
  animation: gradient-shift 3s ease infinite;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px) scale(1.02); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-light); }
.btn-ghost:hover { background: var(--bg-alt); color: var(--text); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 15px 30px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-xl { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* &#9472;&#9472; 6. BADGE / PILL &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-green   { background: #D1FAE5; color: #065F46; }
.badge-amber   { background: #FEF3C7; color: #92400E; }
.badge-dark    { background: rgba(255,255,255,0.12); color: white; }

/* &#9472;&#9472; 7. SECTION BASE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-header p { font-size: 18px; color: var(--text-light); line-height: 1.7; }
.section-header.left { text-align: left; margin-left: 0; }

/* &#9472;&#9472; 8. GRID &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-auto-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* &#9472;&#9472; 9. CARD &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px) scale(1.02); border-color: transparent; }

/* Glassmorphism card variant */
.card-glass {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 15px; line-height: 1.65; }
.card-sm { padding: 24px; }
.card-flat { border-radius: var(--radius); }
.card-highlight { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg); }

/* &#9472;&#9472; 10. HERO &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}
/* Gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(79,70,229,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(124,58,237,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(16,185,129,0.08) 0%, transparent 50%);
  animation: meshFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshFloat {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* &#9472;&#9472; Hero inner: 2-col grid on desktop &#9472;&#9472; */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { /* left column */ }
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text);
}
.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--primary), #7C3AED, var(--secondary), var(--primary));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-light);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: nowrap; margin-bottom: 14px; align-items: center; }
.hero-note { font-size: 13px; color: var(--text-muted); }

/* right column &#8212; matches left column height, browser fills it */
.hero-visual-col {
  position: relative;
  display: flex;
  align-items: center;
}

/* Stats bar &#8212; spans full width below both columns */
.hero-stats-row {
  grid-column: 1 / -1;
  margin-top: 56px;
}
.hero-stats {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* &#9472;&#9472; 11. HERO VISUAL / MOCKUP &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.hero-visual {
  position: relative;
  width: 100%;
}
.hero-mockup {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-bar {
  background: #1F2937;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #EF4444; }
.mockup-dot:nth-child(2) { background: #F59E0B; }
.mockup-dot:nth-child(3) { background: #10B981; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin: 0 12px;
}
.mockup-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  min-height: 300px;
}
.mockup-sidebar {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-nav-item {
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.mockup-nav-item.active { background: var(--primary); opacity: 0.8; }
.mockup-content { display: flex; flex-direction: column; gap: 16px; }
.mockup-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mockup-stat-card {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.mockup-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); }
.mockup-chart {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 120px;
}
.mockup-bar-item {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary), rgba(79,70,229,0.3));
}

/* &#9472;&#9472; 12. PRICING &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  font-weight: 500;
  color: var(--text-light);
}
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  transition: var(--transition);
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.toggle-switch input:checked + .toggle-track { background: var(--primary); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(22px); }
.save-badge {
  background: #D1FAE5;
  color: #065F46;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  padding-top: 48px;
  position: relative;
  transition: var(--transition);
  overflow: visible;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pricing-desc { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-currency { font-size: 22px; font-weight: 700; color: var(--text-light); }
.pricing-amount { font-size: 52px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.pricing-period { font-size: 15px; color: var(--text-muted); }
.pricing-billed { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; min-height: 20px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid var(--bg-alt);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--secondary); font-size: 16px; flex-shrink: 0; margin-top: 1px; display:inline-flex; align-items:center; justify-content:center; }
.pricing-features .cross { color: var(--text-muted); font-size: 16px; flex-shrink: 0; margin-top: 1px; display:inline-flex; align-items:center; justify-content:center; }

/* &#9472;&#9472; 13. TESTIMONIALS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 13px; color: var(--text-muted); }

/* &#9472;&#9472; 14. LOGO STRIP &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.logo-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-strip-label { text-align: center; font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.08em; }
.logo-strip-track {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-strip-item {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: var(--transition);
}
.logo-strip-item:hover { opacity: 1; color: var(--text); }

/* &#9472;&#9472; 15. FEATURE SPLIT &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-split-text .section-label { display: block; }
.feature-split-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.feature-split-text p { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.feature-list-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-list-item .icon {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list-item span { font-size: 15px; color: var(--text-light); line-height: 1.5; }
.feature-visual {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* &#9472;&#9472; 16. STEPS / HOW IT WORKS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--primary-light);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* &#9472;&#9472; 17. FAQ &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* &#9472;&#9472; 18. FORMS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 14px; color: var(--text); }
.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 130px; resize: vertical; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; font-weight: 500; display: none; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* &#9472;&#9472; 19. CTA BANNER &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 50%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* &#9472;&#9472; 20. FOOTER &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-icon { box-shadow: 0 0 0 1px rgba(255,255,255,0.1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-bottom a:hover { color: white; }

/* &#9472;&#9472; 21. ANIMATIONS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,70,229,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(79,70,229,0); }
}
/* Animated gradient keyframe */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
/* Scroll-triggered animate-in */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.8s ease forwards; }

.js .animate-fade-up   { animation: fadeUp 0.6s ease both; }
.js .animate-fade-in   { animation: fadeIn 0.5s ease both; }
.js .animate-scale-in  { animation: scaleIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll reveal &#8212; only hidden when JS is active (html.js class set by JS) */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.revealed { opacity: 1; transform: translateY(0); }
.js .reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Stagger grid children */
[data-stagger] .reveal:nth-child(1)  { animation-delay: 0.0s; }
[data-stagger] .reveal:nth-child(2)  { animation-delay: 0.1s; }
[data-stagger] .reveal:nth-child(3)  { animation-delay: 0.2s; }
[data-stagger] .reveal:nth-child(4)  { animation-delay: 0.3s; }
[data-stagger] .reveal:nth-child(5)  { animation-delay: 0.4s; }
[data-stagger] .reveal:nth-child(6)  { animation-delay: 0.5s; }
[data-stagger] .reveal:nth-child(n+7){ animation-delay: calc((n - 1) * 0.1s); }

/* Parallax layer */
.parallax-layer { will-change: transform; }

/* Skeleton loaders */
@keyframes shimmer {
  from { background-position: -400px 0; }
  to   { background-position:  400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, #f0f0f0 50%, var(--border) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
.skeleton-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.skeleton-line { height: 14px; margin-bottom: 10px; }
.skeleton-line-sm { height: 10px; width: 60%; }
.skeleton-price { height: 52px; width: 40%; margin: 16px 0; }
.skeleton-btn { height: 44px; border-radius: var(--radius); margin-top: 20px; }

/* Form input glow micro-interaction */
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15), 0 0 12px rgba(79,70,229,0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Nav link underline slide-in */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* &#9472;&#9472; 22. UTILITY &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: white; }
.mt-auto { margin-top: auto; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* &#9472;&#9472; 23. PAGE HERO (inner pages) &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-light); max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* &#9472;&#9472; 24. RESPONSIVE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .feature-split { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open + .nav-cta {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 0 24px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    margin-top: 200px;
  }
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .section { padding: 64px 0; }
  .section-header h2 { font-size: 32px; }
  .section-header p { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .steps-grid::before { display: none; }
  .pricing-card.featured { transform: none; }
  .cta-banner { padding: 48px 28px; }
  .cta-banner h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { border-radius: var(--radius); }
  .stat { min-width: 100px; padding: 20px 12px; }
  .stat-num { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 30px; }
  .btn-xl { padding: 14px 24px; font-size: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}

/* &#9472;&#9472; PART 1: NAVBAR DROPDOWN + MOBILE OVERLAY &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-chevron { transition: transform 0.25s ease; flex-shrink: 0; margin-top: 1px; }
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px;
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--text);
}
.nav-dropdown-item:hover { background: var(--primary-light); }
.nav-dd-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.nav-dd-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.nav-dd-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.nav-dropdown-footer { border-top: 1px solid var(--border); padding: 12px 16px; }
.nav-dropdown-footer a { font-size: 13px; font-weight: 600; color: var(--primary); transition: var(--transition); }
.nav-dropdown-footer a:hover { color: var(--primary-dark); }

/* Mobile overlay */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 998;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links > li > a,
.mobile-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.mobile-nav-links > li > a:hover,
.mobile-acc-trigger:hover { background: var(--bg-alt); color: var(--primary); }
.mobile-acc-body { display: none; flex-direction: column; gap: 2px; padding: 4px 0 8px 16px; }
.mobile-acc-body.open { display: flex; }
.mobile-acc-body li a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-acc-body li a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-toggle { display: flex !important; }
}
@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
  .nav-toggle  { display: none !important; }
}

/* &#9472;&#9472; PART 1b: SECTION GRADIENT MESH BACKGROUNDS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.section-alt {
  position: relative;
  overflow: hidden;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(79,70,229,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(16,185,129,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* &#9472;&#9472; PART 2: HERO PILL + 3D BROWSER MOCKUP &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

/* Announcement pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--primary-light);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.hero-pill:hover { background: var(--primary); color: white; }
.hero-pill-arrow { font-size: 14px; transition: transform 0.2s ease; }
.hero-pill:hover .hero-pill-arrow { transform: translateX(3px); }

/* Play button */
.hero-play-btn { gap: 12px; color: var(--text); }
.hero-play-btn:hover { color: var(--primary); background: var(--primary-light); }
.play-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-left: 2px;
  box-shadow: 0 0 0 6px rgba(79,70,229,0.12);
  transition: var(--transition);
}
.hero-play-btn:hover .play-icon { box-shadow: 0 0 0 8px rgba(79,70,229,0.18); transform: scale(1.08); }

/* Hero visual wrapper */
.hero-visual {
  position: relative;
  width: 100%;
  perspective: 1200px;
}

/* Glow blob behind mockup */
.hero-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(79,70,229,0.3) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

/* Browser frame */
.hero-browser {
  position: relative;
  z-index: 1;
  background: #1E1E2E;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transform: perspective(1200px) rotateX(8deg) rotateY(-5deg);
  transform-origin: center top;
  animation: heroFloat 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.hero-browser:hover {
  transform: perspective(1200px) rotateX(2deg) rotateY(0deg);
}
@keyframes heroFloat {
  0%,100% { transform: perspective(1200px) rotateX(8deg) rotateY(-5deg) translateY(0); }
  50%      { transform: perspective(1200px) rotateX(8deg) rotateY(-5deg) translateY(-8px); }
}

/* Browser chrome bar */
.browser-chrome {
  background: #2A2A3E;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.bdot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.bdot-red    { background: #FF5F57; }
.bdot-yellow { background: #FFBD2E; }
.bdot-green  { background: #28C840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-actions { display: flex; gap: 6px; flex-shrink: 0; }
.browser-actions span {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  display: block;
}

/* Dashboard layout inside browser */
.browser-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  height: 340px;
  overflow: hidden;
}

/* Sidebar */
.db-sidebar {
  background: #16162A;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.db-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.db-logo-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: white;
}
.db-logo-text { font-size: 13px; font-weight: 700; color: white; }
.db-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s;
}
.db-nav-item:hover { background: rgba(255,255,255,0.06); }
.db-nav-item.active { background: var(--primary); }
.db-nav-icon { font-size: 13px; line-height: 1; }
.db-nav-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); }
.db-nav-item.active .db-nav-label { color: white; }

/* Main area */
.db-main { display: flex; flex-direction: column; background: #12121F; }
.db-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.db-topbar-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.db-topbar-right { display: flex; align-items: center; gap: 10px; }
.db-search {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.db-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

/* Stat cards */
.db-stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  padding: 14px 16px 10px;
}
.db-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
}
.db-stat-val { font-size: 16px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.db-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.db-stat-change { font-size: 10px; font-weight: 600; }

/* Chart + table row */
.db-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
  flex: 1;
}
.db-chart-card, .db-table-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
}
.db-card-title { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.db-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.db-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.db-bar { width: 100%; border-radius: 3px 3px 0 0; min-height: 4px; transition: height 0.3s ease; }
.db-bar-lbl { font-size: 9px; color: rgba(255,255,255,0.3); }

/* Table rows */
.db-table-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.db-table-row:last-child { border-bottom: none; }
.db-table-avatar {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.db-table-info { flex: 1; }
.db-table-name  { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
.db-table-class { font-size: 10px; color: rgba(255,255,255,0.35); }
.db-table-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats-row { margin-top: 36px; }
  .hero-browser {
    transform: perspective(1200px) rotateX(3deg) rotateY(0deg);
    animation: none;
  }
  .browser-body { height: 300px; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero-inner { gap: 32px; }
  .hero-cta { flex-wrap: wrap; justify-content: center; }
  .hero-browser { transform: none; animation: none; }
  .browser-body { grid-template-columns: 1fr; height: 260px; }
  .db-sidebar { display: none; }
  .db-stats-row { grid-template-columns: repeat(2,1fr); }
  .db-content-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* &#9472;&#9472; PART 3: TRUST BAR MARQUEE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.trust-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.marquee-track-wrap {
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.marquee-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.marquee-item:hover .marquee-logo { opacity: 1; color: var(--text); }

/* &#9472;&#9472; PART 3: PROBLEM &#8594; SOLUTION &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

.ps-section { padding: 0; }
.ps-inner {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  min-height: 520px;
}

/* Columns */
.ps-col {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
}
.ps-old { background: #fff; }
.ps-new { background: #EEF2FF; }

.ps-col-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ps-col-label-green { color: var(--secondary); }
.ps-col-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* List items */
.ps-list { display: flex; flex-direction: column; gap: 12px; }
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}
.ps-item-bad  { color: var(--text-light); background: rgba(239,68,68,0.04); }
.ps-item-good { color: var(--text); background: rgba(16,185,129,0.06); }
.ps-item-bad:hover  { background: rgba(239,68,68,0.08); }
.ps-item-good:hover { background: rgba(16,185,129,0.1); }

.ps-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.ps-icon-bad  { background: #FEE2E2; color: #EF4444; }
.ps-icon-good { background: #D1FAE5; color: #10B981; }

/* Center VS divider */
.ps-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg);
  z-index: 1;
}
.ps-vs-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  z-index: 0;
}
.ps-vs-badge {
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  z-index: 1;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 768px) {
  .ps-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .ps-col { padding: 48px 24px; }
  .ps-vs {
    flex-direction: row;
    padding: 16px 24px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .ps-vs-line { top: 50%; bottom: auto; left: 0; right: 0; width: 100%; height: 1px; }
  .ps-new { background: #EEF2FF; }
}

/* &#9472;&#9472; PART 4: FEATURE TABS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

.ftab-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ftab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.ftab-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.ftab-btn:hover i { color: var(--primary); }
.ftab-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.ftab-btn.active i { color: white; }
.ftab-icon { font-size: 16px; line-height: 1; }

/* Panels */
.ftab-panels { position: relative; }
.ftab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ftab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: ftabIn 0.35s ease both;
}
@keyframes ftabIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tab layout: left text + right mockup */
.ftab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.ftab-features h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.ftab-features > p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.ftab-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.ftab-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.ftab-li-icon { font-size: 16px; flex-shrink: 0; }

/* Mockup panel */
.ftab-mockup {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 280px;
}
.fmock-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fmock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fmock-row:last-of-type { border-bottom: none; }
.fmock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.fmock-info { flex: 1; }
.fmock-name  { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.fmock-sub   { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.fmock-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Fees tab extras */
.fmock-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.fmock-stat { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 10px 12px; }
.fmock-stat-val { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.fmock-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.35); }
.fmock-progress-wrap { margin-top: 14px; }
.fmock-progress-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.fmock-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.fmock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

/* Attendance calendar */
.fmock-cal {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 4px;
  margin-bottom: 10px;
}
.fmock-cal-hdr {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 2px 0;
}
.fmock-cal-day {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
}
.fmock-att-legend {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* Communication chat */
.fmock-chat { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.fmock-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.fmock-bubble-out { background: var(--primary); align-self: flex-end; border-bottom-right-radius: 3px; }
.fmock-bubble-in  { background: rgba(255,255,255,0.08); align-self: flex-start; border-bottom-left-radius: 3px; color: rgba(255,255,255,0.5); font-size: 10px; }
.fmock-announce {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.fmock-ann-icon { font-size: 18px; flex-shrink: 0; }

@media (max-width: 768px) {
  .ftab-layout { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }
  .ftab-btn span.ftab-icon + * { display: none; }
  .ftab-btn { padding: 10px 14px; }
}

/* &#9472;&#9472; PART 4: FEATURE CARDS GRID &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: default;
}
.feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.feat-card:hover .feat-card-icon {
  background: var(--primary);
  transform: scale(1.08);
}
.feat-card:hover .feat-card-icon i,
.feat-card:hover .feat-card-icon svg {
  color: white !important;
  stroke: white !important;
}
.feat-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 13px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1024px) { .feat-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .feat-grid { grid-template-columns: 1fr; } }

/* PART 5: HOW IT WORKS &#8212; 3D step cards */
.hiw-illustration {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}
.hiw-step:hover .hiw-illustration {
  transform: perspective(1000px) rotateX(-4deg) rotateY(4deg) translateZ(8px);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
  align-items: stretch;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.hiw-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.hiw-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-top: 2px dashed var(--primary);
  opacity: 0.4;
}
.hiw-body {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hiw-illustration {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-ill-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hiw-ill-row { display: flex; gap: 8px; }
.hiw-ill-block {
  height: 20px;
  border-radius: 6px;
  flex: 1;
}
.hiw-ill-wide { flex: 2; }
.hiw-ill-avatars {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.hiw-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.hiw-dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hiw-dash-stat { font-size: 15px; font-weight: 800; }
.hiw-dash-lbl  { font-size: 11px; color: var(--text-muted); }
.hiw-dash-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.hiw-dash-bar { height: 100%; border-radius: 999px; }
.hiw-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.hiw-step p  { font-size: 14px; color: var(--text-light); line-height: 1.65; }

@media (max-width: 768px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 40px; }
  .hiw-connector { display: none; }
  .hiw-step { padding: 0; }
}

/* Dashboard cards 3D tilt parent */
.dsg-row-1, .dsg-row-2 {
  perspective: 1000px;
}

/* PART 5: DASHBOARD SCREENSHOT GRID */

.dsg-row-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.dsg-stack { display: flex; flex-direction: column; gap: 20px; }
.dsg-row-2 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.dsg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}
.dsg-card:hover { box-shadow: var(--shadow-xl); }
.dsg-card-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dsg-card-title { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.02em; }
.dsg-card-actions { display: flex; gap: 6px; }
.dsg-card-actions span {
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  display: block;
}
.dsg-card-body { padding: 16px; }
.dsg-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.dsg-stat { background: var(--bg-alt); border-radius: 8px; padding: 10px; text-align: center; }
.dsg-stat-val { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.dsg-stat-lbl { font-size: 10px; color: var(--text-muted); }
.dsg-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.dsg-row:last-of-type { border-bottom: none; }
.dsg-name { font-weight: 600; color: var(--text); flex: 1; font-size: 12px; }
.dsg-sub  { font-size: 11px; color: var(--text-muted); }
.dsg-amt  { font-weight: 700; font-size: 12px; color: var(--text); }
.dsg-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.dsg-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: white; flex-shrink: 0;
}
.dsg-progress-wrap { margin-top: 12px; }
.dsg-progress-lbl { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.dsg-progress-bar { height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; }
.dsg-att-summary { display: flex; align-items: center; gap: 16px; }
.dsg-att-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: conic-gradient(#10B981 0% 94%, #EF4444 94% 98%, #F59E0B 98% 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.dsg-att-circle::after {
  content: '';
  position: absolute;
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
}
.dsg-att-pct { font-size: 12px; font-weight: 800; color: #10B981; position: relative; z-index: 1; }
.dsg-att-lbl { font-size: 9px; color: var(--text-muted); position: relative; z-index: 1; }
.dsg-att-rows { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.dsg-att-row { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-light); }
.dsg-branch-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.dsg-branch-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; }
.dsg-branch-bar { height: 100%; border-radius: 999px; }
.dsg-tt-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
}
.dsg-tt-hdr { font-size: 9px; font-weight: 700; color: var(--text-muted); text-align: center; padding: 3px 0; }
.dsg-tt-cell { font-size: 10px; font-weight: 600; color: var(--text); text-align: center; padding: 6px 4px; border-radius: 4px; }

/* 3D tilt on hover (JS adds inline transform) */
.tilt-card { transform-style: preserve-3d; will-change: transform; transition: transform 0.15s ease, box-shadow 0.15s ease; }

@media (max-width: 1024px) {
  .dsg-row-1 { grid-template-columns: 1fr; }
  .dsg-stack { flex-direction: row; }
  .dsg-row-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .dsg-row-2 { grid-template-columns: 1fr; }
  .dsg-stack { flex-direction: column; }
}

/* PART 6: ROLES & PORTALS &#8212; 3D flip cards already use perspective:1000px */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.role-card-wrap {
  perspective: 1000px;
  height: 460px;
}
.role-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
  cursor: default;
}
.role-card-wrap:hover .role-card { transform: rotateY(180deg); }
.role-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-md);
}
.role-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.role-back h3 { color: white; margin-bottom: 20px; }
.role-back .role-list li { color: rgba(255,255,255,0.9); }
.role-back .role-check {
  background: rgba(255,255,255,0.2);
  color: white;
}
.role-card-featured .role-front {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.1), var(--shadow-lg);
}
.role-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(79,70,229,0.4);
}
.role-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.role-back .role-icon {
  background: rgba(255,255,255,0.15);
}
.role-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
ul.role-list, .role-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.role-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.4;
  padding: 6px 0;
}
.role-check {
  width: 18px;
  height: 18px;
  background: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.role-flip-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1024px) { .roles-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  {
  .roles-grid { grid-template-columns: 1fr; }
  .role-card-wrap { height: auto; }
  .role-card { position: static; transform: none !important; }
  .role-back { display: none; }
  .role-face { position: static; backface-visibility: visible; }
}

/* PART 6: INTEGRATIONS */

.int-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* Left text column */
.int-text h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  line-height: 1.2;
}
.int-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.int-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.int-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.int-perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  flex-shrink: 0;
}

/* Right grid */
.int-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.int-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.int-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.int-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.int-item:hover::before { opacity: 1; }
.int-item:hover .int-item-arrow { opacity: 1; transform: translateX(0); color: var(--primary); }
.int-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.int-item-body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.int-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.int-item-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.int-item-arrow {
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .int-layout { grid-template-columns: 1fr; gap: 48px; }
  .int-text { text-align: center; }
  .int-perks { align-items: center; }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .int-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .int-grid { grid-template-columns: 1fr; }
}

/* PART 7: TESTIMONIALS &#8212; glassmorphism cards */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.3);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.testi-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px) scale(1.02); }
.testi-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text-muted); }
@media (max-width: 1024px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .testi-grid { grid-template-columns: 1fr; } }

/* PART 7: FAQ 2-COL */
.faq-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) { .faq-2col { grid-template-columns: 1fr; } }

/* PART 8: CTA BANNER FULL &#8212; animated gradient */
.cta-section { background: var(--bg-dark); padding: 80px 0; }
.cta-banner-full {
  background: linear-gradient(135deg, var(--primary), #7C3AED, var(--primary-dark), var(--primary));
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
  animation: meshShift 8s ease-in-out infinite alternate;
}
@keyframes meshShift {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
.cta-banner-full h2 {
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.cta-banner-full p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-banner-full .btn-group { position: relative; z-index: 1; }
.cta-outline-btn {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.cta-outline-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-banner-full { padding: 48px 24px; }
  .cta-banner-full h2 { font-size: 30px; }
}

/* PART 8: FOOTER NEWSLETTER */
.footer-newsletter-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.footer-newsletter-row {
  display: flex;
  gap: 8px;
}
.footer-newsletter-input {
  flex: 1;
  padding: 9px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: white;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.12); }
@media (max-width: 480px) { .footer-newsletter-row { flex-direction: column; } }

/* &#9472;&#9472; FEATURES PAGE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

.feat-hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.feat-hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 40px; }
.feat-hero-text h1 { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; }
.feat-hero-sub { font-size: 18px; color: var(--text-light); max-width: 580px; margin: 0 auto 32px; line-height: 1.7; }
.feat-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.feat-hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.feat-stat { padding: 20px 32px; text-align: center; border-right: 1px solid var(--border); }
.feat-stat:last-child { border-right: none; }
.feat-stat-num { font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.feat-stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.feat-tabs-bar {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.feat-tabs-nav { display: flex; gap: 4px; padding: 10px 0; overflow-x: auto; scrollbar-width: none; }
.feat-tabs-nav::-webkit-scrollbar { display: none; }
.feat-tab-link {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text-light);
  white-space: nowrap; transition: var(--transition); text-decoration: none;
}
.feat-tab-link:hover { color: var(--primary); background: var(--primary-light); }
.feat-tab-link.active { background: var(--primary); color: white; }
.feat-tab-link.active i { color: white; }

@media (max-width: 768px) {
  .feat-hero-text h1 { font-size: 34px; }
  .feat-hero-sub { font-size: 16px; }
  .feat-stat { padding: 16px 20px; }
  .feat-stat-num { font-size: 22px; }
}

/* &#9472;&#9472; FEATURES: CATEGORY SECTIONS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.feat-cat-section { padding: 80px 0; }
.feat-cat-header { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.feat-cat-header h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 12px; }
.feat-cat-header p  { font-size: 16px; color: var(--text-light); line-height: 1.7; }

.feat-cat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feat-cat-layout.reverse { direction: rtl; }
.feat-cat-layout.reverse > * { direction: ltr; }

.feat-cat-list { display: flex; flex-direction: column; gap: 18px; }
.feat-cat-item { display: flex; align-items: flex-start; gap: 14px; }
.feat-cat-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--primary-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feat-cat-item-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.feat-cat-item-desc  { font-size: 13px; color: var(--text-light); line-height: 1.55; }

.feat-cat-mockup {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .feat-cat-layout { grid-template-columns: 1fr; gap: 32px; }
  .feat-cat-layout.reverse { direction: ltr; }
}

/* &#9472;&#9472; FEATURES: COMPARISON TABLE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.comp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.comp-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; background: var(--bg);
}
.comp-table thead tr { background: var(--bg-alt); }
.comp-table th {
  padding: 16px 24px; text-align: left;
  font-size: 13px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; border-bottom: 1px solid var(--border);
}
.comp-table th:not(:first-child) { text-align: center; }
.comp-th-acadyl {
  background: var(--primary); color: white;
  padding: 5px 16px; border-radius: 999px; font-size: 12px;
}
.comp-th-old {
  background: var(--bg-dark); color: rgba(255,255,255,0.7);
  padding: 5px 16px; border-radius: 999px; font-size: 12px;
}
.comp-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--bg-alt); }
.comp-table td { padding: 14px 24px; color: var(--text); }
.comp-cell { text-align: center; }
.comp-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #D1FAE5; color: #059669;
  font-size: 13px; font-weight: 700;
}
.comp-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-alt); color: var(--text-muted);
  font-size: 16px;
}
@media (max-width: 600px) {
  .comp-table td, .comp-table th { padding: 12px 14px; }
}

/* &#9472;&#9472; PRICING PAGE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.pricing-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pricing-hero h1 { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.pricing-hero p  { font-size: 18px; color: var(--text-light); }
.pricing-note    { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* Comparison table */
.pcomp-wrap { }
.pcomp-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; text-align: center; }
.pcomp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.pcomp-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--bg); }
.pcomp-table thead tr { background: var(--bg-alt); }
.pcomp-table th {
  padding: 16px 20px; font-size: 13px; font-weight: 700;
  color: var(--text); border-bottom: 1px solid var(--border);
  text-align: center;
}
.pcomp-table th:first-child { text-align: left; }
.pcomp-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.pcomp-table tbody tr:last-child { border-bottom: none; }
.pcomp-table tbody tr:hover { background: var(--bg-alt); }
.pcomp-table td { padding: 13px 20px; color: var(--text); }
.pcomp-cell { text-align: center; }
.pcomp-val  { font-weight: 600; font-size: 13px; color: var(--primary); }
.pcomp-popular {
  background: var(--primary); color: white;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  margin-left: 6px; vertical-align: middle;
}
@media (max-width: 768px) {
  .pricing-hero h1 { font-size: 32px; }
  .pcomp-table td, .pcomp-table th { padding: 11px 12px; font-size: 12px; }
}

/* &#9472;&#9472; PRICING: SKELETON LOADERS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.pricing-grid.loading .pricing-card { display: none; }
.pricing-grid.loading .skeleton-card { display: block; }
.pricing-grid .skeleton-card { display: none; }

/* Spinner for form submit */
.btn-loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn-loading::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toggle smooth slide (already handled by .toggle-track::after transition) */
.toggle-switch input:checked + .toggle-track {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
}

/* &#9472;&#9472; PRICING: STILL NOT SURE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.sns-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
}
.sns-text h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 14px; }
.sns-text p  { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.sns-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.sns-note    { font-size: 13px; color: var(--text-muted); }
.sns-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sns-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.sns-stat-num { font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.sns-stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

@media (max-width: 768px) {
  .sns-wrap { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; }
  .sns-text h2 { font-size: 28px; }
}

/* &#9472;&#9472; PRICING: ENTERPRISE FORM &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.ent-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.ent-form-header h3 { font-size: 26px; font-weight: 800; margin: 8px 0 12px; letter-spacing: -0.02em; }
.ent-form-header p  { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.ent-form textarea.form-control { min-height: 100px; }

@media (max-width: 768px) {
  .ent-form-wrap { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }
}

/* &#9472;&#9472; DEMO / CONTACT / ABOUT PAGES &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

/* Shared 2-col split used on demo & contact */
.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Benefit list items (demo page) */
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: var(--transition);
}
.benefit-icon i { width: 18px; height: 18px; color: var(--primary); }
.benefit-item:hover .benefit-icon { background: var(--primary); }
.benefit-item:hover .benefit-icon i { color: white; }

/* Trust badge tiles (demo page) */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.trust-badge {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
}
.trust-badge:hover { border-color: var(--primary); background: var(--primary-light); }
.trust-badge-icon  { width: 22px; height: 22px; color: var(--primary); margin: 0 auto 6px; display: block; }
.trust-badge-num   { font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 2px; }
.trust-badge-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* Thank-you icon */
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.thankyou-icon i { width: 36px; height: 36px; color: #059669; }

/* Contact info card */
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.contact-info-icon i { width: 20px; height: 20px; color: var(--primary); }
.contact-info-card:hover .contact-info-icon { background: var(--primary); }
.contact-info-card:hover .contact-info-icon i { color: white; }

/* Map placeholder */
.map-placeholder {
  margin-top: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(16,185,129,0.06));
}
.map-placeholder > * { position: relative; z-index: 1; }

/* About &#8212; story stats grid */
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* About &#8212; timeline */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
}
.timeline-item:not(:last-child) { margin-bottom: 40px; }
.timeline-year {
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  padding-top: 4px;
}
.timeline-line {
  flex-shrink: 0;
  width: 2px;
  background: var(--border);
  position: relative;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 6px;
  left: -5px;
  box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-body { flex: 1; padding-bottom: 20px; }
.timeline-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.timeline-body p  { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* Team avatar circle */
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: var(--transition);
}
.card:hover .team-avatar { transform: scale(1.08); }

/* &#9472;&#9472; Responsive &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media (max-width: 768px) {
  .page-split    { grid-template-columns: 1fr; gap: 40px; }
  .story-stats   { grid-template-columns: 1fr 1fr; }
  .timeline-year { width: 56px; font-size: 16px; }
}

@media (max-width: 480px) {
  .trust-badges  { grid-template-columns: 1fr; }
  .story-stats   { grid-template-columns: 1fr; }
  .timeline-item { gap: 14px; }
  .timeline-year { width: 48px; font-size: 14px; }
}

/* &#9472;&#9472; FAQ PAGE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media (max-width: 600px) {
  #faqFilters { gap: 6px; }
  .faq-filter-btn { font-size: 12px; padding: 6px 12px; }
}

/* &#9472;&#9472; CHANGELOG TIMELINE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media (max-width: 480px) {
  .container-sm { padding-left: 40px; }
}

/* &#9472;&#9472; ROADMAP KANBAN &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media (max-width: 900px) {
  #roadmap-kanban,
  .section .container > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* &#9472;&#9472; LEGAL PAGES &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0 96px;
}
.legal-toc {
  position: sticky;
  top: 96px;
}
.legal-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal-toc a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 10px;
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
  transition: var(--transition);
  line-height: 1.4;
}
.legal-toc a:hover,
.legal-toc a.active { color: var(--primary); border-left-color: var(--primary); background: var(--primary-light); border-radius: 0 6px 6px 0; }
.legal-body { max-width: 800px; }
.legal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; display: flex; gap: 20px; flex-wrap: wrap; }
.legal-body h2 { font-size: 22px; font-weight: 800; margin: 48px 0 14px; padding-top: 8px; letter-spacing: -0.01em; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 28px 0 10px; }
.legal-body p  { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 20px; }
.legal-body ul li { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 6px; list-style: disc; }
.legal-body a  { color: var(--primary); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.legal-contact-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 48px;
}
.legal-contact-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.legal-contact-box p  { font-size: 14px; color: var(--text-light); margin-bottom: 0; }

/* Security features grid */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.sec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.sec-item-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sec-item-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.sec-item-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .legal-toc-title { width: 100%; }
  .legal-toc a { border-left: none; border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; margin: 0; }
  .legal-toc a:hover, .legal-toc a.active { border-radius: 999px; }
}
@media (max-width: 600px) {
  .sec-grid { grid-template-columns: 1fr; }
}

/* &#9472;&#9472; RESPONSIVE DESIGN SYSTEM &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

/* Fluid typography via clamp() */
:root {
  --fs-h1:    clamp(28px, 5vw, 60px);
  --fs-h2:    clamp(22px, 3.5vw, 40px);
  --fs-h3:    clamp(16px, 2vw, 22px);
  --fs-body:  clamp(14px, 1.5vw, 16px);
  --fs-sub:   clamp(15px, 2vw, 20px);
  --section-pad: clamp(48px, 8vw, 96px);
}

.hero h1            { font-size: var(--fs-h1); }
.section-header h2  { font-size: var(--fs-h2); }
.section-header p   { font-size: var(--fs-sub); }
.hero-sub           { font-size: var(--fs-sub); }
.section            { padding: var(--section-pad) 0; }
.section-sm         { padding: calc(var(--section-pad) * 0.67) 0; }
.section-lg         { padding: calc(var(--section-pad) * 1.25) 0; }

/* Hero: stacks on tablet/mobile &#8212; handled in section 11 responsive block above */

/* Feature grids: auto-fit fluid columns */
.feat-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid-auto-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-auto-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* How It Works: fluid 3-col &#8594; 1-col */
.hiw-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Dashboard mockup: reduce 3D tilt on smaller screens */
@media (max-width: 1024px) {
  .hero-browser {
    transform: perspective(1200px) rotateX(4deg) rotateY(-2deg);
  }
  @keyframes heroFloat {
    0%,100% { transform: perspective(1200px) rotateX(4deg) rotateY(-2deg) translateY(0); }
    50%      { transform: perspective(1200px) rotateX(4deg) rotateY(-2deg) translateY(-5px); }
  }
}

/* Tablet: 640&#8211;1024px */
@media (max-width: 1024px) and (min-width: 641px) {
  .hiw-illustration { height: 130px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile: < 640px */
@media (max-width: 640px) {
  /* 1-col stacked layouts */
  .hiw-grid,
  .feat-grid,
  .roles-grid,
  .testi-grid,
  .int-grid,
  .dsg-row-1,
  .dsg-row-2,
  .dsg-stack { grid-template-columns: 1fr !important; }

  .hiw-connector { display: none; }
  .hiw-illustration { height: 110px; }
  .hiw-num { font-size: 40px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  .cta-banner-full { padding: 40px 20px; }
  .cta-banner-full h2 { font-size: clamp(22px, 6vw, 30px); }

  .ps-inner { grid-template-columns: 1fr; }
  .ps-col   { padding: 40px 20px; }

  .ftab-layout { grid-template-columns: 1fr; gap: 24px; padding: 24px 16px; }
  .ftab-nav    { gap: 6px; }
  .ftab-btn    { padding: 8px 12px; font-size: 13px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .faq-2col { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: clamp(24px, 7vw, 36px); }

  .container { padding: 0 16px; }
}

/* &#9472;&#9472; PERFORMANCE & ACCESSIBILITY &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */

/* CSS Containment &#8212; isolate layout/paint for heavy components */
.navbar        { contain: layout style; }
.hero-browser  { contain: layout style paint; }
.feat-card     { contain: layout style paint; }
.dsg-card      { contain: layout style paint; }
.role-card-wrap{ contain: layout style; }
.testi-card    { contain: layout style paint; }
.pricing-card  { contain: layout style; }
.ftab-panel    { contain: layout style; }
.mobile-nav    { contain: layout style paint; }

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* &#9472;&#9472; FOCUS STATES (WCAG AA visible focus) &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
/* Remove default only when we provide a custom one */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Suppress focus ring on mouse click (only show for keyboard) */
:focus:not(:focus-visible) { outline: none; }

/* Buttons */
.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(79,70,229,0.2);
}
.btn-primary:focus-visible { outline-color: #fff; }

/* Nav links */
.nav-links a:focus-visible,
.footer-col a:focus-visible,
.mobile-nav a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}

/* FAQ buttons */
.faq-question:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
  border-radius: var(--radius);
}

/* Form controls */
.form-control:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 0;
}

/* Toggle switch keyboard focus */
.toggle-switch:focus-within .toggle-track {
  box-shadow: 0 0 0 3px rgba(79,70,229,0.3);
}

/* &#9472;&#9472; WCAG AA CONTRAST FIXES &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
/* text-muted (#9CA3AF on white) is ~2.8:1 &#8212; too low for body text.
   Only use it for decorative/supplementary text (labels, hints).
   Ensure interactive text meets 4.5:1. */
.nav-links a          { color: #4B5563; } /* was #6B7280 &#8212; now 5.9:1 on white */
.footer-col a         { color: rgba(255,255,255,0.75); } /* 5.1:1 on #111827 */
.footer-bottom        { color: rgba(255,255,255,0.5); }
.pricing-desc         { color: #4B5563; }
.testi-text           { color: #374151; } /* 8.6:1 */
.feat-card p          { color: #4B5563; }
.card p               { color: #4B5563; }

/* &#9472;&#9472; REDUCED MOTION &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-browser { transform: none !important; }
  .marquee-track { animation: none !important; }
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* &#9472;&#9472; IMAGES: lazy load placeholder & WebP support &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
img[data-src],
img[data-srcset] {
  background: var(--bg-alt);
  min-height: 40px;
}
/* Responsive images default */
img { max-width: 100%; height: auto; display: block; }

/* &#9472;&#9472; PRINT &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
@media print {
  .navbar, .mobile-nav, .hero-visual, .cta-banner-full,
  .trust-bar, .footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 10pt; color: #555; }
}
