/* ================================================================
   ALMACATION — Complete Stylesheet
   Fonts: Sora (headings) + Plus Jakarta Sans (body) via Google Fonts
   Colors: Indigo #4F46E5 · Violet #7C3AED · Cyan #22D3EE · Snow #F8FAFC
   ================================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-overflow-scrolling: touch; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: #F8FAFC; color: #0F172A; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #4F46E5; border-radius: 99px; }

/* ── CSS VARIABLES ── */
:root {
  --indigo: #4F46E5;
  --violet: #7C3AED;
  --blue:   #3B82F6;
  --cyan:   #22D3EE;
  --snow:   #F8FAFC;
  --s100:   #F1F5F9;
  --s200:   #E2E8F0;
  --s300:   #CBD5E1;
  --s500:   #64748B;
  --s700:   #334155;
  --s900:   #0F172A;
  --white:  #FFFFFF;
  --gm:  linear-gradient(135deg, #4F46E5, #7C3AED);
  --gc:  linear-gradient(135deg, #3B82F6, #22D3EE);
  --gh:  linear-gradient(160deg, #EEF2FF 0%, #F3E8FF 40%, #ECFEFF 100%);
  --sm:  0 4px 20px rgba(79,70,229,.12);
  --sl:  0 20px 60px rgba(79,70,229,.15);
  --sx:  0 40px 80px rgba(79,70,229,.2);
  --r1:  8px;
  --r2:  16px;
  --r3:  24px;
  --r4:  32px;
  --rf:  9999px;
  --nh:  70px;
  --tr:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.sec       { padding: 5rem 0; }
.sec-alt   { background: #F1F5F9; }
.sec-dark  { background: #0F172A; color: #fff; }
.sec-dark .sec-title  { color: #fff; }
.sec-dark .sec-body   { color: rgba(255,255,255,.65); }
.sec-dark .sec-label  { color: #22D3EE; }
.sec-dark .divider    { background: linear-gradient(90deg,#4F46E5,#22D3EE); }

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

/* ── TYPOGRAPHY ── */
.sec-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #4F46E5;
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;
}
.sec-label::before {
  content: ''; display: inline-block; width: 20px; height: 2px;
  background: var(--gm); border-radius: 99px;
}
.sec-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.5px; }
.sec-body  { color: #334155; font-size: 1.02rem; line-height: 1.8; max-width: 640px; }
.divider   { width: 48px; height: 4px; border-radius: 99px; background: var(--gm); margin: 1.25rem 0 2rem; }

.grad-text      { background: var(--gm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text-cool { background: var(--gc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-center { text-align: center; }
.text-center .sec-label { justify-content: center; }
.text-center .divider   { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--rf);
  font-weight: 600; font-size: 0.95rem; border: none;
  transition: var(--tr); cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gm); color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,70,229,.45); }
.btn-secondary {
  background: #fff; color: #4F46E5;
  border: 1.5px solid #4F46E5;
}
.btn-secondary:hover { background: #4F46E5; color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(79,70,229,.08); color: #4F46E5;
  border: 1.5px solid rgba(79,70,229,.2);
}
.btn-ghost:hover { background: #4F46E5; color: #fff; }
.btn-white {
  background: #fff; color: #4F46E5; box-shadow: var(--sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sl); }
.btn-lg  { padding: 1rem 2.2rem; font-size: 1.02rem; }
.btn-sm  { padding: 0.5rem 1.15rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES & TAGS ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 1rem; border-radius: var(--rf);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-indigo { background: rgba(79,70,229,.1); color: #4F46E5; border: 1px solid rgba(79,70,229,.2); }
.badge-cyan   { background: rgba(34,211,238,.1); color: #0891B2; border: 1px solid rgba(34,211,238,.25); }
.badge-violet { background: rgba(124,58,237,.1); color: #7C3AED; border: 1px solid rgba(124,58,237,.2); }
.badge-green  { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.tag { display: inline-block; padding: 0.3rem 0.85rem; border-radius: var(--rf); font-size: 0.78rem; font-weight: 600; background: rgba(79,70,229,.1); color: #4F46E5; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3);
  padding: 1.75rem; transition: var(--tr); position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--sl); border-color: rgba(79,70,229,.25); transform: translateY(-4px); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nh); display: flex; align-items: center; padding: 0 2rem;
  background: rgba(248,250,252,.92); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(79,70,229,.08); transition: box-shadow 0.3s;
}
#nav.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 4px 24px rgba(79,70,229,.08); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800;
  background: var(--gm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  padding: 0.45rem 0.85rem; border-radius: var(--r1);
  font-size: 0.9rem; font-weight: 500; color: #334155; transition: var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: #4F46E5; background: rgba(79,70,229,.07); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r1);
  cursor: pointer; transition: var(--tr);
}
.nav-hamburger:hover { background: rgba(79,70,229,.07); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #0F172A; border-radius: 99px; transition: var(--tr); }
.nav-mobile {
  display: none; position: fixed;
  top: var(--nh); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid #E2E8F0;
  padding: 1rem 1.5rem 1.5rem; flex-direction: column; gap: 0.4rem;
  z-index: 999; box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 1rem; border-radius: var(--r2); font-weight: 500;
  color: #334155; border: 1px solid transparent; transition: var(--tr); display: block;
}
.nav-mobile a:hover { background: rgba(79,70,229,.07); color: #4F46E5; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--gm); color: #fff; text-align: center;
  padding: 0.55rem 3rem 0.55rem 1rem; font-size: 0.83rem; font-weight: 500;
  position: relative; z-index: 1001;
}
.ann-bar a { color: #22D3EE; font-weight: 700; margin-left: 0.5rem; }
.ann-bar a:hover { text-decoration: underline; }
.ann-dismiss {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0.25rem;
}

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nh) + 3rem); padding-bottom: 4rem;
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gh); position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(79,70,229,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(79,70,229,.04) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.2;
  pointer-events: none;
}
.blob1 { width: 500px; height: 500px; background: radial-gradient(circle,#4F46E5,transparent); top: -80px; right: -100px; animation: bfloat 8s ease-in-out infinite; }
.blob2 { width: 400px; height: 400px; background: radial-gradient(circle,#22D3EE,transparent); bottom: -60px; left: -80px; animation: bfloat 11s ease-in-out infinite 2s; }
.blob3 { width: 280px; height: 280px; background: radial-gradient(circle,#7C3AED,transparent); top: 40%; left: 32%; animation: bfloat 14s ease-in-out infinite 4s; }
@keyframes bfloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(25px,-18px) scale(1.05)} 66%{transform:translate(-12px,22px) scale(.97)} }

.hero-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { margin-bottom: 1.25rem; }
.hero-title { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.25rem; }
.hero-desc  { font-size: 1.08rem; line-height: 1.8; color: #334155; margin-bottom: 2rem; max-width: 520px; }
.hero-btns  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid #E2E8F0; }
.stat-n { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; background: var(--gm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-l { font-size: 0.8rem; color: #64748B; margin-top: 0.1rem; }

/* Hero Visual Card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r4);
  padding: 2rem; box-shadow: var(--sx); position: relative; z-index: 2;
}
.hero-card-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 0.25rem; }
.hero-card-sub   { font-size: 0.78rem; color: #64748B; margin-bottom: 1.5rem; }
.hero-mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #E2E8F0; }
.mini-stat-n { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800; }
.mini-stat-l { font-size: 0.7rem; color: #64748B; }
.float-card {
  position: absolute; background: #fff; border: 1px solid #E2E8F0;
  border-radius: var(--r2); padding: 0.9rem 1.1rem; box-shadow: var(--sl); z-index: 3;
}
.float1 { top: -1.25rem; right: -1.25rem; animation: fc 4s ease-in-out infinite; }
.float2 { bottom: 2rem; left: -1.75rem; animation: fc 4.5s ease-in-out infinite 2s; }
@keyframes fc { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.float-row { display: flex; align-items: center; gap: 0.6rem; }
.float-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gm); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.float-label-top  { font-size: 0.7rem; color: #64748B; font-weight: 500; }
.float-label-main { font-size: 0.85rem; font-weight: 700; }

/* ── SKILL BARS ── */
.skill-bar-wrap { margin-bottom: 0.85rem; }
.skill-bar-label { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; color: #334155; }
.skill-bar-track { height: 8px; background: #E2E8F0; border-radius: 99px; overflow: hidden; }
.skill-bar-fill  { height: 100%; border-radius: 99px; background: var(--gm); width: 0; transition: width 1.3s cubic-bezier(0.4,0,0.2,1); }
.bar-red  { background: linear-gradient(90deg,#EF4444,#F97316) !important; }
.bar-cool { background: linear-gradient(90deg,#3B82F6,#22D3EE) !important; }
.bar-viol { background: linear-gradient(90deg,#7C3AED,#4F46E5) !important; }
.bar-green{ background: linear-gradient(90deg,#10B981,#059669) !important; }

/* ── STATS STRIP ── */
.stats-strip { padding: 3.5rem 0; background: var(--gm); position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E"); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; position: relative; z-index: 1; }
.sn { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
.sl-label { color: rgba(255,255,255,.75); font-size: 0.88rem; margin-top: 0.35rem; }
.sl-sub   { color: rgba(255,255,255,.5); font-size: 0.75rem; margin-top: 0.15rem; }

/* ── DIFF CARDS ── */
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.diff-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r2);
  padding: 1.5rem; transition: var(--tr); position: relative; overflow: hidden;
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gm); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.diff-card:hover { transform: translateY(-5px); box-shadow: var(--sl); border-color: rgba(79,70,229,.2); }
.diff-card:hover::before { transform: scaleX(1); }
.diff-icon { width: 48px; height: 48px; border-radius: var(--r2); background: rgba(79,70,229,.08); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.diff-card h4 { font-family: 'Sora', sans-serif; font-size: 0.93rem; font-weight: 700; margin-bottom: 0.45rem; }
.diff-card p  { font-size: 0.82rem; color: #64748B; line-height: 1.6; }

/* ── PILLAR CARDS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.pillar-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3);
  padding: 2rem; position: relative; overflow: hidden; transition: var(--tr);
}
.pillar-num {
  position: absolute; top: 1rem; right: 1.5rem; font-family: 'Sora', sans-serif;
  font-size: 4rem; font-weight: 800; color: rgba(79,70,229,.06); line-height: 1;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--sl); border-color: rgba(79,70,229,.2); }
.pillar-icon { width: 56px; height: 56px; border-radius: var(--r2); background: var(--gm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; box-shadow: 0 6px 20px rgba(79,70,229,.3); }
.pillar-card h3 { font-family: 'Sora', sans-serif; font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; }
.pillar-card p  { font-size: 0.84rem; color: #64748B; line-height: 1.65; }

/* ── PROGRAM CARDS ── */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.prog-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3);
  padding: 2rem; transition: var(--tr);
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--sl); }
.prog-card.featured { background: var(--gm); color: #fff; border: none; }
.prog-card.featured p  { color: rgba(255,255,255,.82); }
.prog-card.featured li { color: rgba(255,255,255,.82); }
.prog-num {
  width: 40px; height: 40px; border-radius: var(--r1); background: var(--gm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 0.88rem; color: #fff;
  margin-bottom: 1.25rem; box-shadow: 0 4px 12px rgba(79,70,229,.3);
}
.prog-card.featured .prog-num { background: rgba(255,255,255,.2); box-shadow: none; }
.prog-card h3 { font-family: 'Sora', sans-serif; font-size: 1.02rem; font-weight: 700; margin-bottom: 0.75rem; }
.prog-card p  { font-size: 0.86rem; color: #64748B; line-height: 1.65; margin-bottom: 1rem; }
.prog-card ul { display: flex; flex-direction: column; gap: 0.35rem; }
.prog-card li { font-size: 0.82rem; color: #64748B; display: flex; gap: 0.5rem; align-items: flex-start; }
.prog-card li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: rgba(79,70,229,.1); color: #4F46E5; border-radius: 4px; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.prog-card.featured li::before { background: rgba(255,255,255,.2); color: #fff; }

/* ── ROADMAP ── */
.roadmap { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 680px; margin: 2rem auto 0; }
.roadmap::before { content: ''; position: absolute; left: 24px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(to bottom,#4F46E5,#7C3AED,#22D3EE); border-radius: 99px; }
.road-step { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2rem; position: relative; }
.road-step:last-child { padding-bottom: 0; }
.road-dot {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%;
  background: #fff; border: 2px solid #4F46E5;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.88rem; color: #4F46E5; z-index: 1; transition: var(--tr);
}
.road-step:hover .road-dot { background: var(--gm); color: #fff; border-color: transparent; box-shadow: 0 6px 20px rgba(79,70,229,.35); }
.road-body { padding-top: 0.85rem; }
.road-body h4 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; }
.road-body p  { font-size: 0.83rem; color: #64748B; margin-top: 0.2rem; }

/* ── TRUST CARDS ── */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.trust-card { background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r2); padding: 1.25rem; transition: var(--tr); }
.trust-card:hover { border-color: #4F46E5; box-shadow: var(--sm); transform: translateY(-3px); }
.trust-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.trust-card h4 { font-family: 'Sora', sans-serif; font-size: 0.86rem; font-weight: 700; color: #4F46E5; margin-bottom: 0.3rem; }
.trust-card p  { font-size: 0.78rem; color: #64748B; line-height: 1.55; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.blog-card { background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3); overflow: hidden; transition: var(--tr); cursor: pointer; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sl); border-color: rgba(79,70,229,.2); }
.blog-img { height: 160px; background: var(--gh); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.blog-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(79,70,229,.12),rgba(124,58,237,.08)); }
.blog-body { padding: 1.4rem; }
.blog-tag   { margin-bottom: 0.75rem; }
.blog-card h3 { font-family: 'Sora', sans-serif; font-size: 0.97rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; }
.blog-card p  { font-size: 0.82rem; color: #64748B; line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; color: #64748B; margin-top: 0.85rem; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gm); border-radius: var(--r3); padding: 4rem 3rem;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%,rgba(255,255,255,.1),transparent 60%), radial-gradient(ellipse at 80% 50%,rgba(34,211,238,.2),transparent 60%); }
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { font-family: 'Sora', sans-serif; font-size: 2rem; color: #fff; margin-bottom: 0.75rem; }
.cta-strip p  { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIAL ── */
.testimonial-card { background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3); padding: 2rem; position: relative; }
.testimonial-card::before { content: '"'; font-family: 'Sora', sans-serif; font-size: 5rem; color: rgba(79,70,229,.08); line-height: 1; position: absolute; top: 0.5rem; left: 1.5rem; }
.testimonial-text { font-size: 0.95rem; color: #334155; line-height: 1.75; padding-top: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gm); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.88rem; flex-shrink: 0; }
.testimonial-name { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; }
.testimonial-role { font-size: 0.76rem; color: #64748B; }
.stars { margin-left: auto; display: flex; gap: 2px; font-size: 0.85rem; }

/* ── SLIDER ── */
.slider-wrap  { overflow: hidden; }
.slider-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slider-item  { min-width: 100%; padding: 0.5rem; }
.slider-dots  { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.slider-dot   { width: 8px; height: 8px; border-radius: 50%; background: #CBD5E1; border: none; cursor: pointer; transition: var(--tr); }
.slider-dot.active { background: #4F46E5; width: 24px; border-radius: 4px; }

/* ── CONTACT ── */
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border-radius: var(--r2); background: #F1F5F9; border: 1px solid #E2E8F0; margin-bottom: 0.75rem; transition: var(--tr); }
.contact-detail:hover { border-color: rgba(79,70,229,.25); background: rgba(79,70,229,.03); }
.contact-detail-icon { width: 42px; height: 42px; border-radius: var(--r1); background: var(--gm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-text label { display: block; font-size: 0.72rem; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail-text span  { font-size: 0.92rem; color: #0F172A; font-weight: 500; }

/* ── FORM ── */
.form-card { background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3); padding: 2.5rem; box-shadow: var(--sm); }
.form-card h3 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #334155; margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: #F1F5F9; border: 1.5px solid #E2E8F0;
  border-radius: var(--r2); padding: 0.85rem 1.1rem;
  color: #0F172A; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; outline: none; transition: var(--tr);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #4F46E5; background: #fff; box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94A3B8; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}

/* ── PAGE HERO ── */
.page-hero { padding: calc(var(--nh) + 3.5rem) 0 3rem; background: var(--gh); text-align: center; position: relative; overflow: hidden; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
.page-hero p  { font-size: 1.05rem; color: #334155; max-width: 540px; margin: 0 auto; line-height: 1.75; }
.page-hero .badge { margin-bottom: 1rem; }

/* ── FOOTER ── */
footer { background: #0F172A; color: rgba(255,255,255,.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { font-family: 'Sora', sans-serif; font-size: 1.55rem; font-weight: 800; background: var(--gm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.footer-col h5 { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li a { font-size: 0.86rem; color: rgba(255,255,255,.45); transition: color 0.2s; }
.footer-col li a:hover { color: #22D3EE; }
.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,.25); }
.social-links { display: flex; gap: 0.65rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; transition: var(--tr); color: rgba(255,255,255,.55); text-decoration: none;
}
.social-btn:hover { background: #4F46E5; border-color: #4F46E5; color: #fff; transform: translateY(-2px); }

/* ── ACCORDION ── */
.accordion-item { border: 1px solid #E2E8F0; border-radius: var(--r2); margin-bottom: 0.5rem; overflow: hidden; }
.accordion-btn {
  width: 100%; background: #fff; border: none; padding: 1.1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  color: #0F172A; cursor: pointer; transition: background 0.2s; text-align: left; min-height: 52px;
}
.accordion-btn:hover { background: rgba(79,70,229,.04); }
.acc-icon { font-size: 1.2rem; transition: transform 0.3s; color: #4F46E5; flex-shrink: 0; }
.accordion-btn.open .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #F8FAFC; }
.accordion-body.open { max-height: 400px; }
.acc-body-inner { padding: 1.2rem 1.4rem; font-size: 0.87rem; color: #334155; line-height: 1.7; }

/* ── TABS ── */
.tab-bar { display: flex; flex-wrap: wrap; gap: 0.3rem; border-bottom: 2px solid #E2E8F0; margin-bottom: 2rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tab-btn {
  background: none; border: none; color: #64748B;
  padding: 0.6rem 1.2rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.tab-btn.active { color: #4F46E5; border-bottom-color: #4F46E5; font-weight: 600; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-scale { transform: scale(0.92); }
.reveal.in { opacity: 1; transform: none; }

/* ── SCROLL TOP ── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gm); color: #fff; border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(79,70,229,.4); cursor: pointer; z-index: 500;
  transition: var(--tr); opacity: 0; pointer-events: none; transform: translateY(10px);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; transform: none; }
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(79,70,229,.5); }

/* ── COMPARISON TABLE ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r2); box-shadow: var(--sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.compare-table th { background: var(--gm); color: #fff; padding: 0.8rem 1rem; font-size: 0.85rem; font-weight: 700; text-align: left; }
.compare-table th:first-child { border-radius: var(--r1) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--r1) 0 0; }
.compare-table td { padding: 0.75rem 1rem; font-size: 0.84rem; border-bottom: 1px solid #E2E8F0; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #F8FAFC; }
.check-yes { color: #10B981; font-weight: 700; }
.check-no  { color: #EF4444; }

/* ── FLOW STEPS ── */
.flow-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
.flow-steps { display: flex; align-items: center; justify-content: center; min-width: 620px; }
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
.flow-dot  { width: 54px; height: 54px; border-radius: 50%; background: var(--gm); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: #fff; box-shadow: 0 6px 20px rgba(79,70,229,.3); position: relative; z-index: 1; }
.flow-step p { font-size: 0.76rem; color: #64748B; max-width: 86px; font-weight: 500; }
.flow-arrow { font-size: 1.1rem; color: #CBD5E1; padding: 0 0.25rem; flex-shrink: 0; margin-top: -1.5rem; }

/* ── PILLAR DIAGRAM ── */
.pillar-radial-wrap { position: relative; width: 100%; aspect-ratio: 1; max-width: 340px; margin: 0 auto; }
.pillar-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 110px; height: 110px; border-radius: 50%; background: var(--gm); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.82rem; box-shadow: 0 8px 32px rgba(79,70,229,.4); z-index: 2; }
.pillar-orbit-item { position: absolute; width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 2px solid #E2E8F0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: 0.62rem; font-weight: 600; color: #334155; box-shadow: var(--sm); transition: var(--tr); transform: translate(-50%,-50%); cursor: default; }
.pillar-orbit-item:hover { border-color: #4F46E5; box-shadow: var(--sl); transform: translate(-50%,-50%) scale(1.1); }
.pillar-orbit-icon { font-size: 1.3rem; margin-bottom: 0.15rem; }

/* ── RESOURCE BOXES ── */
.res-box { background: #fff; border: 1px solid #E2E8F0; border-radius: var(--r3); padding: 2.5rem; text-align: center; transition: var(--tr); }
.res-box:hover { transform: translateY(-4px); box-shadow: var(--sl); }
.res-icon { width: 72px; height: 72px; border-radius: var(--r2); background: rgba(79,70,229,.08); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.25rem; }
.res-box h3 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.res-box p  { font-size: 0.9rem; color: #64748B; line-height: 1.7; margin-bottom: 1.5rem; }

/* ── MISC HELPERS ── */
.info-box { background: rgba(79,70,229,.05); border: 1px solid rgba(79,70,229,.15); border-radius: var(--r3); padding: 2rem; }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: #334155; }
.check-list li .ci { background: var(--gm); color: #fff; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
[id] { scroll-margin-top: calc(var(--nh) + 1rem); }

/* ════════════════════════════════
   RESPONSIVE — 4 breakpoints
   ════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }
  .diff-grid   { grid-template-columns: repeat(2,1fr); }
  .trust-grid  { grid-template-columns: repeat(2,1fr); }
  .pillars-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-3      { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .hero-title  { font-size: clamp(2.6rem,6vw,4.5rem); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  :root { --nh: 60px; }

  /* Nav */
  .nav-links { display: none !important; }
  .nav-actions .btn { display: none !important; }
  .nav-hamburger { display: flex !important; }
  #nav { padding: 0 1rem; }

  /* Hero */
  .hero { padding-top: calc(var(--nh) + 2rem); padding-bottom: 3rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none !important; }
  .hero-title  { font-size: clamp(2.2rem,8vw,3.2rem); letter-spacing: -1px; margin-bottom: 1rem; }
  .hero-desc   { font-size: 0.97rem; margin-bottom: 1.5rem; }
  .hero-stats  { gap: 1.5rem; flex-wrap: wrap; }
  .stat-n { font-size: 1.7rem; }

  /* Sections */
  .sec     { padding: 3.5rem 0; }
  .sec-title { font-size: clamp(1.7rem,5vw,2.3rem); }

  /* All 2-col grids → 1 col */
  .grid-2        { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .grid-3        { grid-template-columns: 1fr; gap: 1.2rem; }
  .diff-grid     { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .pillars-grid  { grid-template-columns: 1fr; gap: 1rem; }
  .trust-grid    { grid-template-columns: repeat(2,1fr); gap: 0.85rem; }
  .prog-grid     { grid-template-columns: 1fr; gap: 1.2rem; }
  .blog-grid     { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Stats strip */
  .stats-strip  { padding: 2.5rem 0; }
  .stats-inner  { grid-template-columns: repeat(2,1fr); gap: 1.5rem 1rem; }
  .sn { font-size: 2.2rem; }

  /* CTA strip */
  .cta-strip { padding: 2.5rem 1.5rem; border-radius: var(--r3); }
  .cta-strip h2 { font-size: 1.6rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Page hero */
  .page-hero { padding: calc(var(--nh) + 2.5rem) 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.85rem,7vw,2.8rem); }

  /* Form */
  .form-card { padding: 1.5rem; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Roadmap */
  .roadmap::before { left: 22px; }
  .road-dot { width: 46px; height: 46px; font-size: 0.82rem; }

  /* Tabs */
  .tab-bar { flex-wrap: nowrap; }
  .tab-btn { font-size: 0.82rem; padding: 0.5rem 0.9rem; }

  /* Accordion */
  .accordion-btn { font-size: 0.87rem; }

  /* Order reset */
  [style*="order:1"], [style*="order:2"] { order: unset !important; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .nav-logo  { font-size: 1.3rem; }

  .hero-title  { font-size: clamp(1.9rem,9vw,2.6rem); }
  .hero-btns   { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats  { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
  .stat-n { font-size: 1.45rem; }
  .stat-l { font-size: 0.72rem; }

  .diff-grid   { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .sec  { padding: 2.75rem 0; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .sn { font-size: 2rem; }
  .sl-label { font-size: 0.8rem; }

  .page-hero h1 { font-size: clamp(1.65rem,8vw,2.3rem); }
  .page-hero p  { font-size: 0.93rem; }

  .cta-strip    { padding: 2rem 1.1rem; }
  .cta-strip h2 { font-size: 1.4rem; }
  .cta-strip p  { font-size: 0.9rem; }

  .road-step { gap: 1rem; }
  .road-body h4 { font-size: 0.88rem; }

  .footer-logo  { font-size: 1.3rem; }
  .social-links { justify-content: center; }

  .form-card { padding: 1.2rem; }

  /* iOS font zoom prevention */
  input, textarea, select { font-size: 16px !important; }

  /* Blog featured card */
  .featured-blog-grid { display: block !important; }

  /* Pillar radial smaller */
  .pillar-radial-wrap { max-width: 270px; }
  .pillar-center      { width: 88px; height: 88px; font-size: 0.75rem; }
  .pillar-orbit-item  { width: 64px; height: 64px; font-size: 0.58rem; }
  .pillar-orbit-icon  { font-size: 1.1rem; }

  /* Flow steps vertical */
  .flow-steps { flex-direction: column; align-items: center; min-width: 0; gap: 0.2rem; }
  .flow-arrow { transform: rotate(90deg); margin: 0.1rem; }
  .flow-step p { max-width: none; }

  /* Res boxes */
  .res-grid { grid-template-columns: 1fr !important; }

  /* Prog grid small items */
  .prog-card { padding: 1.5rem; }
}

/* ── 400px ── */
@media (max-width: 400px) {
  :root { --nh: 56px; }
  .hero-title { font-size: 1.8rem; }
  .sec-title  { font-size: 1.55rem; }
  .btn { padding: 0.65rem 1.25rem; font-size: 0.88rem; }
  .btn-lg { padding: 0.8rem 1.5rem; font-size: 0.93rem; }
  .cta-strip h2 { font-size: 1.25rem; }
  .nav-logo  { font-size: 1.18rem; }
  .sn { font-size: 1.7rem; }
}

/* ── Touch devices: disable sticky hover states ── */
@media (hover: none) {
  .card:hover, .diff-card:hover, .pillar-card:hover,
  .prog-card:hover, .trust-card:hover, .blog-card:hover,
  .res-box:hover { transform: none; box-shadow: var(--sm); }
  .btn:hover { transform: none; }
  .btn-primary:hover { box-shadow: 0 4px 16px rgba(79,70,229,.35); }
}

/* ── Safe area (notch/Dynamic Island) ── */
@supports (padding: max(0px)) {
  #nav   { padding-left: max(1rem,env(safe-area-inset-left)); padding-right: max(1rem,env(safe-area-inset-right)); }
  footer { padding-bottom: max(2rem, calc(env(safe-area-inset-bottom) + 1rem)); }
  #scroll-top { bottom: max(1.25rem, calc(env(safe-area-inset-bottom) + 0.75rem)); }
  .nav-mobile { padding-left: max(1.5rem,env(safe-area-inset-left)); padding-right: max(1.5rem,env(safe-area-inset-right)); }
}

/* ── Print ── */
@media print {
  #nav, footer, #scroll-top, .ann-bar { display: none; }
  .hero { padding-top: 1rem; min-height: auto; }
}
