/* ═══════════════════════════════════════════════════════════════
   EcomAcademy — style.css  |  Premium Light Mode · E-Com Galaxy
   ═══════════════════════════════════════════════════════════════ */

/* ─── SEO / PERFORMANCE LAYER ───────────────────────────────── */

/* Skip-nav for accessibility & Lighthouse */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--blue, #003bff);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 700;
  z-index: 99999;
  border-radius: 0 0 6px 0;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-nav:focus { top: 0; }

/* Defer rendering of off-screen sections */
#proof-section,
#about-main,
.services-section,
.pricing-section,
.svc-acc-section,
.why-section,
#faq-section,
#contact-section,
.article-section,
.blog-cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* Containment on heavy card components */
.glass-card, .service-card, .pricing-card, .value-card, .bento-card, .mq-item {
  contain: layout style;
}

/* ─── ROOT ──────────────────────────────────────────────────── */
:root {
  --blue:   #003bff;
  --amber:  #ffa000;
  --bg:     #F8FAFC;
  --card:   rgba(255,255,255,0.85);
  --text:   #0F172A;
  --muted:  #64748b;
  --border: rgba(0,59,255,0.08);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: radial-gradient(circle at top right, #EFF6FF 0%, #F8FAFC 50%, #F1F5F9 100%) fixed;
  color: var(--text);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── INTRO OVERLAY — Pulse / Heartbeat Animation ───────────── */
#intro-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: intro-overlay-exit 0.5s cubic-bezier(0.4,0,1,1) 1.9s forwards;
}
#intro-logo {
  width: 100px; height: 100px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,59,255,0.22)) drop-shadow(0 2px 8px rgba(0,59,255,0.12));
  animation: intro-logo-pulse 1.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes intro-logo-pulse {
  0%   { opacity: 0;   transform: scale(0.72); }
  22%  { opacity: 1;   transform: scale(1.08); }
  42%  { transform: scale(0.95); }
  60%  { transform: scale(1.04); }
  76%  { transform: scale(0.98); }
  88%  { transform: scale(1.02); }
  100% { opacity: 1;   transform: scale(1.0); }
}
@keyframes intro-overlay-exit {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), #2563eb); border-radius: 4px; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(40px) saturate(2.2);
  -webkit-backdrop-filter: blur(40px) saturate(2.2);
  border-bottom: 1px solid rgba(0,0,0,0.055);
  box-shadow: 0 1px 0 rgba(255,255,255,0.85) inset,
              0 4px 40px rgba(0,0,0,0.038);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.nav-logo-img {
  height: 44px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,59,255,0.28)) saturate(1.3);
  transition: filter 0.3s;
  display: block; flex-shrink: 0;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(0,59,255,0.48)) saturate(1.5);
}
.nav-logo-text {
  font-size: 1.3rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: #475569; text-decoration: none; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.3px; transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--blue); border-radius: 2px;
  transition: width 0.32s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--amber);
  color: #fff; border: none; padding: 0.55rem 1.4rem;
  border-radius: 8px; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; transition: box-shadow 0.3s, transform 0.2s;
  text-decoration: none; display: inline-block; font-family: inherit;
  box-shadow: 0 4px 18px rgba(255,160,0,0.35);
}
.nav-cta:hover { box-shadow: 0 8px 32px rgba(255,160,0,0.55); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: 0.3s; }

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
#mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(248,250,252,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem;
  transform: translate3d(100%,0,0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
#mobile-nav.open { transform: translate3d(0,0,0); }
.mobile-nav-links a {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: var(--text); text-decoration: none; text-align: center;
  padding: 0.5rem 2rem; transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--blue); }
#mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.8rem; color: #94a3b8; cursor: pointer; background: none; border: none;
}

/* ─── SHARED SECTION STYLES ──────────────────────────────────── */
section { padding: 6rem 2rem; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900;
  letter-spacing: -1px; line-height: 1.15; color: var(--blue); margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 540px; line-height: 1.7; }
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #2563eb 55%, #1e40af 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fade-up { opacity: 0; transform: translate3d(0,30px,0); }

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero { padding: 9rem 2rem 5rem; position: relative; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,59,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,59,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.page-hero-glow.violet { width: 420px; height: 420px; background: rgba(0,59,255,0.06); top: -120px; right: -80px; }
.page-hero-glow.cyan   { width: 320px; height: 320px; background: rgba(0,59,255,0.04); bottom: -60px; left: -80px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.page-hero-heading {
  font-size: clamp(2.4rem,6vw,4.5rem); font-weight: 900;
  letter-spacing: -2.5px; line-height: 1.05; color: var(--blue); margin-bottom: 1.2rem;
}
.page-hero-sub { color: var(--muted); font-size: 1.1rem; line-height: 1.7; max-width: 600px; }

/* ─── HERO (index) ───────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 5.5rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,59,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,59,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.hero-glow-orb.violet {
  width: 720px; height: 720px; background: rgba(0,59,255,0.09);
  top: -160px; left: -220px;
  animation: orb-drift-a 20s ease-in-out infinite alternate;
}
.hero-glow-orb.cyan {
  width: 560px; height: 560px; background: rgba(37,99,235,0.07);
  bottom: -130px; right: -130px;
  animation: orb-drift-b 26s ease-in-out infinite alternate;
}
@keyframes orb-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, -50px) scale(1.12); }
}
@keyframes orb-drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-55px, 40px) scale(1.09); }
}
.hero-content {
  max-width: 860px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 2;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.2);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.75rem; font-weight: 600; color: var(--blue);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--amber);
  border-radius: 50%; box-shadow: 0 0 8px rgba(255,160,0,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}
.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.5rem; color: var(--blue);
}
.hero-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; text-align: center; }
.hero-sub strong { color: var(--text); }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 0; min-height: 580px;
  position: relative; overflow: visible;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(0,59,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--blue); }
.hero-stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 12px; border: none;
  cursor: pointer; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none; font-family: inherit; will-change: transform;
  box-shadow: 0 4px 24px rgba(0,59,255,0.3);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0,59,255,0.45); }
.btn-primary span, .btn-primary .btn-arrow { position: relative; z-index: 1; }
.btn-primary .btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--blue); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.6rem; border-radius: 12px; border: 1.5px solid rgba(0,59,255,0.25);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none; font-family: inherit;
}
.btn-secondary:hover { border-color: var(--blue); background: rgba(0,59,255,0.06); }

/* ─── VORTEX CANVAS ──────────────────────────────────────────── */
#vortex-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; pointer-events: none;
  z-index: 0; background: transparent;
}


/* ─── VORTEX CTA BUTTON ──────────────────────────────────────── */
.btn-vortex-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, #ff7400 0%, var(--amber) 50%, #ff5800 100%);
  color: #fff; font-weight: 800; font-size: 1.05rem;
  padding: 1rem 2.4rem; border-radius: 14px;
  text-decoration: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 28px rgba(255,130,0,0.42), 0 2px 8px rgba(255,100,0,0.22);
  transition: transform 0.22s ease, box-shadow 0.3s ease;
  will-change: transform; letter-spacing: -0.2px;
}
.btn-vortex-cta:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 48px rgba(255,130,0,0.58), 0 4px 16px rgba(255,100,0,0.3);
}
.btn-vortex-cta .btn-arrow { transition: transform 0.22s ease; }
.btn-vortex-cta:hover .btn-arrow { transform: translateX(5px); }

/* ─── E-COM GALAXY SCENE (legacy — kept for other page refs) ── */
#galaxy-scene {
  position: relative;
  width: 100%;
  max-width: min(500px, 90vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: visible;
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* Rings — centered via inset, GSAP handles rotation */
.g-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.g-ring-1 { inset: 40%; border: 1px dashed rgba(0,59,255,0.4); }
.g-ring-2 { inset: 29%; border: 1px solid rgba(0,59,255,0.2); }
.g-ring-3 { inset: 17%; border: 1px dashed rgba(0,59,255,0.12); }
.g-ring-4 { inset:  4%; border: 1px dotted rgba(0,59,255,0.07); }

/* Particle container */
#galaxy-particles-wrap { position: absolute; inset: 0; pointer-events: none; overflow: visible; }

/* Individual particles — GSAP positions via x/y from 50%,50% */
.g-particle {
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  animation: gp-pulse 2.8s ease-in-out infinite alternate;
}
@keyframes gp-pulse {
  from { opacity: 0.08; }
  to   { opacity: 0.55; }
}

/* Galaxy Core (logo container) */
#galaxy-core {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 10;
}
.g-core-glow {
  position: absolute;
  width: 200%; height: 200%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,59,255,0.12) 0%, transparent 65%);
  animation: core-breathe 3.2s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes core-breathe {
  from { transform: translate(-50%,-50%) scale(0.88); opacity: 0.65; }
  to   { transform: translate(-50%,-50%) scale(1.12); opacity: 1;    }
}
#g-logo {
  width: clamp(90px, 26%, 150px);
  height: auto; object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(0,59,255,0.45))
          drop-shadow(0 0 10px rgba(0,59,255,0.25))
          saturate(1.4);
  position: relative; z-index: 2;
  will-change: transform, opacity;
  display: block;
}
#g-logo-fallback {
  display: none;
  font-size: clamp(1rem, 2.8vw, 1.7rem);
  font-weight: 900; color: var(--blue);
  letter-spacing: -1px; white-space: nowrap;
  text-shadow: 0 0 30px rgba(0,59,255,0.45);
  position: relative; z-index: 2;
  align-items: center; justify-content: center;
}

/* Burst Assets */
.g-burst-asset {
  position: absolute;
  left: 50%; top: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 8;
  white-space: nowrap;
}
.g-shopify-icon {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #95BF47;
  filter: drop-shadow(0 0 14px rgba(149,191,71,0.75));
  line-height: 1;
}
.g-platform-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900; letter-spacing: -0.5px; line-height: 1;
}
.g-amazon {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: #FF9900;
  text-shadow: 0 0 18px rgba(255,153,0,0.65);
}
.g-ebay {
  font-size: clamp(1.1rem, 2.6vw, 1.9rem);
  background: linear-gradient(to right, #e53238 0%, #f45c21 30%, #0064d2 60%, #86b817 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.g-payoneer {
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  color: #FF4B00;
  text-shadow: 0 0 14px rgba(255,75,0,0.55);
}
.g-dollar {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900; color: var(--amber); line-height: 1;
  text-shadow: 0 0 22px rgba(255,160,0,0.75), 0 0 8px rgba(255,160,0,0.4);
}

/* ─── FOMO TOAST ─────────────────────────────────────────────── */
#fomo-toast {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 9000;
  background: rgba(255,255,255,0.96); border: 1px solid rgba(0,59,255,0.15);
  border-radius: 14px; padding: 0.9rem 1.2rem;
  display: flex; align-items: center; gap: 0.85rem; max-width: 320px;
  box-shadow: 0 8px 40px rgba(0,59,255,0.1), 0 2px 12px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.52s cubic-bezier(0.16,1,0.3,1),
              transform 0.52s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
#fomo-toast.show { opacity: 1; transform: translate3d(0, 0, 0); }
.toast-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.toast-text { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.toast-text strong { color: var(--text); }
.toast-text .toast-course { color: var(--blue); }
.toast-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px #10b981; }

/* ─── GLASS CARDS (shared) ───────────────────────────────────── */
.glass-card {
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 20px; padding: 2rem; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  will-change: transform;
  box-shadow: 0 10px 40px rgba(0,59,255,0.03);
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.glass-card:hover { transform: translateY(-6px); border-color: rgba(0,59,255,0.2); box-shadow: 0 20px 60px rgba(0,59,255,0.1); }
.glass-card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 1.2rem;
  background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.12);
}
.card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.metric-badge {
  display: inline-flex; margin-top: 1rem;
  background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.2);
  border-radius: 100px; padding: 0.25rem 0.85rem;
  font-size: 0.8rem; font-weight: 700; color: var(--blue);
}
.metric-badge.cyan { background: rgba(255,160,0,0.08); border-color: rgba(255,160,0,0.25); color: var(--amber); }

/* ─── HAQQIMIZDA PAGE ────────────────────────────────────────── */
.metrics-bar {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(0,59,255,0.1); border: 1px solid rgba(0,59,255,0.12);
  border-radius: 20px; overflow: hidden; margin-top: 3rem;
}
.metric-cell { padding: 2rem; background: var(--card); backdrop-filter: blur(16px); text-align: center; }
.metric-num { font-size: 2.5rem; font-weight: 900; color: var(--blue); letter-spacing: -1px; }
.metric-lbl { font-size: 0.8rem; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 0.3rem; }
#about-main { padding: 6rem 2rem; }
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.mission-strip {
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 24px; padding: 3rem; margin-top: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  box-shadow: 0 10px 40px rgba(0,59,255,0.04);
}
.mission-quote { font-size: 1.4rem; font-weight: 700; color: var(--text); line-height: 1.5; letter-spacing: -0.5px; }
.mission-quote em { font-style: normal; color: var(--blue); }
.mission-body { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ─── KURSLAR (course cards — legacy, kept for kurslar page) ─── */
section.courses-section { padding: 5rem 2rem 7rem; }
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.course-card {
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 24px; overflow: hidden; position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; will-change: transform;
  box-shadow: 0 10px 40px rgba(0,59,255,0.03);
}
.course-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,59,255,0.12); border-color: rgba(0,59,255,0.3); }
.course-card-header { padding: 1.8rem 1.8rem 0; position: relative; }
.course-category-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 4px; margin-bottom: 1rem; }
.tag-violet { background: rgba(0,59,255,0.08); color: var(--blue); border: 1px solid rgba(0,59,255,0.2); }
.tag-cyan   { background: rgba(255,160,0,0.1); color: var(--amber); border: 1px solid rgba(255,160,0,0.25); }
.tag-green  { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.course-title { font-size: 1.25rem; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 0.6rem; }
.course-desc  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.course-meta  { padding: 1.2rem 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid rgba(0,59,255,0.06); margin-top: 1.2rem; }
.course-meta-row { display: flex; justify-content: space-between; align-items: center; }
.meta-key { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #94a3b8; }
.meta-val { font-size: 0.8rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 6px; }
.meta-val.violet { background: rgba(0,59,255,0.08); color: var(--blue); }
.meta-val.cyan   { background: rgba(255,160,0,0.1); color: var(--amber); }
.meta-val.green  { background: rgba(16,185,129,0.1); color: #059669; }
.course-price-block { padding: 1.5rem 1.8rem; margin-top: auto; border-top: 1px solid rgba(0,59,255,0.06); }
.course-price { font-size: 2rem; font-weight: 900; color: var(--text); letter-spacing: -1px; }
.course-price sup { font-size: 1rem; vertical-align: super; color: var(--muted); }
.course-price-old { font-size: 0.875rem; text-decoration: line-through; color: #94a3b8; margin-left: 0.5rem; }
.course-btn-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.2rem; }
.btn-watch, .btn-buy { padding: 0.7rem 0; border-radius: 10px; font-size: 0.8rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.25s; letter-spacing: 0.3px; font-family: inherit; }
.btn-watch { background: rgba(0,59,255,0.06); color: var(--blue); border: 1px solid rgba(0,59,255,0.2); }
.btn-watch:hover { background: rgba(0,59,255,0.12); border-color: var(--blue); }
.btn-buy { background: var(--amber); color: #fff; box-shadow: 0 4px 20px rgba(255,160,0,0.35); }
.btn-buy:hover { box-shadow: 0 8px 36px rgba(255,160,0,0.55); transform: translateY(-1px); }
.popular-badge { position: absolute; top: 1rem; right: 1rem; background: var(--amber); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 100px; letter-spacing: 1px; }

/* Video modal */
#video-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; background: rgba(15,23,42,0.55); backdrop-filter: blur(12px); opacity: 0; pointer-events: none; transition: opacity 0.35s; }
#video-modal.open { opacity: 1; pointer-events: all; }
.modal-box { position: relative; width: min(860px,95vw); background: var(--card); backdrop-filter: blur(16px); border: 1px solid rgba(0,59,255,0.15); border-radius: 24px; overflow: hidden; transform: scale(0.9) translateY(20px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 40px 120px rgba(0,59,255,0.15); }
#video-modal.open .modal-box { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(0,59,255,0.08); }
.modal-title { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.modal-close { width: 32px; height: 32px; background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); font-size: 1.1rem; transition: background 0.2s, color 0.2s; line-height: 1; font-family: inherit; }
.modal-close:hover { background: rgba(239,68,68,0.1); color: #ef4444; border-color: rgba(239,68,68,0.25); }
.modal-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.modal-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ─── UGUR HEKAYELERI PAGE ───────────────────────────────────── */
#ugur-section { padding: 5rem 2rem 7rem; }
.success-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.success-item { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--card); backdrop-filter: blur(16px); border: 1px solid rgba(0,59,255,0.06); transition: transform 0.3s, box-shadow 0.3s; cursor: default; will-change: transform; }
.success-item:hover { transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,59,255,0.12); }
.success-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.success-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,59,255,0.65) 0%,transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.2rem; }
.success-item:hover .success-item-overlay { opacity: 1; }
.success-item-label { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
@keyframes skeleton-pulse { 0%,100%{background:rgba(0,59,255,0.03);}50%{background:rgba(0,59,255,0.07);} }
.img-skeleton { animation: skeleton-pulse 1.5s infinite; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.test-card { background: var(--card); backdrop-filter: blur(16px); border: 1px solid rgba(0,59,255,0.06); border-radius: 20px; padding: 1.8rem; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; will-change: transform; box-shadow: 0 10px 40px rgba(0,59,255,0.03); }
.test-card:hover { border-color: rgba(0,59,255,0.25); transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,59,255,0.1); }
.test-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.test-quote { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #2563eb); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 0.9rem; flex-shrink: 0; }
.test-name { font-weight: 700; font-size: 0.875rem; color: var(--text); }
.test-meta { font-size: 0.75rem; color: var(--muted); }

/* Gallery preview (ugur page) */
.gallery-preview-section { padding: 6rem 2rem; }
.gallery-prev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 1100px; margin: 2.5rem auto 0; contain: layout style; }
.gallery-prev-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; width: 100%; background: rgba(224,231,255,0.6); border: 1px solid rgba(0,59,255,0.08); cursor: default; will-change: transform; transform: translateZ(0); isolation: isolate; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.gallery-prev-item:hover { transform: scale(1.03) translateZ(0); box-shadow: 0 16px 48px rgba(0,59,255,0.13); }
.gallery-prev-item img { display: block; width: 100%; height: 100%; object-fit: cover; transform: translateZ(0); }
.gallery-prev-item.img-skeleton { animation: skeleton-pulse 1.6s ease-in-out infinite; }
.gallery-prev-item.img-err { background: #dbeafe; }
.gallery-prev-item.img-err::after { content: '📊'; font-size: 2rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.gallery-prev-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,59,255,0.6) 0%,transparent 55%); opacity: 0; transition: opacity 0.25s; display: flex; align-items: flex-end; padding: 1rem; }
.gallery-prev-item:hover .gallery-prev-overlay { opacity: 1; }
.gallery-prev-overlay span { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 1px; }

/* ─── ELAQE PAGE ─────────────────────────────────────────────── */
#faq-section { padding: 5rem 2rem; }
.faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); backdrop-filter: blur(16px); border: 1px solid rgba(0,59,255,0.06); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(0,59,255,0.03); }
.faq-item.open { border-color: rgba(0,59,255,0.25); box-shadow: 0 10px 40px rgba(0,59,255,0.08); }
.faq-q { padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 1rem; }
.faq-q-text { font-size: 0.95rem; font-weight: 600; color: #475569; flex: 1; line-height: 1.5; transition: color 0.2s; }
.faq-item.open .faq-q-text { color: var(--text); }
.faq-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s, transform 0.4s; color: var(--blue); font-size: 1rem; font-weight: 700; line-height: 1; }
.faq-item.open .faq-icon { background: rgba(0,59,255,0.12); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 1.5rem 1.3rem; }
.faq-a p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
#contact-section { padding: 5rem 2rem 7rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.contact-info-val { font-size: 0.9rem; color: #334155; margin-top: 2px; }
.contact-form { background: var(--card); backdrop-filter: blur(16px); border: 1px solid rgba(0,59,255,0.06); border-radius: 24px; padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,59,255,0.04); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(248,250,252,0.8); border: 1.5px solid rgba(0,59,255,0.15);
  border-radius: 10px; color: var(--text); font-family: inherit; font-size: 0.9rem;
  padding: 0.85rem 1rem; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,59,255,0.12), 0 0 16px rgba(0,59,255,0.06);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--amber); color: #fff; font-weight: 700;
  font-size: 0.95rem; padding: 1rem; border-radius: 12px; border: none;
  cursor: pointer; transition: box-shadow 0.3s, transform 0.2s;
  letter-spacing: 0.5px; margin-top: 0.5rem; font-family: inherit;
  box-shadow: 0 4px 20px rgba(255,160,0,0.35);
}
.form-submit:hover { box-shadow: 0 8px 36px rgba(255,160,0,0.55); transform: translateY(-1px); }
@keyframes wa-btn-breathe {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.38); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.60); }
}
.form-submit-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  width: 100%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff; font-weight: 800; font-size: 1.02rem;
  padding: 1.1rem; border-radius: 14px; border: none;
  cursor: pointer; font-family: inherit; letter-spacing: 0.4px; margin-top: 0.75rem;
  transition: box-shadow 0.28s ease, transform 0.22s ease;
  animation: wa-btn-breathe 2.8s ease-in-out infinite;
  will-change: transform;
}
.form-submit-wa:hover {
  animation: none;
  box-shadow: 0 12px 44px rgba(37,211,102,0.62);
  transform: translateY(-3px) scale(1.015);
}
.form-submit-wa:active { animation: none; transform: translateY(0) scale(0.99); }
/* ─── HONEYPOT — invisible to humans, visible to bots ────────── */
.hp-trap {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none; tab-index: -1;
}
/* ─── FORM FEEDBACK MESSAGE ──────────────────────────────────── */
.form-msg {
  margin-top: 0.6rem; padding: 0.6rem 1rem;
  border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  background: rgba(0,59,255,0.06); color: var(--blue);
  border: 1px solid rgba(0,59,255,0.18); line-height: 1.5;
}
.form-msg--err {
  background: rgba(239,68,68,0.07); color: #dc2626;
  border-color: rgba(239,68,68,0.28);
}
::placeholder { color: #94a3b8; }
option { background: #fff; color: var(--text); }
#form-success { display: none; text-align: center; padding: 2.5rem; }
#form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
#form-success h3 { color: var(--blue); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
#form-success p { color: var(--muted); font-size: 0.875rem; }
.glow-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,59,255,0.2), transparent); margin: 2.5rem 0; }

/* ─── XİDMƏTLƏRİMİZ (service cards) ─────────────────────────── */
.services-section { padding: 5rem 2rem 7rem; }
.services-intro { max-width: 680px; margin-bottom: 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1280px; margin: 0 auto;
}
.service-card {
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 20px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  will-change: transform; box-shadow: 0 10px 40px rgba(0,59,255,0.03);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(0,59,255,0.2); box-shadow: 0 24px 60px rgba(0,59,255,0.1); }
.service-card:hover::before { opacity: 1; }
.service-card--amber::before { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.service-card--amber:hover { border-color: rgba(255,160,0,0.3); box-shadow: 0 24px 60px rgba(255,160,0,0.1); }
.service-icon-wrap {
  font-size: 2rem; width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-card--amber .service-icon-wrap { background: rgba(255,160,0,0.08); border-color: rgba(255,160,0,0.18); }
.service-title { font-size: 1.05rem; font-weight: 800; color: var(--text); line-height: 1.35; letter-spacing: -0.3px; }
.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; flex: 1; }
.service-cta {
  display: inline-flex; align-items: center; font-size: 0.82rem; font-weight: 700;
  color: var(--blue); text-decoration: none; letter-spacing: 0.3px;
  transition: gap 0.2s; gap: 0.25rem; margin-top: auto; padding-top: 0.5rem;
  border-top: 1px solid rgba(0,59,255,0.08);
}
.service-cta:hover { gap: 0.5rem; }
.service-cta--amber { color: var(--amber); border-top-color: rgba(255,160,0,0.1); }

/* ─── PRİSİNQ ────────────────────────────────────────────────── */
.pricing-section { padding: 6rem 2rem; background: rgba(238,242,255,0.35); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0;
  align-items: start;
}
.pricing-card {
  background: var(--card); border: 1px solid rgba(0,59,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px; padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 10px 40px rgba(0,59,255,0.04);
  position: relative; transition: box-shadow 0.3s, transform 0.3s;
  will-change: transform;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,59,255,0.1); }
.pricing-card--featured {
  border: 2px solid var(--amber);
  box-shadow: 0 12px 48px rgba(255,160,0,0.18);
  transform: scale(1.03); z-index: 2;
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 1.1rem;
  border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 14px rgba(255,160,0,0.4);
}
.pricing-tier { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; }
.pricing-card--featured .pricing-tier { color: var(--amber); }
.pricing-price { font-size: 3.2rem; font-weight: 900; color: var(--text); letter-spacing: -2px; line-height: 1; margin-bottom: 0.4rem; }
.pricing-currency { font-size: 1.6rem; vertical-align: super; color: var(--muted); font-weight: 700; }
.pricing-tagline { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; padding: 0; }
.pricing-features li { font-size: 0.84rem; color: #334155; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4; }
.feat-check { font-size: 0.75rem; color: var(--blue); font-weight: 900; background: rgba(0,59,255,0.08); border-radius: 4px; padding: 1px 4px; flex-shrink: 0; margin-top: 1px; }
.pricing-card--featured .feat-check { background: rgba(255,160,0,0.12); color: var(--amber); }
.feat-bold { background: rgba(255,160,0,0.15); color: var(--amber); }
.pricing-btn { display: block; width: 100%; text-align: center; padding: 0.85rem; border-radius: 12px; font-size: 0.9rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: box-shadow 0.3s, transform 0.2s; background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(0,59,255,0.25); }
.pricing-btn:hover { box-shadow: 0 8px 36px rgba(0,59,255,0.4); transform: translateY(-1px); }
.pricing-btn--amber { background: var(--amber); box-shadow: 0 4px 20px rgba(255,160,0,0.35); }
.pricing-btn--amber:hover { box-shadow: 0 8px 36px rgba(255,160,0,0.55); }

/* ─── PRICING DISCOUNT ───────────────────────────────────────── */
.pricing-discount-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #e63000, #ff6000);
  color: #fff; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.22rem 0.72rem; border-radius: 100px;
  margin-bottom: 0.6rem; width: fit-content;
  box-shadow: 0 3px 12px rgba(220,60,0,0.32);
}
.pricing-price-original {
  font-size: 0.88rem; color: #94a3b8; font-weight: 600;
  text-decoration: line-through; margin-bottom: 0.15rem;
  letter-spacing: -0.2px; display: block;
}

/* ─── NİYƏ ECOMACADEMY ───────────────────────────────────────── */
.why-section { padding: 6rem 2rem; }
.why-header { max-width: 680px; margin-bottom: 3rem; }
.why-points-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.2rem; max-width: 1280px; margin: 0 auto 3.5rem;
}
.why-point {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 16px; padding: 1.4rem 1.5rem;
  box-shadow: 0 6px 24px rgba(0,59,255,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-point:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,59,255,0.07); }
.why-num { font-size: 1.4rem; font-weight: 900; color: var(--blue); opacity: 0.18; letter-spacing: -1px; flex-shrink: 0; line-height: 1; }
.why-point strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.why-point p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin: 0; }
.value-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.value-card {
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 20px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  box-shadow: 0 10px 40px rgba(0,59,255,0.03);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  will-change: transform; position: relative; overflow: hidden;
}
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #2563eb); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(0,59,255,0.18); box-shadow: 0 24px 60px rgba(0,59,255,0.1); }
.value-card:hover::after { transform: scaleX(1); }
.value-card-icon { font-size: 2.2rem; }
.value-card-title { font-size: 1.05rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.value-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); border-top: 1px solid rgba(0,59,255,0.08); padding: 3rem 2rem; text-align: center; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.2rem; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0,59,255,0.28)) saturate(1.3); opacity: 0.9; }
.footer-logo { font-size: 1.4rem; font-weight: 900; color: var(--blue); }
.footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { color: #94a3b8; font-size: 0.8rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .courses-grid        { grid-template-columns: 1fr 1fr; }
  .about-grid          { grid-template-columns: 1fr 1fr; }
  .metrics-bar         { grid-template-columns: 1fr; }
  .mission-strip       { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .success-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card--featured { transform: none; }
  .value-cards-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-prev-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  nav#navbar           { padding: 0.75rem 1.25rem; }
  .nav-links           { display: none; }
  .nav-hamburger       { display: flex; }
  .nav-logo-img        { height: 36px; }

  #hero                { padding: 5rem 1.25rem 3rem; min-height: auto; }
  .hero-badge          { margin: 0 auto 1.5rem; }
  .hero-sub            { margin-left: auto; margin-right: auto; }
  .hero-cta-group      { justify-content: center; }


  section              { padding: 4rem 1.25rem; }
  .page-hero           { padding: 7rem 1.25rem 3.5rem; }

  .services-grid       { grid-template-columns: 1fr; }
  .pricing-grid        { max-width: 100%; }
  .value-cards-grid    { grid-template-columns: 1fr; }
  .why-points-grid     { grid-template-columns: 1fr; }
  .courses-grid        { grid-template-columns: 1fr; }
  .course-btn-group    { grid-template-columns: 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
  .success-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-prev-grid   { grid-template-columns: 1fr 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; gap: 2rem; }

  #fomo-toast          { left: 1rem; right: 1rem; max-width: none; bottom: 1rem; }
  .mobile-nav-links a  { font-size: 1.5rem; }

  .page-hero-heading   { letter-spacing: -1.5px; }
  .hero-heading        { letter-spacing: -1.5px; }
}

@media (max-width: 480px) {
  .hero-heading        { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .services-grid       { gap: 1rem; }
  .pricing-grid        { gap: 1rem; }
  .value-cards-grid    { gap: 1rem; }
  .why-points-grid     { gap: 1rem; }
  .gallery-prev-grid   { grid-template-columns: 1fr; }

  /* ── CTA Buttons — Mobile Safe Area Fix ─── */
  .hero-cta-group      { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-primary, .btn-vortex-cta {
    width: 100%; justify-content: center; text-align: center;
    font-size: 0.92rem; padding: 0.9rem 1rem;
    white-space: nowrap;
  }
}

/* ─── SAFE AREA INSETS (notch devices) ──────────────────────── */
@supports (padding: env(safe-area-inset-left)) {
  @media (max-width: 768px) {
    #hero {
      padding-left:  max(1.25rem, env(safe-area-inset-left));
      padding-right: max(1.25rem, env(safe-area-inset-right));
    }
    nav#navbar {
      padding-left:  max(1.25rem, env(safe-area-inset-left));
      padding-right: max(1.25rem, env(safe-area-inset-right));
    }
    #mobile-nav {
      padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM HAMBURGER — 3-line → X morph
   ═══════════════════════════════════════════════════════════════ */
/* ── Premium Minimal Hamburger ──────────────────────────────── */
.nav-hamburger {
  width: 40px; height: 40px;
  background: transparent;
  border: none !important;
  border-radius: 8px !important;
  align-items: center; justify-content: center;
  gap: 5px; padding: 0;
  transition: background 0.2s ease;
  position: relative; z-index: 1001;
}
.nav-hamburger:hover { background: rgba(15,23,42,0.06); }
.hbg-line {
  display: block; width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.34s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.22s ease;
  pointer-events: none;
}
.hbg-line-2 { width: 13px; }
.nav-hamburger.open { background: transparent; }
.nav-hamburger.open .hbg-line-1 { transform: translateY(6.5px) rotate(45deg); width: 20px; }
.nav-hamburger.open .hbg-line-2 { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hbg-line-3 { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV — Full-screen Glassmorphism Overlay
   ═══════════════════════════════════════════════════════════════ */
#mobile-nav {
  background: rgba(248,250,252,0.94);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  transform: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.4,0,0.2,1);
  flex-direction: column;
  gap: 0;
  padding: 6rem 2rem 3rem;
  justify-content: center;
  align-items: center;
}
#mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.mobile-nav-links a {
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1.6rem, 6vw, 2.2rem); font-weight: 800;
  color: var(--text); text-decoration: none; text-align: center;
  padding: 0.65rem 2rem; border-radius: 14px;
  letter-spacing: -0.5px; width: 100%; max-width: 320px;
  transition: color 0.2s, background 0.2s;
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}
.mobile-nav-links a:hover { color: var(--blue); background: rgba(0,59,255,0.06); }
.mobile-nav-cta-link {
  margin-top: 1.2rem !important;
  background: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(0,59,255,0.35) !important;
}
.mobile-nav-cta-link:hover {
  background: #1d4ed8 !important;
  color: #fff !important;
}

/* Hide old close button — hamburger now handles toggle */
#mobile-nav-close { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.blog-card {
  background: var(--card); border: 1px solid rgba(0,59,255,0.06);
  backdrop-filter: blur(16px);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  will-change: transform;
  box-shadow: 0 10px 40px rgba(0,59,255,0.03);
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(0,59,255,0.2); box-shadow: 0 20px 60px rgba(0,59,255,0.1); }
.blog-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.2rem 0.7rem; border-radius: 4px;
  background: rgba(0,59,255,0.08); color: var(--blue);
  border: 1px solid rgba(0,59,255,0.2); align-self: flex-start;
}
.blog-tag--amber { background: rgba(255,160,0,0.1); color: var(--amber); border-color: rgba(255,160,0,0.25); }
.blog-card-title { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.35; letter-spacing: -0.3px; }
.blog-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #94a3b8; padding-top: 1rem; border-top: 1px solid rgba(0,59,255,0.06); margin-top: auto; }
.blog-card-footer { padding: 1rem 1.8rem 1.5rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  text-decoration: none; transition: gap 0.2s;
}
.blog-read-more:hover { gap: 0.55rem; }

/* Full article layout */
.article-section { padding: 5rem 2rem 7rem; }
.article-container { max-width: 780px; margin: 0 auto; }
article { margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid rgba(0,59,255,0.08); }
article:last-of-type { border-bottom: none; }
.article-header { margin-bottom: 2rem; }
.article-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900;
  color: var(--text); line-height: 1.2; letter-spacing: -1px; margin-bottom: 0.75rem;
}
.article-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.78rem; color: #94a3b8; flex-wrap: wrap; margin-bottom: 1.5rem; }
.article-meta span { display: flex; align-items: center; gap: 0.3rem; }
.article-body h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--blue);
  margin: 2rem 0 0.75rem; letter-spacing: -0.3px;
}
.article-body h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.5rem; }
.article-body p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.3rem; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-cta-box {
  background: rgba(0,59,255,0.04); border: 1px solid rgba(0,59,255,0.15);
  border-radius: 16px; padding: 1.5rem 1.8rem; margin: 2rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.article-cta-box p { font-size: 0.9rem; color: var(--text); font-weight: 600; margin: 0; }
.article-cta-box a { white-space: nowrap; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-section { padding: 4rem 1.25rem 5rem; }
  .article-cta-box { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE ROOT — perspective container
   ═══════════════════════════════════════════════════════════════ */
#showcase-root {
  position: relative;
  perspective: 900px;
}

/* ═══════════════════════════════════════════════════════════════
   PHONE MOCKUP
   ═══════════════════════════════════════════════════════════════ */
#phone-wrap {
  position: absolute;
  left: 50%; top: 50%;
  width: 270px; height: 548px;
  pointer-events: none;
  z-index: 5;
}
#phone-body {
  width: 100%; height: 100%;
  background: linear-gradient(148deg, #dde4f2 0%, #c6cfea 55%, #d5ddf0 100%);
  border-radius: 46px;
  border: 9px solid rgba(255,255,255,0.75);
  position: relative; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 0 0 1px rgba(0,20,80,0.1),
    0 60px 120px -20px rgba(0,20,80,0.24),
    0 24px 48px -10px rgba(0,20,80,0.14),
    0 0 80px rgba(0,59,255,0.05);
}
/* Left-edge highlight */
#phone-body::before {
  content: '';
  position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.65), transparent);
  border-radius: 2px;
  pointer-events: none;
}
/* Top-face glass sheen */
#phone-body::after {
  content: '';
  position: absolute; top: 6px; left: 6px; right: 6px; height: 38%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent);
  border-radius: 40px 40px 0 0;
  pointer-events: none;
}
#phone-notch {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #070708;
  border-radius: 14px; z-index: 20;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,0,0,0.25);
}
#phone-notch::after {
  content: '';
  position: absolute; right: 11px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  background: #101020; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(20,40,100,0.5), inset 0 1px 2px rgba(0,0,80,0.6);
}
#phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(168deg, #f2f6ff 0%, #eaefff 55%, #f5f2ff 100%);
  border-radius: 38px; overflow: hidden;
}
#phone-screen-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 52px;
  display: flex; align-items: flex-end;
  padding: 0 18px 8px;
  justify-content: space-between;
  font-size: 10px; font-weight: 700;
  color: #3d4a6b; z-index: 10;
}
.phone-bar-icons { display: flex; gap: 5px; align-items: center; color: #3d4a6b; }
.phone-btn {
  position: absolute;
  background: linear-gradient(to right, #bec8de, #cdd6ee);
  border-radius: 2px;
}
.phone-btn-power  { right: -11px; top: 88px;  width: 4px; height: 58px; border-radius: 0 3px 3px 0; box-shadow: 2px 0 5px rgba(0,0,0,0.1); }
.phone-btn-vol1   { left: -11px;  top: 70px;  width: 4px; height: 36px; border-radius: 3px 0 0 3px; box-shadow: -2px 0 5px rgba(0,0,0,0.1); }
.phone-btn-vol2   { left: -11px;  top: 116px; width: 4px; height: 36px; border-radius: 3px 0 0 3px; box-shadow: -2px 0 5px rgba(0,0,0,0.1); }

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE CARDS — shared base
   ═══════════════════════════════════════════════════════════════ */
.sc-card {
  position: absolute; left: 50%; top: 50%;
  width: 200px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(28px) saturate(1.9);
  -webkit-backdrop-filter: blur(28px) saturate(1.9);
  border: 1px solid rgba(255,255,255,0.98);
  border-radius: 20px;
  padding: 1rem 1.1rem 0.95rem;
  overflow: hidden;
  will-change: transform;
  z-index: 20;
  box-shadow:
    0 8px 32px rgba(0,20,80,0.07),
    0 2px 8px rgba(0,20,80,0.04),
    inset 0 1px 0 rgba(255,255,255,1);
  transition: box-shadow 0.4s ease;
}
.sc-card.sc-kinematic {
  box-shadow:
    0 28px 70px rgba(0,20,80,0.15),
    0 10px 28px rgba(0,20,80,0.09),
    0 3px 8px rgba(0,20,80,0.06),
    inset 0 1px 0 rgba(255,255,255,1);
}
.sc-card-wide { width: 218px; }

/* Top accent bar */
.sc-card-accent {
  position: absolute; top: 0; left: 14px; right: 14px; height: 2px;
  border-radius: 0 0 2px 2px;
}
.sc-accent-blue   { background: linear-gradient(90deg, transparent, var(--blue) 40%, transparent); }
.sc-accent-purple { background: linear-gradient(90deg, transparent, #7c3aed 40%, transparent); }
.sc-accent-amber  { background: linear-gradient(90deg, transparent, var(--amber) 40%, transparent); }

.sc-card-header { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.5rem; }

.sc-icon {
  width: 26px; height: 26px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sc-icon-blue   { background: rgba(0,59,255,0.09);  color: var(--blue);  border: 1px solid rgba(0,59,255,0.14); }
.sc-icon-purple { background: rgba(124,58,237,0.09); color: #7c3aed;     border: 1px solid rgba(124,58,237,0.14); }
.sc-icon-amber  { background: rgba(255,160,0,0.1);   color: var(--amber); border: 1px solid rgba(255,160,0,0.14); }

.sc-eyebrow {
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.sc-title {
  font-size: 0.9rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.3px;
  margin-bottom: 0.5rem; margin-top: 0;
}
.sc-progress-wrap { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.38rem; }
.sc-progress-bar {
  flex: 1; height: 4px;
  background: rgba(0,59,255,0.07); border-radius: 2px; overflow: hidden;
}
.sc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #3b6fff);
  border-radius: 2px;
  animation: sc-glow-pulse 2.6s ease-in-out infinite alternate;
}
@keyframes sc-glow-pulse {
  from { box-shadow: 0 0 0 rgba(0,59,255,0); }
  to   { box-shadow: 0 0 8px rgba(0,59,255,0.5); }
}
.sc-progress-label { font-size: 0.62rem; font-weight: 800; color: var(--blue); white-space: nowrap; }
.sc-meta { font-size: 0.68rem; color: var(--muted); margin: 0; }

.sc-pills-row { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.sc-pill {
  display: inline-flex; padding: 0.16rem 0.55rem;
  border-radius: 100px; font-size: 0.6rem; font-weight: 700; white-space: nowrap;
}
.sc-pill-blue  { background: rgba(0,59,255,0.07);  color: var(--blue);  border: 1px solid rgba(0,59,255,0.16); }
.sc-pill-amber { background: rgba(255,160,0,0.09);  color: var(--amber); border: 1px solid rgba(255,160,0,0.18); }

.sc-delivery-status { display: flex; align-items: center; gap: 0.4rem; }
.sc-delivery-dot {
  width: 6px; height: 6px; background: #10b981; border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: sc-blink 1.9s ease infinite;
}
@keyframes sc-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.55; transform: scale(1.35); }
}
.sc-delivery-text { font-size: 0.68rem; color: var(--muted); }

/* ─── Elite card (dark premium) ───────────────────────────────── */
.sc-card-elite {
  background: linear-gradient(138deg, #0e1838 0%, #152150 55%, #091228 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 14px 44px rgba(0,8,40,0.44),
    0 4px 14px rgba(0,8,40,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.sc-card-elite.sc-kinematic {
  box-shadow:
    0 30px 80px rgba(0,8,40,0.55),
    0 12px 32px rgba(0,8,40,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.sc-elite-shine {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(138deg,
    rgba(255,255,255,0.07) 0%, transparent 45%,
    rgba(0,59,255,0.04) 70%, transparent 100%);
}
.sc-elite-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.sc-elite-logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #4a7dff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,59,255,0.45);
}
.sc-elite-chip { display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.sc-chip-row   { display: flex; gap: 2px; }
.sc-chip-cell  { width: 10px; height: 7px; background: rgba(255,215,50,0.72); border-radius: 1px; }
.sc-eyebrow-light { color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.2rem; }
.sc-title-light   { color: rgba(255,255,255,0.92); }
.sc-elite-number {
  font-size: 0.66rem; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.42);
  font-family: 'Space Grotesk', monospace;
  margin-bottom: 0.7rem;
}
.sc-elite-footer { display: flex; justify-content: space-between; align-items: center; }
.sc-elite-name   { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.44); letter-spacing: 1px; }
.sc-elite-star   { font-size: 0.58rem; font-weight: 800; color: var(--amber); letter-spacing: 1px; }

/* Particle canvas */
#sc-particles {
  position: absolute; inset: -60px;
  pointer-events: none; z-index: 15; opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-right { min-height: 520px; }
}
@media (max-width: 768px) {
  .hero-right { min-height: 400px; }
  .sc-card     { width: 168px; padding: 0.75rem 0.85rem 0.7rem; border-radius: 16px; }
  .sc-card-wide { width: 182px; }
  .sc-title    { font-size: 0.78rem; }
  .sc-eyebrow  { font-size: 0.52rem; }
}
@media (max-width: 480px) {
  .hero-right  { min-height: 340px; }
  .sc-card     { width: 148px; padding: 0.65rem 0.75rem; }
  .sc-card-wide { width: 162px; }
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM ANIMATION SECTION — blog.html
   ═══════════════════════════════════════════════════════════════ */
.plat-section {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* ── Central hub ─────────────────────────────────────────────── */
.plat-hub {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plat-hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,59,255,0.18);
  animation: plat-hub-breathe 3s ease-in-out infinite;
  pointer-events: none;
}
.plat-hub-ring-1 { width: 160px; height: 160px; animation-delay: 0s; }
.plat-hub-ring-2 { width: 212px; height: 212px; animation-delay: 0.6s;  border-color: rgba(0,59,255,0.11); }
.plat-hub-ring-3 { width: 268px; height: 268px; animation-delay: 1.2s;  border-color: rgba(0,59,255,0.06); }

@keyframes plat-hub-breathe {
  0%,100% { transform: scale(1);     opacity: 0.8; }
  50%     { transform: scale(1.06);  opacity: 0.28; }
}

.plat-hub-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,59,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: plat-hub-breathe 3s ease-in-out infinite;
}

.plat-hub-logo {
  position: relative; z-index: 2;
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 8px 24px rgba(0,59,255,0.22));
  animation: plat-logo-float 4s ease-in-out infinite;
}

@keyframes plat-logo-float {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-8px); }
}

/* ── Platform cards ──────────────────────────────────────────── */
.plat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.plat-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.96);
  border-radius: 20px;
  padding: 1.2rem 1rem 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  box-shadow:
    0 8px 32px rgba(0,20,80,0.08),
    0 2px 8px rgba(0,20,80,0.04),
    inset 0 1px 0 rgba(255,255,255,1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.plat-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow:
    0 22px 60px rgba(0,20,80,0.14),
    0 6px 18px rgba(0,20,80,0.07),
    inset 0 1px 0 rgba(255,255,255,1);
}

.plat-card-top-bar {
  position: absolute; top: 0; left: 12px; right: 12px;
  height: 2.5px;
  border-radius: 0 0 3px 3px;
}

.plat-logo-wrap {
  width: 100%; height: 54px;
  display: flex; align-items: center; justify-content: center;
  margin: 0.3rem 0 0.15rem;
}
.plat-logo {
  max-width: 100%; max-height: 46px;
  width: auto; height: auto;
  object-fit: contain;
}

.plat-label {
  font-size: 0.8rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.2px;
}
.plat-stat {
  font-size: 0.67rem; color: var(--muted); font-weight: 500;
}

/* ═══ BENTO GRID + INFINITE MARQUEE — index.html ═══════════════════ */
#proof-section {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,59,255,0.025) 40%, transparent 100%);
  overflow: hidden;
}

.proof-header-wrap {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}

/* ── Bento Wrap & Grid ─────────────────────────────────────────── */
.bento-wrap {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 176px 200px;
  gap: 14px;
}

/* Grid placement */
.bento-c-hero      { grid-column: 1 / 3; grid-row: 1; }
.bento-c-rate      { grid-column: 3 / 4; grid-row: 1; }
.bento-c-guarantee { grid-column: 4 / 5; grid-row: 1; }
.bento-c-platforms { grid-column: 1 / 2; grid-row: 2; }
.bento-c-quote     { grid-column: 2 / 4; grid-row: 2; }
.bento-c-exp       { grid-column: 4 / 5; grid-row: 2; }

/* ── Base card ─────────────────────────────────────────────────── */
.bento-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,59,255,0.07);
  border-radius: 20px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 12px 40px rgba(0,59,255,0.1),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* ── Hero card (500+) ──────────────────────────────────────────── */
.bento-c-hero {
  background: linear-gradient(135deg, rgba(0,59,255,0.05) 0%, rgba(255,255,255,0.97) 65%);
  justify-content: flex-start;
  padding-top: 28px;
}

.bento-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,59,255,0.12) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Numbers ───────────────────────────────────────────────────── */
.bento-big-num {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -3px;
  font-family: 'Space Grotesk', sans-serif;
}

.bento-plus { color: var(--amber); }

.bento-amber { color: var(--amber) !important; }

.bento-num-sm { font-size: 2.8rem; }

/* ── Typography ────────────────────────────────────────────────── */
.bento-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
  line-height: 1.3;
}

.bento-card-sub {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.bento-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

/* ── Platforms card ────────────────────────────────────────────── */
.bento-plat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-bottom: 12px;
}

.bento-plat-chips {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bento-chip {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  width: fit-content;
}

.bento-chip--shopify { background: rgba(149,191,71,0.14); color: #3d6b18; border: 1px solid rgba(149,191,71,0.25); }
.bento-chip--ebay    { background: rgba(0,59,255,0.09);   color: var(--blue); border: 1px solid rgba(0,59,255,0.16); }
.bento-chip--amazon  { background: rgba(255,160,0,0.12);  color: #92400e; border: 1px solid rgba(255,160,0,0.22); }

/* ── Quote card (dark) ─────────────────────────────────────────── */
.bento-c-quote {
  background: linear-gradient(140deg, #0f2adb 0%, #1e3a8a 100%);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,59,255,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
  justify-content: space-between;
  padding-top: 22px;
}

.bento-c-quote:hover {
  box-shadow: 0 8px 40px rgba(0,59,255,0.38), inset 0 1px 0 rgba(255,255,255,0.15);
}

.bento-quote-mark {
  font-size: 3.8rem;
  line-height: 0.8;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.2);
  margin-bottom: 6px;
  display: block;
}

.bento-quote-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  flex: 1;
  margin: 0 0 16px;
}

.bento-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.13);
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.22);
  transition: background 0.2s ease;
  align-self: flex-start;
  backdrop-filter: blur(8px);
}

.bento-cta-btn:hover { background: rgba(255,255,255,0.24); }

/* ── Exp card ──────────────────────────────────────────────────── */
.bento-c-exp { justify-content: flex-start; padding-top: 22px; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .bento-c-hero      { grid-column: 1 / 3; grid-row: auto; }
  .bento-c-rate      { grid-column: auto;  grid-row: auto; }
  .bento-c-guarantee { grid-column: auto;  grid-row: auto; }
  .bento-c-platforms { grid-column: auto;  grid-row: auto; }
  .bento-c-quote     { grid-column: 1 / 3; grid-row: auto; }
  .bento-c-exp       { grid-column: auto;  grid-row: auto; }
  .bento-big-num { font-size: 3rem; }
}

@media (max-width: 540px) {
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-c-hero, .bento-c-quote { grid-column: 1; }
  .bento-big-num { font-size: 2.8rem; }
  #proof-section { padding: 64px 0 56px; }
  .proof-header-wrap { margin-bottom: 36px; }
  .bento-wrap { padding: 0 16px; }
}

/* ── Infinite Marquee ──────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-row { overflow: hidden; }

.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-fwd { animation: marquee-scroll 32s linear infinite; }
.marquee-rev { animation: marquee-scroll 28s linear infinite reverse; }

.marquee-section:hover .marquee-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee-fwd, .marquee-rev { animation: none; }
}

.mq-item {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mq-item:hover {
  box-shadow: 0 6px 28px rgba(0,59,255,0.13);
  transform: scale(1.025);
}

.mq-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.mq-item--sm img { height: 260px; }

@media (max-width: 540px) {
  .mq-item { width: 200px; }
  .mq-item img { height: 240px; }
  .mq-item--sm img { height: 210px; }
}

.plat-card-badge {
  margin-top: 0.25rem;
  padding: 0.16rem 0.58rem;
  border-radius: 100px;
  font-size: 0.59rem; font-weight: 700; letter-spacing: 0.5px;
}
.plat-badge-blue  { background: rgba(0,59,255,0.07);   color: var(--blue);  border: 1px solid rgba(0,59,255,0.17); }
.plat-badge-green { background: rgba(149,191,71,0.10); color: #4a7600;     border: 1px solid rgba(149,191,71,0.26); }
.plat-badge-red   { background: rgba(255,75,0,0.08);   color: #c03800;     border: 1px solid rgba(255,75,0,0.20); }
.plat-badge-teal  { background: rgba(0,178,194,0.09);  color: #006e7a;     border: 1px solid rgba(0,178,194,0.20); }

/* ── Float keyframes — staggered per card ────────────────────── */
.plat-float-1 { animation: plat-f1 5.0s ease-in-out infinite; }
.plat-float-2 { animation: plat-f2 5.8s ease-in-out infinite; }
.plat-float-3 { animation: plat-f3 4.6s ease-in-out infinite; }
.plat-float-4 { animation: plat-f4 6.2s ease-in-out infinite; }

@keyframes plat-f1 {
  0%,100% { transform: translateY(0px)   rotate(0deg); }
  50%     { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes plat-f2 {
  0%,100% { transform: translateY(-4px)  rotate(-0.3deg); }
  50%     { transform: translateY(6px)   rotate(0.4deg); }
}
@keyframes plat-f3 {
  0%,100% { transform: translateY(2px)   rotate(0.3deg); }
  50%     { transform: translateY(-9px)  rotate(-0.5deg); }
}
@keyframes plat-f4 {
  0%,100% { transform: translateY(-3px)  rotate(-0.3deg); }
  50%     { transform: translateY(8px)   rotate(0.5deg); }
}

/* ── Infinite marquee ticker ─────────────────────────────────── */
.plat-marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  margin-top: 1rem;
}
.plat-marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: plat-marquee 22s linear infinite;
}
.plat-marquee-img {
  height: 36px; width: auto;
  object-fit: contain;
  opacity: 0.52;
  filter: grayscale(0.28);
  flex-shrink: 0;
  transition: opacity 0.3s, filter 0.3s;
}
.plat-marquee-img:hover { opacity: 0.9; filter: grayscale(0); }

@keyframes plat-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .plat-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    gap: 1rem;
  }
  .plat-hub-ring-3 { display: none; }
}
@media (max-width: 480px) {
  .plat-section   { padding: 3.5rem 0 3rem; }
  .plat-cards     { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .plat-hub-logo  { width: 64px; height: 64px; }
  .plat-hub-ring-2 { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM SERVICE ACCORDION — kurslar.html
   ═══════════════════════════════════════════════════════════════ */

.svc-acc-section { padding: 5rem 2rem 7rem; }

.svc-acc-intro { max-width: 680px; margin-bottom: 3rem; }

.svc-acc-list {
  display: flex; flex-direction: column;
  gap: 1rem; max-width: 1100px; margin: 0 auto;
}

/* ─── Individual accordion item ─── */
.svc-acc-item {
  background: var(--card);
  border: 1px solid rgba(0,59,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,59,255,0.03);
  will-change: transform;
}
.svc-acc-item.open {
  border-color: rgba(0,59,255,0.22);
  box-shadow: 0 12px 48px rgba(0,59,255,0.09);
}

/* ─── Header button ─── */
.svc-acc-hdr {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  transition: background 0.2s ease;
}
.svc-acc-hdr:hover { background: rgba(0,59,255,0.025); }
.svc-acc-item.open .svc-acc-hdr { background: rgba(0,59,255,0.03); }

.svc-acc-hdr-left {
  display: flex; align-items: center; gap: 1.2rem; flex: 1; min-width: 0;
}
.svc-acc-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(0,59,255,0.06); border: 1px solid rgba(0,59,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; overflow: hidden;
}
.svc-acc-icon img { width: 32px; height: 32px; object-fit: contain; }

.svc-acc-meta { min-width: 0; }
.svc-acc-name {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.4px; line-height: 1.25;
  margin: 0 0 0.25rem;
}
.svc-acc-sub {
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.4; margin: 0;
}

.svc-acc-hdr-right {
  display: flex; align-items: center;
  gap: 1.2rem; flex-shrink: 0;
}
.svc-acc-price-tag {
  font-size: 1rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.5px;
  background: rgba(0,59,255,0.06);
  border: 1px solid rgba(0,59,255,0.15);
  padding: 0.3rem 0.9rem; border-radius: 100px;
  white-space: nowrap;
}
.svc-acc-price-tag--amber {
  color: var(--amber);
  background: rgba(255,160,0,0.07);
  border-color: rgba(255,160,0,0.22);
}
.svc-acc-chevron {
  color: var(--muted); flex-shrink: 0;
  display: flex; align-items: center;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.svc-acc-item.open .svc-acc-chevron { color: var(--blue); transform: rotate(180deg); }

/* ─── Collapsible body — CSS Grid trick for smooth animation ─── */
.svc-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.48s cubic-bezier(0.4,0,0.2,1);
}
.svc-acc-item.open .svc-acc-body { grid-template-rows: 1fr; }
.svc-acc-body-inner { overflow: hidden; }

.svc-acc-desc {
  padding: 0 2rem 1.5rem;
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.75; max-width: 780px;
  border-bottom: 1px solid rgba(0,59,255,0.06);
  margin-bottom: 0;
}

/* ─── Package cards inside accordion ─── */
.svc-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 2rem 2rem;
}

.svc-pkg-card {
  background: rgba(248,250,252,0.7);
  border: 1px solid rgba(0,59,255,0.08);
  border-radius: 16px; padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0;
  position: relative; transition: border-color 0.3s, box-shadow 0.3s;
}
.svc-pkg-card:hover {
  border-color: rgba(0,59,255,0.2);
  box-shadow: 0 8px 32px rgba(0,59,255,0.07);
}
.svc-pkg-card--featured {
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(0,59,255,0.22);
  box-shadow: 0 8px 32px rgba(0,59,255,0.08);
}
.svc-pkg-card--amber {
  background: rgba(255,250,240,0.7);
  border-color: rgba(255,160,0,0.18);
}
.svc-pkg-card--amber:hover {
  border-color: rgba(255,160,0,0.35);
  box-shadow: 0 8px 32px rgba(255,160,0,0.09);
}

.svc-pkg-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.25rem 0.9rem; border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,59,255,0.35);
}
.svc-pkg-badge--amber {
  background: var(--amber);
  box-shadow: 0 3px 12px rgba(255,160,0,0.4);
}

.svc-pkg-tier {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.svc-pkg-card--featured .svc-pkg-tier { color: var(--blue); }
.svc-pkg-card--amber .svc-pkg-tier { color: var(--amber); }

.svc-pkg-price-wrap {
  display: flex; align-items: flex-end; gap: 0.2rem;
  margin-bottom: 0.35rem;
}
.svc-pkg-price {
  font-size: 3rem; font-weight: 900;
  color: var(--text); letter-spacing: -2.5px; line-height: 1;
}
.svc-pkg-currency {
  font-size: 1.5rem; font-weight: 700;
  color: var(--muted); margin-bottom: 0.25rem;
}
.svc-pkg-price-wrap--custom { margin-bottom: 0.35rem; }
.svc-pkg-price-custom {
  font-size: 1.3rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.5px; line-height: 1.2;
}

.svc-pkg-tagline {
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 1.5rem; line-height: 1.4;
}

.svc-pkg-feats {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.55rem; flex: 1;
}
.svc-pkg-feats li {
  font-size: 0.84rem; color: #334155;
  display: flex; align-items: flex-start; gap: 0.55rem; line-height: 1.4;
}
.svc-pkg-feats strong { color: var(--text); font-weight: 700; }

.svc-feat-check {
  font-size: 0.7rem; font-weight: 900;
  background: rgba(0,59,255,0.08); color: var(--blue);
  border-radius: 4px; padding: 1px 4px;
  flex-shrink: 0; margin-top: 2px; line-height: 1.4;
}
.svc-feat-check--gold {
  background: rgba(255,160,0,0.12); color: var(--amber);
}
.svc-feat-check--amber {
  background: rgba(255,160,0,0.12); color: var(--amber);
}

/* ─── CTA Buttons ─── */
.svc-cta-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.8rem 1.4rem;
  border-radius: 12px; font-size: 0.88rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.3s ease, background 0.25s ease;
  will-change: transform; font-family: inherit; border: none;
  margin-top: auto;
}
.svc-cta-btn:hover { transform: translateY(-2px); }

.svc-cta-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(0,59,255,0.25);
  color: var(--blue);
}
.svc-cta-btn--outline:hover {
  background: rgba(0,59,255,0.06);
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,59,255,0.12);
}
.svc-cta-btn--primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px rgba(0,59,255,0.28);
}
.svc-cta-btn--primary:hover {
  box-shadow: 0 8px 36px rgba(0,59,255,0.42);
}
.svc-cta-btn--amber {
  background: var(--amber); color: #fff;
  box-shadow: 0 4px 20px rgba(255,160,0,0.32);
}
.svc-cta-btn--amber:hover {
  box-shadow: 0 8px 36px rgba(255,160,0,0.5);
}

/* ─── Accordion Responsive ─── */
@media (max-width: 1024px) {
  .svc-acc-hdr { padding: 1.25rem 1.5rem; }
  .svc-pkg-grid { padding: 1.25rem 1.5rem 1.5rem; }
  .svc-acc-desc { padding: 0 1.5rem 1.25rem; }
}
@media (max-width: 768px) {
  .svc-acc-section { padding: 4rem 1.25rem 5rem; }
  .svc-acc-hdr { padding: 1.1rem 1.25rem; gap: 0.75rem; }
  .svc-acc-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  .svc-acc-name { font-size: 0.95rem; }
  .svc-acc-sub { display: none; }
  .svc-acc-price-tag { font-size: 0.88rem; padding: 0.25rem 0.7rem; }
  .svc-acc-desc { padding: 0 1.25rem 1.25rem; font-size: 0.85rem; }
  .svc-pkg-grid { grid-template-columns: 1fr; padding: 1.25rem; gap: 3rem; }
  .svc-pkg-card--featured { margin-top: 0.5rem; }
}
@media (max-width: 480px) {
  .svc-acc-price-tag { display: none; }
  .svc-pkg-price { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — TOC, Related Articles, CTA Section
   ═══════════════════════════════════════════════════════════════ */

/* ─── Article Table of Contents ─── */
.article-toc {
  background: rgba(0,59,255,0.03);
  border: 1px solid rgba(0,59,255,0.1);
  border-radius: 14px; padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
}
.article-toc-title {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin: 0 0 0.85rem;
}
.article-toc-list {
  padding-left: 1.2rem; margin: 0;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.article-toc-list li { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.article-toc-list a {
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.article-toc-list a:hover { color: var(--blue); text-decoration: underline; }

/* ─── Related Articles ─── */
.article-related {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(0,59,255,0.08);
}
.article-related-title {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.article-related-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.article-related-card {
  background: rgba(248,250,252,0.8);
  border: 1px solid rgba(0,59,255,0.07);
  border-radius: 12px; padding: 1rem 1.1rem;
  text-decoration: none; display: flex;
  flex-direction: column; gap: 0.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.article-related-card:hover {
  border-color: rgba(0,59,255,0.2);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(0,59,255,0.07);
}
.article-related-card p {
  font-size: 0.84rem; font-weight: 600;
  color: var(--text); line-height: 1.45;
  margin: 0;
}

/* ─── Blog CTA Section ─── */
.blog-cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 60%, #1e40af 100%);
  padding: 5rem 2rem;
}
.blog-cta-inner { max-width: 780px; margin: 0 auto; }
.blog-cta-content { text-align: center; }
.blog-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.blog-cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.78);
  line-height: 1.7; max-width: 520px; margin: 0 auto 2rem;
}
.blog-cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.blog-cta-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.9rem 1.9rem; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.3s ease, background 0.25s ease;
  will-change: transform; font-family: inherit;
}
.blog-cta-btn:hover { transform: translateY(-2px); }
.blog-cta-btn--wa {
  background: #22c55e; color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
}
.blog-cta-btn--wa:hover { box-shadow: 0 8px 36px rgba(34,197,94,0.6); }
.blog-cta-btn--outline {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.blog-cta-btn--outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

/* ─── Blog Responsive ─── */
@media (max-width: 768px) {
  .article-related-grid { grid-template-columns: 1fr; }
  .blog-cta-section { padding: 3.5rem 1.25rem; }
  .blog-cta-btns { flex-direction: column; align-items: stretch; }
  .blog-cta-btn { justify-content: center; }
}
