/* ════════════════════════════════════════════════════════════
   HRSanad Marketing Website — Complete Stylesheet
   Dark glassmorphism · GCC premium aesthetic
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:         #06080f;
  --bg2:        #0a0e1a;
  --bg3:        #0d1220;
  --blue:       #0078D4;
  --blue-l:     #2B88D8;
  --blue-xl:    #60aff0;
  --blue-dim:   rgba(0,120,212,.12);
  --blue-glow:  rgba(0,120,212,.28);
  --cyan:       #00b4d8;
  --cyan-dim:   rgba(0,180,216,.12);
  --gold:       #c9a227;
  --gold-dim:   rgba(201,162,39,.12);
  --green:      #059669;
  --green-dim:  rgba(5,150,105,.15);
  --red:        #ef4444;
  --red-dim:    rgba(239,68,68,.12);
  --amber:      #f59e0b;
  --purple:     #8b5cf6;
  --glass:      rgba(255,255,255,.04);
  --glass-h:    rgba(255,255,255,.07);
  --glass-m:    rgba(255,255,255,.02);
  --border:     rgba(255,255,255,.07);
  --border-b:   rgba(0,120,212,.30);
  --text:       #cbd5e1;
  --text-m:     #64748b;
  --text-d:     #94a3b8;
  --white:      #ffffff;
  --r:          14px;
  --r-sm:       8px;
  --r-lg:       20px;
  --t:          0.25s ease;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 2px; }

h1,h2,h3,h4,h5 { font-family: 'Sora', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.7rem,3.5vw,2.5rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.95rem; }
h5 { font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-d); }
p  { color: var(--text-m); font-size: 0.95rem; line-height: 1.7; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; }
b  { color: var(--white); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── Gradient text ───────────────────────────────────────── */
.grad-text {
  background: linear-gradient(120deg, var(--white) 0%, var(--cyan) 50%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Tag pill ────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-dim); border: 1px solid var(--border-b);
  color: var(--blue-xl); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.tag-red   { background: var(--red-dim);   border-color: rgba(239,68,68,.3);   color: #f87171; }
.tag-green { background: var(--green-dim); border-color: rgba(5,150,105,.3);   color: #34d399; }

/* ── Section head ────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p  { max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  border: none; cursor: pointer; transition: all var(--t);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 20px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-l); transform: translateY(-2px); box-shadow: 0 0 32px var(--blue-glow); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--white); background: var(--blue-dim); }
.btn-ghost {
  background: transparent; color: var(--text-d);
}
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 20px; }

/* ── Fade animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════════════════════════════════ */
.ann-bar {
  background: linear-gradient(90deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  border-bottom: 1px solid var(--border-b);
  padding: 10px 24px;
  position: relative; z-index: 200;
  transition: all .3s ease;
}
.ann-bar.dismissed { display: none; }
.ann-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-d);
  position: relative;
}
.ann-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,180,216,.4);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,216,.4); }
  70%  { box-shadow: 0 0 0 8px rgba(0,180,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}
.ann-link { color: var(--cyan); font-weight: 600; }
.ann-link:hover { text-decoration: underline; }
.ann-close {
  position: absolute; right: 0;
  background: none; border: none; color: var(--text-m);
  cursor: pointer; font-size: 0.8rem; padding: 4px 8px;
  transition: color var(--t);
}
.ann-close:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,15,.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: rgba(6,8,15,.95);
  box-shadow: 0 1px 40px rgba(0,0,0,.4);
}
.nav-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 64px; gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-svg { width: 36px; height: 36px; }
.logo-word { font-family: 'Sora',sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.logo-word em { color: var(--cyan); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-lnk {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--text-d);
  transition: all var(--t); cursor: pointer; white-space: nowrap;
}
.nav-lnk:hover { color: var(--white); background: var(--glass); }
.chev-svg { width: 12px; height: 12px; transition: transform var(--t); }

/* Mega menu */
.has-mega, .has-drop { position: relative; }
.has-mega:hover .mega-drop,
.has-drop:hover .sm-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.has-mega:hover .chev-svg,
.has-drop:hover .chev-svg { transform: rotate(180deg); }

.mega-drop {
  position: absolute; top: calc(100% + 8px); left: -20px;
  background: #0c1223; border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  min-width: 660px;
}
.mega-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; }
.mega-hd { font-size: 0.68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-m); padding: 6px 10px 4px; }
.mi {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px; border-radius: var(--r-sm);
  transition: background var(--t); cursor: pointer;
}
.mi:hover { background: var(--glass); }
.mi-ic { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.mi div { display: flex; flex-direction: column; gap: 1px; }
.mi b  { font-size: 0.82rem; color: var(--white); font-weight: 600; }
.mi small { font-size: 0.72rem; color: var(--text-m); }

.sm-drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #0c1223; border: 1px solid var(--border);
  border-radius: var(--r); padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.sd-item {
  display: block; padding: 9px 14px; border-radius: var(--r-sm);
  font-size: 0.83rem; color: var(--text-d);
  transition: all var(--t);
}
.sd-item:hover { background: var(--glass); color: var(--white); }

/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-d); border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Panel ─────────────────────────────────────────── */
.mp-overlay {
  display: none; position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
}
.mp-overlay.show { display: block; }
.mobile-panel {
  position: fixed; top: 0; right: -100%; z-index: 150;
  width: min(320px,85vw); height: 100vh;
  background: #0a0e1a; border-left: 1px solid var(--border);
  overflow-y: auto; transition: right .3s ease;
  display: flex; flex-direction: column;
}
.mobile-panel.open { right: 0; }
.mp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mp-close-btn {
  background: none; border: none; color: var(--text-m);
  cursor: pointer; font-size: 1rem; padding: 8px;
}
.mp-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.mp-sec {
  font-size: 0.68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-m);
  padding: 12px 10px 4px;
}
.mp-body a {
  display: block; padding: 10px 10px; border-radius: var(--r-sm);
  font-size: 0.875rem; color: var(--text-d);
  transition: all var(--t);
}
.mp-body a:hover { background: var(--glass); color: var(--white); }
.mp-cta-row {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.mp-cta-row .btn { justify-content: center; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
#hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px; min-height: 90vh;
  display: flex; align-items: center;
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,120,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,120,212,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow-a {
  position: absolute; top: -200px; left: -200px; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,120,212,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-b {
  position: absolute; bottom: -200px; right: -100px; z-index: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dim); border: 1px solid var(--border-b);
  color: var(--blue-xl); font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-h1 { margin-bottom: 20px; letter-spacing: -.02em; }
.hero-sub { font-size: 1rem; color: var(--text); max-width: 520px; margin-bottom: 32px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px;
  max-width: fit-content;
}
.hs-item { padding: 0 20px; }
.hs-n { font-size: 1.4rem; font-weight: 800; color: var(--white); font-family: 'Sora',sans-serif; }
.hs-l { font-size: 0.72rem; color: var(--text-m); white-space: nowrap; }
.hs-div { width: 1px; height: 36px; background: var(--border); }

/* Browser frame */
.hero-visual { position: relative; }
.browser-frame {
  background: #0c1223;
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
}
.browser-chrome {
  background: #0a0f1e; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-addr {
  flex: 1; background: rgba(255,255,255,.05);
  border-radius: 6px; padding: 4px 12px;
  font-size: 0.72rem; color: var(--text-m); text-align: center;
}
.browser-body { padding: 16px; }
.db-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.db-title { font-size: 0.8rem; font-weight: 700; color: var(--white); }
.db-period { font-size: 0.72rem; color: var(--text-m); }
.db-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.db-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px;
}
.dbc-v { font-size: 1.2rem; font-weight: 800; color: var(--white); font-family: 'Sora',sans-serif; }
.dbc-l { font-size: 0.65rem; color: var(--text-m); }
.dbc-t { font-size: 0.65rem; color: var(--text-m); margin-top: 2px; }
.dbc-t.up { color: #34d399; }
.db-chart { margin-bottom: 10px; }
.dbc-label { font-size: 0.65rem; color: var(--text-m); margin-bottom: 8px; }
.db-bars { display: flex; align-items: flex-end; gap: 6px; height: 48px; }
.db-bar {
  flex: 1; height: var(--h); background: var(--blue);
  border-radius: 3px 3px 0 0; position: relative;
  opacity: .8; transition: opacity var(--t);
}
.db-bar:hover { opacity: 1; }
.db-bar span { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); font-size: 0.6rem; color: var(--text-m); white-space: nowrap; }
.db-pills { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.db-pill {
  padding: 3px 8px; border-radius: 100px; font-size: 0.65rem; font-weight: 600;
}
.db-pill.green  { background: var(--green-dim);  color: #34d399; }
.db-pill.amber  { background: rgba(245,158,11,.12); color: #fbbf24; }
.db-pill.red    { background: var(--red-dim);    color: #f87171; }

/* Float cards */
.float-card {
  position: absolute; background: #0c1223;
  border: 1px solid var(--border-b);
  border-radius: var(--r); padding: 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  min-width: 160px;
  animation: float 4s ease-in-out infinite;
}
.float-card.fc-a { bottom: -20px; left: -30px; animation-delay: 0s; }
.float-card.fc-b { top: 30px; right: -30px; animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fc-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.fc-ic { font-size: 1.2rem; }
.fc-l { font-size: 0.65rem; color: var(--text-m); }
.fc-v { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.fc-pill {
  display: inline-block; padding: 2px 8px;
  border-radius: 100px; font-size: 0.65rem; font-weight: 600;
  background: var(--green-dim); color: #34d399;
}
.fc-pill.cyan { background: var(--cyan-dim); color: var(--cyan); }

/* ════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 0.78rem; color: var(--text-m); white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.tl-item {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-d);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   PROBLEM → SOLUTION
   ════════════════════════════════════════════════════════════ */
#problem { background: var(--bg2); }
.ps-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.ps-col h2 { margin-bottom: 12px; }
.ps-sub { font-size: 0.95rem; margin-bottom: 28px; }

.pain-list, .solution-list { display: flex; flex-direction: column; gap: 20px; }
.pain-item, .sol-item { display: flex; gap: 14px; align-items: flex-start; }
.pi-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.pi-icon.bad  { background: var(--red-dim);   color: #f87171; }
.pi-icon.good { background: var(--green-dim); color: #34d399; }
.pain-item h4, .sol-item h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--white); }
.pain-item p, .sol-item p { font-size: 0.82rem; }

/* ════════════════════════════════════════════════════════════
   PLATFORM TABS
   ════════════════════════════════════════════════════════════ */
.tabs-wrap {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.tabs-nav {
  display: flex; overflow-x: auto;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 14px 24px; background: none; border: none;
  color: var(--text-m); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all var(--t); white-space: nowrap;
  border-bottom: 2px solid transparent; position: relative;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--blue-xl); border-bottom-color: var(--blue); }

.tab-panel { display: none; padding: 40px; }
.tab-panel.active { display: block; }
.tp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tp-text h3 { font-size: 1.4rem; margin-bottom: 10px; }
.tp-text p  { margin-bottom: 16px; font-size: 0.9rem; }
.tp-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.tp-list li {
  font-size: 0.85rem; color: var(--text-d); padding-left: 16px;
  position: relative;
}
.tp-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

/* Tab card visuals */
.tp-card {
  background: #0a0f1e; border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
}
.tpc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.tpc-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid var(--border-b);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: var(--blue-xl);
  flex-shrink: 0;
}
.tpc-name { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.tpc-role { font-size: 0.72rem; color: var(--text-m); }
.tpc-status {
  margin-left: auto; padding: 2px 8px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; flex-shrink: 0;
}
.active-s { background: var(--green-dim); color: #34d399; }
.warn-s   { background: rgba(245,158,11,.12); color: #fbbf24; }
.tpc-tabs-mini { display: flex; gap: 4px; margin-bottom: 12px; }
.ttm {
  padding: 4px 10px; border-radius: 100px; font-size: 0.65rem; font-weight: 600;
  background: var(--glass); color: var(--text-m); cursor: pointer;
}
.ttm.active { background: var(--blue-dim); color: var(--blue-xl); }
.tpc-fields { display: flex; flex-direction: column; gap: 8px; }
.tpf {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; padding: 6px 0; border-bottom: 1px solid var(--border);
}
.tpf:last-child { border-bottom: none; }
.tpf span { color: var(--text-m); }
.tpf b { color: var(--white); font-weight: 600; }
.tpc-btns { display: flex; gap: 8px; margin-top: 12px; }
.tpc-btn {
  flex: 1; padding: 6px; border-radius: 6px; text-align: center;
  font-size: 0.72rem; font-weight: 600;
  background: var(--glass); color: var(--text-d); cursor: pointer;
  border: 1px solid var(--border); transition: all var(--t);
}
.tpc-btn.green-btn { background: var(--green-dim); color: #34d399; border-color: rgba(5,150,105,.3); }
.tpc-btn.red-btn   { background: var(--red-dim);   color: #f87171; border-color: rgba(239,68,68,.3); }
.ess-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 4px; }
.ess-tile {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 8px;
  font-size: 0.72rem; font-weight: 600; color: var(--text-d);
  text-align: center; cursor: pointer; transition: all var(--t);
}
.ess-tile:hover { background: var(--blue-dim); color: var(--white); }
.warn-t { color: #fbbf24; }
.red-t  { color: #f87171; }
.green-t{ color: #34d399; }
.blue-t { color: var(--blue-xl); }

/* ════════════════════════════════════════════════════════════
   MODULES GRID
   ════════════════════════════════════════════════════════════ */
#modules { background: var(--bg2); }
.modules-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.mod-card {
  background: var(--glass-m); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
  transition: all var(--t);
  animation-delay: var(--delay);
}
.mod-card:hover { background: var(--glass); border-color: var(--border-b); transform: translateY(-3px); }
.mod-ico {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 12px;
}
.mod-ico.blue   { background: var(--blue-dim);  }
.mod-ico.green  { background: var(--green-dim); }
.mod-ico.gold   { background: var(--gold-dim);  }
.mod-ico.cyan   { background: var(--cyan-dim);  }
.mod-ico.purple { background: rgba(139,92,246,.12); }
.mod-ico.red    { background: var(--red-dim);   }
.mod-card h3 { font-size: 0.9rem; margin-bottom: 6px; }
.mod-card p  { font-size: 0.78rem; margin-bottom: 12px; }
.mod-tag {
  display: inline-block; padding: 2px 8px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: .06em;
}
.t-core     { background: var(--blue-dim);  color: var(--blue-xl); }
.t-ess      { background: var(--cyan-dim);  color: var(--cyan); }
.t-talent   { background: rgba(139,92,246,.12); color: #a78bfa; }
.t-analytics{ background: var(--gold-dim);  color: #fbbf24; }
.t-platform { background: var(--glass);     color: var(--text-d); }
.t-finance  { background: var(--green-dim); color: #34d399; }

/* ════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════ */
.feats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  transition: all var(--t);
}
.feat-card:hover { border-color: var(--border-b); background: var(--glass-h); transform: translateY(-3px); }
.feat-ic { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.feat-card h3 { font-size: 1rem; margin-bottom: 10px; }
.feat-card p  { font-size: 0.83rem; margin-bottom: 14px; }
.feat-badge {
  display: inline-block; background: var(--blue-dim); color: var(--blue-xl);
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════
   COMPLIANCE
   ════════════════════════════════════════════════════════════ */
#compliance {
  background: linear-gradient(135deg, #060a14 0%, #0a1224 50%, #06080f 100%);
  position: relative; overflow: hidden;
}
#compliance::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,120,212,.08) 0%, transparent 70%);
}
.comp-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.comp-left h2 { margin-bottom: 14px; }
.comp-left p  { margin-bottom: 24px; }
.law-list { display: flex; flex-direction: column; gap: 10px; }
.law-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text); }
.lc {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-dim); color: #34d399;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.comp-badges { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.cb {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 12px; text-align: center;
  transition: all var(--t);
}
.cb:hover { border-color: var(--border-b); background: var(--glass-h); }
.cb-fl { font-size: 1.6rem; margin-bottom: 6px; }
.cb-t { font-size: 0.75rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.cb-s { font-size: 0.65rem; color: var(--text-m); }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
#how-it-works { background: var(--bg2); }
.steps-wrap {
  display: flex; align-items: flex-start; gap: 0;
}
.step {
  flex: 1; background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px; position: relative;
}
.step-conn {
  width: 48px; flex-shrink: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  margin-top: 80px; position: relative;
}
.step-conn::before, .step-conn::after {
  content: ''; position: absolute; top: -4px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--cyan);
}
.step-conn::after { right: 0; }
.step-num {
  font-size: 3rem; font-weight: 900; color: rgba(0,120,212,.15);
  font-family: 'Sora',sans-serif; line-height: 1;
  margin-bottom: 12px;
}
.step-ic { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p  { font-size: 0.83rem; margin-bottom: 14px; }
.step-list { display: flex; flex-direction: column; gap: 6px; }
.step-list li {
  font-size: 0.78rem; color: var(--text-d);
  padding-left: 14px; position: relative;
}
.step-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--cyan);
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  transition: all var(--t);
}
.testi-card:hover { border-color: var(--border-b); transform: translateY(-3px); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
blockquote { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.ta-name { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.ta-role { font-size: 0.72rem; color: var(--text-m); }

/* ════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════════════════════════ */
#comparison { background: var(--bg2); }
.comp-table-wrap { overflow-x: auto; border-radius: var(--r); }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.comp-table th, .comp-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.comp-table thead tr { background: var(--bg3); }
.comp-table th { font-size: 0.78rem; font-weight: 700; color: var(--text-d); }
.ct-feat { width: 30%; color: var(--white) !important; }
.ct-hs { background: rgba(0,120,212,.06) !important; }
.ct-hs-lbl {
  display: flex; align-items: center; gap: 6px;
  color: var(--blue-xl) !important; font-weight: 700;
}
.comp-table tbody tr { background: var(--glass-m); transition: background var(--t); }
.comp-table tbody tr:hover { background: var(--glass); }
.comp-table td:first-child { color: var(--white); font-weight: 500; }
.cty { color: #34d399; font-weight: 700; margin-right: 4px; }
.ctn { color: #f87171; font-weight: 700; margin-right: 4px; }
.ctp { color: #fbbf24; font-weight: 700; margin-right: 4px; }

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, #060b18 0%, #0a1428 50%, #060b18 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); border-radius: var(--r); overflow: hidden; }
.stat-card {
  background: var(--bg); padding: 36px 24px; text-align: center;
}
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-n { font-size: 2.2rem; font-weight: 900; color: var(--white); font-family: 'Sora',sans-serif; }
.stat-s { font-size: 1.1rem; font-weight: 700; color: var(--blue-xl); }
.stat-l { font-size: 0.75rem; color: var(--text-m); margin-top: 6px; }

/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 40px;
}
.ptl { font-size: 0.875rem; color: var(--text-d); font-weight: 500; }
.pt-switch {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--border);
  cursor: pointer; position: relative; transition: background var(--t);
}
.pt-switch[aria-checked="true"] { background: var(--blue); border-color: var(--blue); }
.pt-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--text-m); transition: all var(--t);
}
.pt-switch[aria-checked="true"] .pt-thumb { transform: translateX(20px); background: #fff; }
.save-tag {
  background: var(--green-dim); color: #34d399;
  padding: 2px 7px; border-radius: 100px; font-size: 0.65rem; font-weight: 700;
}

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 20px; }
.plan-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  position: relative; transition: all var(--t);
}
.plan-card:hover { border-color: var(--border-b); }
.plan-card.popular {
  background: linear-gradient(160deg, rgba(0,120,212,.12) 0%, rgba(0,180,216,.06) 100%);
  border-color: var(--border-b);
  box-shadow: 0 0 40px rgba(0,120,212,.15);
}
.pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #fff; font-size: 0.65rem; font-weight: 800;
  padding: 3px 12px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-m); margin-bottom: 10px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.pc { font-size: 0.78rem; color: var(--text-m); margin-right: 2px; }
.pa { font-size: 2.2rem; font-weight: 900; color: var(--white); font-family: 'Sora',sans-serif; }
.pp { font-size: 0.75rem; color: var(--text-m); }
.plan-custom { font-size: 2rem; font-weight: 900; color: var(--white); font-family: 'Sora',sans-serif; }
.plan-range { font-size: 0.72rem; color: var(--blue-xl); font-weight: 600; margin-bottom: 8px; }
.plan-desc { font-size: 0.82rem; margin-bottom: 16px; min-height: 36px; }
.plan-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 0; }
.plan-feats li { font-size: 0.78rem; padding-left: 18px; position: relative; color: var(--text-d); }
.pfy::before { content: '✓'; position: absolute; left: 0; color: #34d399; font-weight: 700; font-size: 0.7rem; }
.pfn { opacity: .45; }
.pfn::before { content: '✕'; position: absolute; left: 0; color: var(--text-m); font-weight: 700; font-size: 0.7rem; }
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--text-m); }

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
#faq { background: var(--bg2); }
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--border-b); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none;
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-align: left; gap: 12px;
  transition: color var(--t);
}
.faq-q:hover { color: var(--blue-xl); }
.faq-ic {
  font-size: 1.2rem; font-weight: 300; color: var(--text-m);
  transition: transform .3s ease, color var(--t);
  flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-ic { transform: rotate(45deg); color: var(--blue-xl); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.875rem; line-height: 1.7; color: var(--text-d);
}
.faq-item.open .faq-a { max-height: 300px; }

/* ════════════════════════════════════════════════════════════
   MOBILE APP
   ════════════════════════════════════════════════════════════ */
#mobile-app {
  background: linear-gradient(160deg, #060b18 0%, #0a1428 60%, #06080f 100%);
}
.app-layout { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }

.app-phone-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.app-phone {
  width: 200px; background: #0c1223;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 32px; overflow: hidden; position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
}
.ph-notch {
  width: 60px; height: 14px; background: #0a0f1e;
  border-radius: 0 0 10px 10px; margin: 0 auto 8px;
}
.ph-screen { padding: 0 10px 10px; }
.ph-statusbar { height: 4px; background: rgba(255,255,255,.05); border-radius: 2px; margin-bottom: 8px; }
.ph-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 4px; margin-bottom: 10px;
}
.ph-title { font-size: 0.6rem; font-weight: 800; letter-spacing: .1em; color: var(--white); }
.ph-topbar span { font-size: 0.75rem; color: var(--text-d); }
.ph-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; margin-bottom: 10px; }
.ph-tile {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 6px; text-align: center;
}
.pht-ic { font-size: 1rem; margin-bottom: 3px; }
.pht-l  { font-size: 0.5rem; font-weight: 700; letter-spacing: .06em; color: var(--text-m); }
.ph-sitebar {
  display: flex; align-items: center; gap: 5px;
  background: var(--green-dim); border-radius: 6px; padding: 5px 8px;
  font-size: 0.55rem; font-weight: 600; color: #34d399;
}
.app-ver { font-size: 0.72rem; color: var(--text-m); }

.app-info-col h3 { font-size: 1.3rem; margin-bottom: 10px; }
.app-info-col p  { margin-bottom: 16px; }
.app-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.ach {
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  background: var(--glass); border: 1px solid var(--border); color: var(--text-d);
}
.ach.green-ch { background: var(--green-dim); border-color: rgba(5,150,105,.3); color: #34d399; }
.app-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.app-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: var(--text);
}
.app-feats li span:first-child { font-size: 1rem; width: 24px; flex-shrink: 0; text-align: center; }
.app-dl-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--blue); color: #fff;
  border-radius: var(--r); padding: 14px 24px;
  box-shadow: 0 0 24px var(--blue-glow);
  transition: all var(--t); margin-bottom: 16px;
  text-decoration: none;
}
.app-dl-btn:hover { background: var(--blue-l); transform: translateY(-2px); }
.app-dl-btn strong { display: block; font-size: 0.9rem; }
.app-dl-btn small  { font-size: 0.72rem; opacity: .8; }
.app-tip {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px;
  font-size: 0.78rem; color: var(--text-d); margin-bottom: 16px;
}
.app-tip span:first-child { font-size: 1rem; flex-shrink: 0; }
.app-reqs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.ar {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.ar strong { font-size: 0.72rem; color: var(--white); }
.ar span   { font-size: 0.65rem; color: var(--text-m); }

/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
#cta { background: var(--bg2); }
.cta-box {
  max-width: 680px; margin: 0 auto; text-align: center;
  background: var(--glass); border: 1px solid var(--border-b);
  border-radius: var(--r-lg); padding: 56px 40px; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(0,120,212,.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.cta-box h2 { margin-bottom: 12px; position: relative; z-index: 1; }
.cta-box p  { margin-bottom: 28px; font-size: 1rem; position: relative; z-index: 1; }
.cta-form {
  display: flex; gap: 10px; max-width: 500px; margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.cta-input {
  flex: 1; padding: 12px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--white); font-size: 0.875rem; font-family: inherit;
  outline: none; transition: border-color var(--t);
}
.cta-input::placeholder { color: var(--text-m); }
.cta-input:focus { border-color: var(--blue); }
.cta-or { font-size: 0.82rem; color: var(--text-m); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-signin { color: var(--blue-xl); font-weight: 600; }
.cta-signin:hover { text-decoration: underline; }
.cta-trust {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--text-m); position: relative; z-index: 1;
}
.cta-trust span::before { content: ''; margin-right: 4px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  background: #030508;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.ft-tagline { font-size: 0.82rem; color: var(--text-m); line-height: 1.6; max-width: 260px; }
.ft-flags { display: flex; gap: 8px; flex-wrap: wrap; }
.ft-flags span { font-size: 0.75rem; color: var(--text-m); }
.ft-social { display: flex; gap: 10px; }
.ft-soc {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-m); transition: all var(--t);
}
.ft-soc:hover { background: var(--blue-dim); border-color: var(--border-b); color: var(--white); }

.footer-col h5 { margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.82rem; color: var(--text-m);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--white); }
.ft-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.ft-contact h5 { margin-bottom: 4px; }
.ft-contact a { font-size: 0.82rem; color: var(--text-m); transition: color var(--t); }
.ft-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-m); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .modules-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .comp-badges  { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .hero-layout   { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual   { display: none; }
  .ps-grid       { grid-template-columns: 1fr; }
  .tp-layout     { grid-template-columns: 1fr; }
  .tp-visual     { display: none; }
  .feats-grid    { grid-template-columns: repeat(2,1fr); }
  .comp-wrap     { grid-template-columns: 1fr; }
  .comp-badges   { grid-template-columns: repeat(4,1fr); }
  .testi-grid    { grid-template-columns: 1fr; }
  .steps-wrap    { flex-direction: column; }
  .step-conn     { width: 2px; height: 32px; margin: 0 0 0 40px; }
  .step-conn::before, .step-conn::after { top: auto; left: -4px; }
  .step-conn::after { bottom: 0; top: auto; }
  .stats-grid    { grid-template-columns: repeat(3,1fr); }
  .app-layout    { grid-template-columns: 1fr; }
  .app-phone-col { order: 2; }
  .app-info-col  { order: 1; }
  .app-reqs      { grid-template-columns: repeat(2,1fr); }
  .cta-form      { flex-direction: column; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .modules-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .feats-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-stats    { flex-wrap: wrap; padding: 12px; }
  .hs-item       { padding: 8px 12px; }
  .hs-div        { display: none; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .comp-badges   { grid-template-columns: repeat(2,1fr); }
  .tab-btn       { padding: 10px 14px; font-size: 0.8rem; }
  .tab-panel     { padding: 20px; }
  .cta-box       { padding: 36px 20px; }
}

@media (max-width: 400px) {
  .modules-grid { grid-template-columns: 1fr; }
}
