*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --void: #050508;
  --deep: #0A0A12;
  --surface: #0F0F1A;
  --card: #141420;
  --card2: #1A1A2E;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.12);
  --text: #FFFFFF;
  --text2: rgba(255,255,255,0.6);
  --text3: rgba(255,255,255,0.3);
  --v1: #7C3AED;
  --v2: #4F46E5;
  --v3: #0EA5E9;
  --amber: #F59E0B;
  --gold: #FBBF24;
  --rose: #F43F5E;
  --green: #10B981;
  --grd: linear-gradient(135deg, #7C3AED, #4F46E5, #0EA5E9);
  --grd2: linear-gradient(135deg, #F59E0B, #F97316);
  --r: 14px; --r2: 24px; --r3: 36px; --r4: 56px;
}
body { font-family: 'Space Grotesk', 'Inter', sans-serif; background: var(--void); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* CURSOR */
.cursor { position: fixed; z-index: 9999; pointer-events: none; width: 12px; height: 12px; border-radius: 50%; background: #7C3AED; mix-blend-mode: screen; transform: translate(-50%, -50%); }
.cursor-ring { position: fixed; z-index: 9998; pointer-events: none; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(124,58,237,0.5); transform: translate(-50%, -50%); transition: width .3s, height .3s; }

/* NOISE */
body::before { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ORBS */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); animation: orbFloat 22s ease-in-out infinite; }
.orb1 { width: 700px; height: 700px; background: #7C3AED; top: -200px; left: -200px; opacity: .18; animation-duration: 25s; }
.orb2 { width: 500px; height: 500px; background: #0EA5E9; top: 30%; right: -150px; opacity: .14; animation-duration: 18s; animation-delay: -8s; }
.orb3 { width: 600px; height: 600px; background: #F59E0B; bottom: -200px; left: 30%; opacity: .09; animation-duration: 22s; animation-delay: -14s; }
.orb4 { width: 400px; height: 400px; background: #F43F5E; bottom: 20%; left: -100px; opacity: .07; animation-duration: 28s; animation-delay: -5s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(60px,-80px) scale(1.05)} 50%{transform:translate(-40px,60px) scale(0.95)} 75%{transform:translate(80px,40px) scale(1.02)} }

/* LAYOUT */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px; background: rgba(5,5,8,0.75); backdrop-filter: blur(32px) saturate(180%); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; border-radius: 8px; background: white; padding: 3px; filter: drop-shadow(0 0 12px rgba(124,58,237,0.4)); }
.nav-sep { width: 1px; height: 20px; background: var(--border2); }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a { color: var(--text3); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: .02em; transition: color .2s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--grd); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-pill { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #7C3AED, #4F46E5); color: #fff; padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .3s; animation: ppulse 3s ease-in-out infinite; }
.nav-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); animation: none; }
@keyframes ppulse { 0%,100%{box-shadow:0 0 0 0 rgba(124,58,237,0.4)} 50%{box-shadow:0 0 0 8px rgba(124,58,237,0)} }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(124,58,237,.9); background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.2); padding: 8px 18px; border-radius: 100px; margin-bottom: 36px; }
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: #7C3AED; animation: kdot 2s ease-in-out infinite; box-shadow: 0 0 8px #7C3AED; }
@keyframes kdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.6)} }
.hero-h1 { font-size: clamp(52px, 6vw, 84px); font-weight: 700; line-height: .98; letter-spacing: -.04em; margin-bottom: 32px; }
.hero-h1 .line { display: block; }
.grd-text { background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 40%, #34D399 70%, #A78BFA 100%); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 5s ease-in-out infinite; }
.grd-gold { background: linear-gradient(135deg, #FBBF24 0%, #F97316 50%, #FBBF24 100%); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s 1s ease-in-out infinite; }
.hero-sub { font-size: 18px; line-height: 1.7; color: var(--text2); margin-bottom: 48px; max-width: 480px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-magic { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; border-radius: var(--r2); font-weight: 700; font-size: 16px; text-decoration: none; background: linear-gradient(135deg, #7C3AED, #4F46E5); color: #fff; position: relative; overflow: hidden; transition: all .4s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 4px 24px rgba(124,58,237,.4), inset 0 1px 0 rgba(255,255,255,.15); }
.btn-magic::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #9333EA, #6366F1, #06B6D4); opacity: 0; transition: opacity .4s; }
.btn-magic:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(124,58,237,.5); }
.btn-magic:hover::before { opacity: 1; }
.btn-magic span, .btn-magic i { position: relative; z-index: 1; }
.btn-line { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; border-radius: var(--r2); font-weight: 600; font-size: 16px; text-decoration: none; background: transparent; color: var(--text2); border: 1px solid var(--border2); transition: all .3s; }
.btn-line:hover { background: rgba(255,255,255,.05); color: var(--text); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-photo { border-radius: var(--r4); overflow: hidden; aspect-ratio: 5/6; position: relative; box-shadow: 0 60px 120px rgba(0,0,0,.7); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.hero-photo:hover { transform: scale(1.015); }
.hero-photo::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 50%, rgba(5,5,8,.8) 100%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.hero-border { position: absolute; inset: -1px; border-radius: calc(var(--r4) + 1px); background: linear-gradient(135deg, rgba(124,58,237,.5), rgba(14,165,233,.3), rgba(245,158,11,.2)); z-index: -1; }

.float-card {
  position: absolute; border-radius: var(--r2);
  background: rgba(10,10,20,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  z-index: 10;
  opacity: 0;
  animation: cardIn .7s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes cardIn {
  from { opacity:0; transform:translateY(14px) scale(.95); }
  to   { opacity:1; transform:translateY(0)  scale(1); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}
.fc-clients {
  bottom: 32px; left: 24px; padding: 20px 26px;
  animation: cardIn .7s .9s cubic-bezier(.22,1,.36,1) forwards, floatY 5s 1.6s ease-in-out infinite;
}
.fc-clients .fnum { font-size: 44px; font-weight: 700; line-height: 1; background: var(--grd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fc-clients .flbl { font-size: 11px; font-weight: 600; color: var(--text3); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.fc-cert {
  top: 28px; right: 20px; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: cardIn .7s .6s cubic-bezier(.22,1,.36,1) forwards, floatY 6s 1.3s ease-in-out infinite;
}
.fc-cert .fic { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg, #7C3AED, #4F46E5); display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; box-shadow: 0 4px 16px rgba(124,58,237,.4); }
.fc-cert .ftt { font-size: 13px; font-weight: 700; }
.fc-cert .fss { font-size: 11px; color: var(--text3); margin-top: 2px; }
.fc-live {
  bottom: 32px; right: 20px; padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  animation: cardIn .7s 1.1s cubic-bezier(.22,1,.36,1) forwards, floatY 4s 1.8s ease-in-out infinite;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: lp 1.5s ease-in-out infinite; box-shadow: 0 0 6px var(--green); }
@keyframes lp { 0%,100%{opacity:1} 50%{opacity:.25} }

/* MARQUEE */
.marquee-section { padding: 36px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(10,10,18,.6); position: relative; z-index: 2; }
.marquee-track { display: flex; }
.marquee-inner { display: flex; gap: 64px; align-items: center; animation: marquee 22s linear infinite; white-space: nowrap; padding-right: 64px; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-100%)} }
.marquee-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--text3); letter-spacing: .05em; text-transform: uppercase; }
.marquee-item i { font-size: 15px; color: var(--v1); }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-radius: var(--r3); overflow: hidden; background: var(--border); }
.stat-cell { background: var(--card); padding: 52px 40px; position: relative; overflow: hidden; transition: background .3s; }
.stat-cell:hover { background: var(--card2); }
.stat-cell::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grd); transform: scaleX(0); transform-origin: left; transition: transform .5s; }
.stat-cell:hover::after { transform: scaleX(1); }
.stat-n { font-size: 56px; font-weight: 700; line-height: 1; background: var(--grd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.stat-l { font-size: 15px; color: var(--text3); font-weight: 500; }

/* SECTION */
.s-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--v1); margin-bottom: 20px; }
.s-tag::before { content: ''; width: 20px; height: 2px; background: linear-gradient(90deg, var(--v1), var(--v2)); border-radius: 2px; }
h2.sh { font-size: clamp(38px, 4.5vw, 60px); font-weight: 700; line-height: 1.06; letter-spacing: -.035em; margin-bottom: 20px; }
h2.sh em { font-style: normal; background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 40%, #0EA5E9 70%, #7C3AED 100%); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 6s ease-in-out infinite; }
.s-lead { font-size: 18px; line-height: 1.7; color: var(--text2); margin-bottom: 64px; max-width: 540px; }

/* PROBLEMS */
#problems { padding: 120px 0; }
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: var(--r3); overflow: hidden; background: var(--border); }
.prob-card { background: var(--card); padding: 52px 44px; position: relative; overflow: hidden; transition: background .4s; }
.prob-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.06), transparent); opacity: 0; transition: opacity .4s; }
.prob-card:hover { background: var(--card2); }
.prob-card:hover::after { opacity: 1; }
.prob-num { font-size: 80px; font-weight: 700; line-height: 1; color: rgba(255,255,255,.04); position: absolute; top: 16px; right: 24px; letter-spacing: -.05em; transition: color .4s; }
.prob-card:hover .prob-num { color: rgba(124,58,237,.08); }
.prob-ico { width: 60px; height: 60px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 28px; position: relative; z-index: 1; }
.ico-r { background: rgba(244,63,94,.1); color: #F43F5E; }
.ico-b { background: rgba(79,70,229,.12); color: #818CF8; }
.ico-a { background: rgba(245,158,11,.1); color: #FBBF24; }
.prob-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; letter-spacing: -.02em; position: relative; z-index: 1; }
.prob-card p { font-size: 15px; line-height: 1.75; color: var(--text2); position: relative; z-index: 1; }

/* CLIENTS */
#clients { padding: 120px 0; }
.clients-mosaic { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; border-radius: 0; overflow: visible; background: transparent; }
.client-cell {
  background: var(--card);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  transition: background .35s, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  overflow: hidden;
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--border);
}
.client-cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(14,165,233,.08)); opacity: 0; transition: opacity .35s; border-radius: var(--r2); }
.client-cell:hover { background: var(--card2); transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(124,58,237,.2); }
.client-cell:hover::after { opacity: 1; }
.client-cell img { width: 75%; height: 75%; object-fit: contain; filter: grayscale(30%) brightness(1.2) opacity(.7); transition: all .4s; position: relative; z-index: 1; border-radius: 6px; }
.client-cell:hover img { filter: grayscale(0%) brightness(1.05) opacity(1); transform: scale(1.08); }
/* Dark/black logos — invert to white on dark bg */
.client-cell img.invert { filter: invert(1) grayscale(20%) brightness(1.1) opacity(.75); }
.client-cell:hover img.invert { filter: invert(1) grayscale(0%) brightness(1.05) opacity(1); }

/* CURRICULUM */
#curriculum { padding: 120px 0; }
.curr-wrap { border-radius: var(--r3); overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.curr-top { padding: 56px 72px 48px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, rgba(124,58,237,.06) 0%, transparent 60%); }
.week { display: grid; grid-template-columns: 88px 1fr; border-bottom: 1px solid var(--border); transition: background .3s; }
.week:last-child { border-bottom: none; }
.week:hover { background: rgba(255,255,255,.02); }
.week-aside { display: flex; align-items: flex-start; justify-content: center; padding: 40px 0; border-right: 1px solid var(--border); }
.w-circle { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; background: rgba(255,255,255,.05); color: var(--text3); border: 1px solid var(--border); transition: all .4s; }
.week:hover .w-circle { background: linear-gradient(135deg, #7C3AED, #4F46E5); color: white; border-color: transparent; box-shadow: 0 8px 24px rgba(124,58,237,.4); }
.w-circle.special { background: rgba(16,185,129,.1); color: var(--green); border-color: rgba(16,185,129,.2); }
.week:hover .w-circle.special { background: linear-gradient(135deg, #10B981, #059669); box-shadow: 0 8px 24px rgba(16,185,129,.4); }
.week-main { padding: 40px 56px; }
.week-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
h3.week-ttl { font-size: 21px; font-weight: 700; letter-spacing: -.02em; flex: 1; margin: 0; }
.blk h4 { font-size: inherit; font-weight: 700; margin: 0; display: inline; }
.week-badge { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text3); padding: 6px 14px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 100px; }
.week-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.blk { background: rgba(255,255,255,.03); border-radius: var(--r); padding: 18px 20px; border: 1px solid transparent; transition: border-color .25s, background .25s; }
.blk:hover { border-color: var(--border2); background: rgba(255,255,255,.05); }
.blk b { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text3); margin-bottom: 8px; }
.blk span { font-size: 14px; line-height: 1.6; color: var(--text2); }
.hw-note { display: flex; align-items: flex-start; gap: 10px; background: rgba(79,70,229,.06); border: 1px solid rgba(79,70,229,.15); border-radius: var(--r); padding: 14px 18px; font-size: 14px; color: rgba(129,140,248,.9); line-height: 1.5; }
.hw-note.win { background: rgba(16,185,129,.05); border-color: rgba(16,185,129,.15); color: rgba(52,211,153,.9); }
.hw-note i { margin-top: 2px; flex-shrink: 0; }

/* CERTIFICATE */
#cert { padding: 120px 0; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cert-frame { border-radius: var(--r3); overflow: hidden; border: 1px solid var(--border2); padding: 0; box-shadow: 0 40px 100px rgba(0,0,0,.6); position: relative; }
.cert-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,15,.7) 100%); z-index: 1; pointer-events: none; }
.cert-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.cert-frame:hover img { transform: scale(1.03); }
.cert-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80%; height: 80%; background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%); pointer-events: none; }
.cert-features { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 44px; }
.cert-features li { display: flex; align-items: center; gap: 16px; font-size: 17px; color: var(--text2); }
.cf-icon { width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.cf-v { background: rgba(124,58,237,.12); color: #A78BFA; }
.cf-g { background: rgba(16,185,129,.1); color: #34D399; }
.cf-y { background: rgba(245,158,11,.1); color: #FBBF24; }

/* PRICING */
#pricing { padding: 120px 0; }
.price-stage { border-radius: var(--r3); overflow: hidden; background: linear-gradient(135deg, #0F0B1E 0%, #0A0A12 50%, #0B1A0E 100%); border: 1px solid var(--border); position: relative; }
.price-stage::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(124,58,237,.6), rgba(14,165,233,.4), transparent); }
.price-glow { position: absolute; top: -100px; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%); pointer-events: none; }
.price-inner { display: grid; grid-template-columns: 1fr 1fr; }
.price-left { padding: 80px 72px; border-right: 1px solid var(--border); }
.price-right { padding: 80px 72px; }
.p-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-bottom: 20px; }
.p-title { font-size: 28px; font-weight: 700; line-height: 1.25; margin-bottom: 40px; letter-spacing: -.02em; }
.p-was { font-size: 20px; color: var(--text3); text-decoration: line-through; margin-bottom: 4px; }
.p-now { font-size: 100px; font-weight: 700; line-height: 1; letter-spacing: -.05em; background: var(--grd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.p-sub { font-size: 16px; color: var(--text3); margin-bottom: 28px; }
.p-save { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); color: #34D399; font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 100px; margin-bottom: 44px; }
.btn-buy { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #FBBF24, #F97316); color: #0A0A12; padding: 22px 44px; border-radius: var(--r2); font-weight: 800; font-size: 17px; text-decoration: none; transition: all .4s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 8px 32px rgba(245,158,11,.3); position: relative; overflow: hidden; }
.btn-buy::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #FCD34D, #FB923C); opacity: 0; transition: opacity .3s; }
.btn-buy:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 60px rgba(245,158,11,.45); }
.btn-buy:hover::before { opacity: 1; }
.btn-buy span, .btn-buy i { position: relative; z-index: 1; }
.inc-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.inc-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; color: var(--text2); }
.inc-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 2px; }
.ii-v { background: rgba(124,58,237,.1); color: #A78BFA; }
.ii-g { background: rgba(16,185,129,.1); color: #34D399; }
.ii-y { background: rgba(245,158,11,.1); color: #FBBF24; }
.ii-b { background: rgba(14,165,233,.1); color: #38BDF8; }

/* CONTACT */
#contact { padding: 120px 0; }
.contact-wrap { text-align: center; }
.contact-wrap .s-tag { justify-content: center; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin: 0 auto 56px; }
.cc { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 36px 28px; text-decoration: none; display: block; text-align: center; transition: all .3s; position: relative; overflow: hidden; }
.cc::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.08), transparent); opacity: 0; transition: opacity .3s; }
.cc:hover { border-color: rgba(124,58,237,.3); transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.cc:hover::before { opacity: 1; }
.cc .cc-ico { font-size: 32px; margin-bottom: 18px; display: block; }
.cc .cc-l { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 8px; }
.cc .cc-v { font-size: 17px; font-weight: 700; color: var(--text); }
.socials-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.soc-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border); border-radius: 100px; padding: 12px 24px; text-decoration: none; color: var(--text2); font-size: 15px; font-weight: 600; transition: all .3s; }
.soc-btn:hover { border-color: var(--border2); color: var(--text); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.3); background: var(--card2); }

/* FOOTER */
footer { padding: 56px 48px; border-top: 1px solid var(--border); text-align: center; position: relative; z-index: 2; }
.foot-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.foot-logo img { height: 34px; width: auto; object-fit: contain; border-radius: 6px; background: white; padding: 3px; opacity: .6; }
footer p { font-size: 14px; color: var(--text3); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* MINIMALIST ANIMATIONS */
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
/* Nav link underline slide */
.nav-menu a::after { transition: transform .35s cubic-bezier(.22,1,.36,1); }
/* Prob card icon bounce on hover */
.prob-card:hover .prob-ico { transform: scale(1.08) rotate(-3deg); transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
/* Week row left border accent */
.week { border-left: 2px solid transparent; transition: border-color .3s, background .3s; }
.week:hover { border-left-color: var(--v1); }
/* Orb subtle pulse */
.orb1 { animation: orbFloat 25s ease-in-out infinite, orbBreath 8s ease-in-out infinite; }
@keyframes orbBreath { 0%,100%{opacity:.18} 50%{opacity:.25} }
/* Section tag dot before */
.s-tag::before { animation: tagLine .6s .2s cubic-bezier(.22,1,.36,1) both; }
@keyframes tagLine { from{width:0;opacity:0} to{width:20px;opacity:1} }

/* ─── RESPONSIVE ────────────────────────────────────────── */

/* TABLET 960px */
@media(max-width:960px) {
  nav { padding: 0 24px; }
  .wrap { padding: 0 28px; }
  .nav-menu { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  .hero { padding: 100px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-sub { max-width: 100%; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 44px 32px; }

  .prob-grid { grid-template-columns: 1fr; }
  .clients-mosaic { grid-template-columns: repeat(4, 1fr); }

  .week { grid-template-columns: 1fr; }
  .week-aside { border-right: none; padding: 32px 32px 0; justify-content: flex-start; }
  .week-main { padding: 16px 32px 40px; }
  .week-blocks { grid-template-columns: 1fr 1fr; }

  .cert-grid { grid-template-columns: 1fr; gap: 52px; }
  .price-inner { grid-template-columns: 1fr; }
  .price-left { border-right: none; border-bottom: 1px solid var(--border); padding: 52px 40px; }
  .price-right { padding: 40px 40px 52px; }

  .contact-cards { grid-template-columns: 1fr; max-width: 380px; }
  .map-section > div:last-child { grid-template-columns: 1fr !important; }
}

/* LARGE PHONE 640px */
@media(max-width:640px) {
  .wrap { padding: 0 20px; }
  nav { padding: 0 20px; }

  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-grid { gap: 44px; }
  .hero-visual { max-width: 320px; }
  .hero-kicker { font-size: 11px; padding: 7px 14px; margin-bottom: 24px; }
  .hero-sub { font-size: 16px; margin-bottom: 36px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-magic, .btn-line { width: 100%; justify-content: center; font-size: 15px; padding: 16px 28px; }

  .fc-cert { top: 14px; right: 14px; padding: 10px 14px; gap: 8px; }
  .fc-cert .fic { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; }
  .fc-cert .ftt { font-size: 11px; }
  .fc-cert .fss { font-size: 10px; }
  .fc-clients { bottom: 14px; left: 14px; padding: 14px 18px; }
  .fc-clients .fnum { font-size: 32px; }
  .fc-live { bottom: 14px; right: 14px; padding: 8px 11px; }
  .fc-live span { font-size: 11px; }

  .stat-cell { padding: 32px 22px; }
  .stat-n { font-size: 44px; }
  .stat-l { font-size: 14px; }

  #problems { padding: 80px 0; }
  .prob-card { padding: 40px 32px; }
  .prob-card h3 { font-size: 19px; }

  #clients { padding: 80px 0; }
  .clients-mosaic { grid-template-columns: repeat(3, 1fr); }

  #curriculum { padding: 80px 0; }
  .curr-top { padding: 40px 32px 36px; }
  .week-main { padding: 16px 24px 36px; }
  .week-aside { padding: 28px 24px 0; }
  .week-ttl { font-size: 18px; }
  .week-blocks { grid-template-columns: 1fr; }

  #cert { padding: 80px 0; }
  .cert-grid { gap: 40px; }

  #pricing { padding: 80px 0; }
  .price-left { padding: 44px 28px; }
  .price-right { padding: 28px 28px 44px; }
  .p-now { font-size: 76px; }
  .p-title { font-size: 22px; margin-bottom: 32px; }
  .btn-buy { width: 100%; justify-content: center; font-size: 16px; }

  #contact { padding: 80px 0; }
  .contact-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
  footer { padding: 44px 20px; }
}

/* SMALL PHONE 390px */
@media(max-width:390px) {
  .wrap { padding: 0 16px; }
  nav { padding: 0 16px; height: 64px; }
  .nav-logo img { height: 34px; }
  .nav-pill { padding: 8px 16px; font-size: 13px; }

  .hero { padding: 80px 0 52px; }
  .hero-visual { max-width: 280px; }
  .hero-h1 { letter-spacing: -.03em; margin-bottom: 20px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }

  .fc-cert, .fc-live { display: none; }
  .fc-clients { bottom: 12px; left: 12px; padding: 12px 16px; }
  .fc-clients .fnum { font-size: 28px; }
  .fc-clients .flbl { font-size: 9px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-cell { padding: 28px 16px; }
  .stat-n { font-size: 36px; }
  .stat-l { font-size: 12px; }

  h2.sh { margin-bottom: 16px; }
  .s-lead { font-size: 15px; margin-bottom: 44px; }

  .clients-mosaic { grid-template-columns: repeat(3, 1fr); }
  .client-cell { padding: 14px; }

  .curr-top { padding: 28px 20px 24px; }
  .week-main { padding: 12px 20px 28px; }
  .week-aside { padding: 24px 20px 0; }
  .w-circle { width: 44px; height: 44px; font-size: 15px; }
  .week-ttl { font-size: 16px; }
  .week-badge { font-size: 10px; }
  .blk { padding: 14px 16px; }
  .blk span { font-size: 13px; }

  .cert-grid { gap: 32px; }

  .price-left { padding: 32px 20px; }
  .price-right { padding: 20px 20px 36px; }
  .p-now { font-size: 64px; }
  .p-title { font-size: 19px; }
  .p-was { font-size: 17px; }

  .contact-cards { grid-template-columns: 1fr; }
  .cc { padding: 28px 20px; }

  footer { padding: 36px 16px; }
  .foot-logo img { height: 28px; }
}
