/* ============================================================
   CANICE AI — Light Premium Design System
   Fonts: Playfair Display (headings) + DM Sans (body)
   Colors: #0C274A (primary) / #FF6210 (accent) / #FFFFFF (bg)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:        #0C274A;
  --accent:         #FF6210;
  --accent-hover:   #E5540A;
  --accent-light:   rgba(255,98,16,.08);
  --accent-border:  rgba(255,98,16,.25);

  /* Backgrounds */
  --bg:             #FFFFFF;
  --surface:        #F7F9FC;
  --surface-2:      #EEF2F7;
  --surface-3:      #E4EAF2;

  /* Text */
  --text-main:      #0C274A;
  --text-secondary: rgba(12,39,74,.82);
  --text-muted:     rgba(12,39,74,.58);

  /* Borders */
  --border:         rgba(12,39,74,.10);
  --border-2:       rgba(12,39,74,.16);

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(12,39,74,.05);
  --shadow-sm:  0 2px 8px rgba(12,39,74,.07);
  --shadow-md:  0 6px 24px rgba(12,39,74,.10);
  --shadow-lg:  0 16px 48px rgba(12,39,74,.13);
  --shadow-xl:  0 32px 80px rgba(12,39,74,.16);
  --accent-glow:0 8px 28px rgba(255,98,16,.30);

  /* Typography */
  --ff-display: "Inter", system-ui, -apple-system, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", monospace;

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Motion */
  --ease:     cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.4,0,.2,1);
  --t-fast:   160ms;
  --t-mid:    280ms;
  --t-slow:   500ms;

  /* Layout */
  --container:   1200px;
  --section-gap: clamp(72px, 9vw, 112px);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-main);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Selection */
::selection { background: rgba(255,98,16,.15); color: var(--primary); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.section        { padding: var(--section-gap) 0; }
.section--alt   { background: var(--surface); }
.section--dark  {
  background: var(--primary);
  color: #fff;
}
.section--dark .section-title { color: #fff; }
.section--dark .section-sub   { color: rgba(255,255,255,.65); }
.section--dark .section-label { color: rgba(255,255,255,.55); }
.section--dark .section-label::before { background: rgba(255,255,255,.3); }

/* ── Offers section fixed background ───────────────────────── */
#offers {
  background: url('/assets/images/offers-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  position: relative;
}
#offers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,39,74,.78);
  pointer-events: none;
}
#offers > * { position: relative; z-index: 1; }
#offers .section-title { color: #fff; }
#offers .section-sub   { color: rgba(255,255,255,.70); }
#offers .section-label { color: rgba(255,255,255,.60); }
#offers .section-label::before { background: rgba(255,255,255,.35); }
#offers .section-label::after  { background: rgba(255,255,255,.35); }

/* ── Typography scale ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-label  { justify-content: center; }
.section-header--center .section-sub    { margin: 0 auto; }
.section-header--center .section-label::before { display: none; }
.section-header--center .section-label::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.text-accent    { color: var(--accent); }
.text-primary   { color: var(--primary); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              background var(--t-fast),
              border-color var(--t-fast);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-lg svg { width: 18px; height: 18px; }
.btn-sm svg { width: 14px; height: 14px; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-dark:hover {
  background: #0a1f3c;
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-xs { padding: 6px 12px; font-size: .75rem; }

/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-mid);
}
.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img    { height: 36px; width: auto; object-fit: contain; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
}
.footer-brand .logo-name { color: #fff; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .999rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--primary); background: var(--surface); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: #fff;
  z-index: 190;
  flex-direction: column;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
  letter-spacing: -.02em;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--accent); }
.nav-drawer .drawer-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--bg) url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.82);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-bg-shape {
  position: absolute;
  top: -60px; right: -80px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,98,16,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-shape-2 {
  position: absolute;
  bottom: -40px; left: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12,39,74,.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 660px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--primary);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-note svg { color: var(--accent); flex-shrink: 0; }

/* Hero aside stat card */
.hero-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255,98,16,.2));
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.hero-stat { padding: 16px 0; border-bottom: 1px solid var(--border); }
.hero-stat:last-child { border: none; padding-bottom: 0; }
.hero-stat-number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}
.hero-stat-label { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.hero-stat-divider { display: none; }

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.stats-bar-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.stats-bar-inner::-webkit-scrollbar { display: none; }
.stats-bar-item {
  flex: 1;
  min-width: 160px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.stats-bar-item:last-child { border: none; }
.stat-val {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-def {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Testimonials ────────────────────────────────────────────── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.tcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
  position: relative;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tcard-stars { color: var(--accent); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent-border);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--accent);
  flex-shrink: 0;
}
.tcard-name { font-size: 1rem; font-weight: 700; color: var(--primary); }
.tcard-role { font-size: .875rem; color: var(--text-muted); margin-top: 1px; }

/* ── Offer strip ─────────────────────────────────────────────── */
.offer-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.offer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 400px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card-training { border-top: 3px solid var(--accent); }
.offer-card-services  { border-top: 3px solid var(--primary); }

.offer-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.offer-card-icon--dark {
  background: rgba(12,39,74,.07);
  border-color: rgba(12,39,74,.12);
  color: var(--primary);
}
.offer-card-icon svg { width: 22px; height: 22px; }

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  align-self: flex-start;
}
.offer-tag-training {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.offer-tag-services {
  background: rgba(12,39,74,.06);
  border: 1px solid rgba(12,39,74,.12);
  color: var(--primary);
}
.offer-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.25;
}
.offer-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; flex: 1; }
.offer-list { display: flex; flex-direction: column; gap: 9px; }
.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.offer-list li svg, .offer-list li i { color: var(--accent); flex-shrink: 0; width: 14px; height: 14px; }
.offer-list--dark li svg,
.offer-list--dark li i { color: var(--primary); }
.offer-cta { margin-top: auto; padding-top: 20px; }

/* ── Benefits ────────────────────────────────────────────────── */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.benefit-cell {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-mid), transform var(--t-mid) var(--ease);
}
.benefit-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-cell-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.benefit-cell:hover .benefit-cell-icon {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--accent-glow);
}
.benefit-cell-icon svg { width: 22px; height: 22px; }
.benefit-cell-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.benefit-cell-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; }

/* ── Section utilities ───────────────────────────────────────── */
.section-cta   { text-align: center; margin-top: 48px; }
.empty-state   { text-align: center; padding: 64px 24px; color: var(--text-muted); }
.empty-state svg { margin: 0 auto; }

/* ── Video section ───────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.9);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.video-card:hover .video-play-circle { transform: translate(-50%,-50%) scale(1); box-shadow: 0 6px 28px rgba(0,0,0,.3); }
.video-play-circle svg { width: 18px; height: 18px; margin-left: 2px; }
.video-info { padding: 16px; }
.video-title { font-size: 1rem; font-weight: 600; color: var(--primary); line-height: 1.45; }

/* Video modal */
.video-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,39,74,.85);
  backdrop-filter: blur(8px);
  z-index: 500;
  place-items: center;
  padding: 20px;
  animation: fadeIn 240ms ease;
}
.video-modal-backdrop.open { display: grid; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.video-modal { width: 90%; max-width: 900px; position: relative; }
.video-modal iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
}
.modal-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--t-fast);
}
.modal-close:hover { background: rgba(255,255,255,.3); }

/* ── Blog cards ──────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-grid--2col { grid-template-columns: repeat(2,1fr); }

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  background: var(--surface-2);
}
.blog-thumb-placeholder svg { width: 32px; height: 32px; opacity: .4; }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.blog-cat:hover { color: var(--accent-hover); }
.blog-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.015em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-title a { transition: color var(--t-fast); }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; flex: 1; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: .875rem; color: var(--text-muted); }
.blog-meta time { display: inline-flex; align-items: center; gap: 5px; }

/* ── Blog listing layout ─────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.sidebar-widget h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background: var(--surface);
  border: 1px dashed var(--border-2);
  border-radius: var(--r-lg);
}
.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  gap: 8px;
}
.cat-link:last-child { border: none; }
.cat-link:hover, .cat-link.active { color: var(--accent); }

/* ── Ad zones ────────────────────────────────────────────────── */
.ad-zone {
  background: var(--surface);
  border: 1px dashed var(--border-2);
  border-radius: var(--r-md);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Inner page hero ─────────────────────────────────────────── */
.inner-hero {
  background: var(--surface);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.inner-hero--compact { padding: 110px 0 52px; }
.inner-hero-decor {
  position: absolute;
  top: -40px; right: -40px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,98,16,.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-visual-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(240px, 30vw, 380px);
  opacity: .35;
  pointer-events: none;
}

.inner-hero-content { position: relative; z-index: 1; max-width: 660px; }

.inner-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.inner-hero-eyebrow svg { width: 14px; height: 14px; }

.inner-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.12;
  color: var(--primary);
  margin-bottom: 16px;
}
.inner-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.82;
  margin-bottom: 32px;
}

/* ── Steps grid ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.step-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: box-shadow var(--t-mid);
}
.step-item:hover { box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title { font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.step-desc  { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Programs grid ───────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.program-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.program-card-stripe { height: 4px; width: 100%; }
.stripe-flame  { background: linear-gradient(90deg, var(--accent), #FF9560); }
.stripe-mint   { background: linear-gradient(90deg, #00B894, #00D4AA); }
.stripe-amber  { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.stripe-violet { background: linear-gradient(90deg, #7C3AED, #A78BFA); }

.program-card-top    { padding: 32px; flex: 1; }
.program-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  background: var(--accent-light);
}
.program-icon svg { width: 22px; height: 22px; }
.program-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.program-tagline { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.program-section-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.program-list { display: flex; flex-direction: column; gap: 8px; }
.program-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}
.program-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.program-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  margin-top: 20px;
}
.program-outcome svg { color: var(--accent); flex-shrink: 0; }
.program-card-bottom {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.program-who { font-size: .95rem; color: var(--text-secondary); line-height: 1.65; }

/* ── Tools strip ─────────────────────────────────────────────── */
.tools-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-pill {
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.tool-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ── Enrollment section ──────────────────────────────────────── */
.enroll-section {
  background: var(--primary);
  padding: var(--section-gap) 0;
  color: #fff;
}
.enroll-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
.enroll-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.enroll-copy p { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 28px; }
.enroll-perks { display: flex; flex-direction: column; gap: 10px; }
.enroll-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,.8);
}
.enroll-perks li i,
.enroll-perks li svg { color: var(--accent); flex-shrink: 0; width: 16px; height: 16px; }

.enroll-form-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.enroll-form-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.enroll-form-sub { font-size: .92rem; color: var(--text-muted); margin-bottom: 24px; }

/* ── Form controls (public) ──────────────────────────────────── */
.pub-form-group { margin-bottom: 18px; }
.pub-form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.pub-form-control {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text-main);
  font-size: .9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.pub-form-control::placeholder { color: var(--text-muted); }
.pub-form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,98,16,.12);
}
textarea.pub-form-control { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--r-sm);
  color: #166534;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: #FFF7F5;
  border: 1px solid rgba(255,98,16,.3);
  border-radius: var(--r-sm);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ── Services grid ───────────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.service-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.sfc-header { padding: 32px; border-bottom: 1px solid var(--border); }
.sfc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.sfc-icon-wrap svg { width: 22px; height: 22px; }
.sfc-icon-blue   { background: rgba(59,130,246,.1);  border: 1px solid rgba(59,130,246,.2);  color: #2563EB; }
.sfc-icon-cyan   { background: rgba(6,182,212,.1);   border: 1px solid rgba(6,182,212,.2);   color: #0891B2; }
.sfc-icon-purple { background: rgba(124,58,237,.1);  border: 1px solid rgba(124,58,237,.2);  color: #7C3AED; }
.sfc-icon-green  { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.2);  color: #059669; }
.sfc-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.sfc-tagline { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }
.psr-list { flex: 1; display: flex; flex-direction: column; }
.psr-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.psr-item:last-child { border: none; }
.psr-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.psr-dot-problem  { background: #FFF7F5; border: 1px solid rgba(255,98,16,.3); color: var(--accent); }
.psr-dot-solution { background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.2); color: #2563EB; }
.psr-dot-result   { background: #F0FDF4; border: 1px solid #BBF7D0; color: #059669; }
.psr-body { flex: 1; }
.psr-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 5px;
}
.psr-label-problem  { color: var(--accent); }
.psr-label-solution { color: #2563EB; }
.psr-label-result   { color: #059669; }
.psr-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }
.sfc-cta { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--surface); }

/* ── Process grid ────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.process-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-mid);
}
.process-card:hover { box-shadow: var(--shadow-md); }
.process-number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.04em;
}
.process-title { font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.process-desc  { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Contact layout ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.025em;
  margin-bottom: 6px;
}
.contact-form-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}
.contact-info-item:hover { background: var(--surface); }
.contact-info-item:last-child { border: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 1rem; font-weight: 600; color: var(--primary); }
.contact-info-value a { color: var(--accent); transition: color var(--t-fast); }
.contact-info-value a:hover { color: var(--accent-hover); }

.contact-socials { display: flex; flex-direction: column; gap: 8px; }
.contact-socials-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.contact-social-link:hover { border-color: var(--accent); color: var(--primary); background: var(--accent-light); }
.contact-social-link svg { flex-shrink: 0; }

.contact-quick-actions {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner { background: var(--primary); padding: var(--section-gap) 0; }
.cta-banner-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.cta-banner-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Post page ───────────────────────────────────────────────── */
.post-header {
  background: var(--surface);
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--border);
}
.post-header-inner { max-width: 760px; }
.post-cat-link {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  transition: color var(--t-fast);
}
.post-cat-link:hover { color: var(--accent-hover); }
.post-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  color: var(--text-muted);
}
.post-meta time { display: inline-flex; align-items: center; gap: 5px; }

.post-featured-img {
  width: 100%;
  border-radius: var(--r-lg);
  margin: 40px 0 32px;
  border: 1px solid var(--border);
}
.post-content-wrap { max-width: 760px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.post-video-wrap { margin: 32px 0; }
.post-video {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #000;
  display: block;
}
.post-content h2 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  margin: 40px 0 16px;
}
.post-content h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.015em;
  margin: 32px 0 14px;
}
.post-content p { margin-bottom: 22px; font-size: 1.025rem; line-height: 1.9; color: var(--text-secondary); }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 22px; }
.post-content li { margin-bottom: 8px; font-size: 1.025rem; line-height: 1.8; color: var(--text-secondary); }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 18px 24px;
  margin: 28px 0;
  background: var(--surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}
.post-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 22px;
  font-family: var(--ff-mono);
  font-size: .875rem;
  line-height: 1.7;
  color: var(--text-main);
}
.post-content code {
  font-family: var(--ff-mono);
  font-size: .85em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}
.post-content a { color: var(--accent); text-underline-offset: 3px; }
.post-content a:hover { text-decoration: underline; }
.post-content img { border-radius: var(--r-md); margin: 24px 0; width: 100%; border: 1px solid var(--border); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: 1rem; line-height: 1.8; max-width: 280px; margin-bottom: 24px; color: rgba(255,255,255,.6); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: background var(--t-fast), color var(--t-fast);
}
.social-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.social-link svg { width: 15px; height: 15px; }

.footer-col-title {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 1rem; color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; margin-top: 40px; }
.page-link {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.page-link:hover { border-color: var(--accent); color: var(--accent); }
.page-link.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-layout       { grid-template-columns: 1fr; }
  .hero-aside        { display: none; }
  .videos-grid       { grid-template-columns: repeat(2,1fr); }
  .enroll-inner      { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .programs-grid     { grid-template-columns: 1fr; }
  .services-full-grid{ grid-template-columns: 1fr; }
  .testimonials-wrap,
  .tgrid             { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: repeat(2,1fr); }
  .contact-layout    { grid-template-columns: 1fr; }
  .offer-strip       { grid-template-columns: 1fr; }
  .process-grid      { grid-template-columns: 1fr; }
  .blog-layout       { grid-template-columns: 1fr; }
  .blog-sidebar      { display: none; }
  .benefits-layout   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta  { display: none; }
  .nav-toggle            { display: flex; }
  .videos-grid           { grid-template-columns: 1fr; }
  .blog-grid,
  .blog-grid--2col       { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom         { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) {
  :root { --section-gap: 64px; }
  .hero h1    { font-size: 2.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-note  { gap: 12px; }
}
