/*
Theme Name: Compus
Theme URI: https://compus.com.tr
Author: Compus
Author URI: https://compus.com.tr
Description: Geleceğin meslekleri, yapay zeka ve mühendislik eğitimleri veren eğitim ve danışmanlık firmaları için tasarlanmış, aydınlık neon temalı, çok sayfalı ve hızlı bir WordPress teması. Anasayfa, Programlar, Hakkımızda ve İletişim sayfaları tek tıkla kurulur; her başlık, paragraf, ikon, kutu, buton ve istatistik Elementor ile düzenlenebilir. Site başlığı/menüsü ve renkler ayrıca Customizer'dan yönetilir.
Version: 1.5.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: compus
Tags: education, neon, gradient, business, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready, blog
*/

/* =====================================================================
   COMPUS — Design Tokens
   Light-neon system: airy light surfaces, deep-navy ink for legibility,
   neon used only as gradient accents + halos that glow on interaction.
   ===================================================================== */
:root {
  /* Surfaces */
  --bg:          #FAFAFF;
  --bg-alt:      #F1F0FF;
  --surface:     #FFFFFF;
  --surface-2:   #F7F7FE;

  /* Ink */
  --ink:         #0B0E2C;
  --ink-soft:    #565A85;
  --ink-faint:   #9094B8;
  --line:        rgba(11, 14, 44, 0.08);
  --line-strong: rgba(11, 14, 44, 0.14);

  /* Neon accents */
  --neon-cyan:   #00D9E9;
  --neon-blue:   #4F7BF7;
  --neon-violet: #8B5CF6;
  --neon-purple: #A855F7;
  --neon-pink:   #EE2FB8;
  --neon-green:  #1FE0A0;

  /* Gradients */
  --grad-main:   linear-gradient(120deg, #00D9E9 0%, #8B5CF6 52%, #EE2FB8 100%);
  --grad-cool:   linear-gradient(135deg, #00D9E9 0%, #4F7BF7 100%);
  --grad-warm:   linear-gradient(135deg, #8B5CF6 0%, #EE2FB8 100%);
  --grad-soft:   linear-gradient(135deg, rgba(0,217,233,0.12) 0%, rgba(139,92,246,0.12) 50%, rgba(238,47,184,0.12) 100%);

  /* Halos (the signature glow) */
  --halo-cyan:   0 0 0 1px rgba(0,217,233,0.20), 0 14px 50px -14px rgba(0,217,233,0.45);
  --halo-violet: 0 0 0 1px rgba(139,92,246,0.22), 0 14px 50px -14px rgba(139,92,246,0.50);
  --halo-pink:   0 0 0 1px rgba(238,47,184,0.22), 0 14px 50px -14px rgba(238,47,184,0.48);

  /* Shadows */
  --shadow-sm:   0 2px 8px -2px rgba(11,14,44,0.10);
  --shadow-md:   0 12px 40px -12px rgba(11,14,44,0.16);
  --shadow-lg:   0 30px 70px -24px rgba(11,14,44,0.22);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono:    "Space Mono", "SFMono-Regular", ui-monospace, monospace;

  /* Layout */
  --container:   1200px;
  --container-narrow: 760px;
  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   28px;
  --gutter:      clamp(20px, 5vw, 40px);
}

/* =====================================================================
   Reset & base
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ambient light-neon backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(50% 40% at 12% 8%,  rgba(0,217,233,0.18), transparent 70%),
    radial-gradient(45% 38% at 92% 6%,  rgba(139,92,246,0.18), transparent 70%),
    radial-gradient(55% 45% at 78% 96%, rgba(238,47,184,0.14), transparent 70%);
  pointer-events: none;
}
/* Faint tech grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 85%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 85%);
  opacity: 0.5;
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--neon-violet); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--neon-pink); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }

::selection { background: rgba(139,92,246,0.22); }

:focus-visible {
  outline: 3px solid var(--neon-violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================================
   Layout helpers
   ===================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-cool);
  border-radius: 2px;
}

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow { gap: 0; }
.section-title { font-size: clamp(28px, 4vw, 46px); }
.section-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-soft); margin-bottom: 0; }

.grad-text {
  background: var(--grad-main);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  --btn-bg: var(--grad-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background-color .2s ease, color .2s ease;
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  color: #fff;
  background: var(--btn-bg);
  background-size: 180% 180%;
  box-shadow: var(--halo-violet);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow: 0 0 0 1px rgba(139,92,246,0.3), 0 22px 60px -16px rgba(139,92,246,0.7), 0 0 30px -6px rgba(238,47,184,0.5);
}

.btn--ghost {
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px var(--line-strong), var(--shadow-sm);
}
.btn--ghost:hover {
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1.5px transparent, var(--halo-cyan);
}

.btn--light { background: rgba(255,255,255,0.16); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4); }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { display: flex; width: 100%; }

/* =====================================================================
   Header / Navigation
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-stuck {
  background: rgba(250,250,255,0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(11,14,44,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; }
.brand img { max-height: 42px; width: auto; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--grad-main);
  background-size: 180% 180%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: var(--halo-violet);
  animation: gradShift 8s ease infinite;
  flex: none;
}
.brand-name { font-size: 21px; letter-spacing: -0.02em; color: var(--ink); }
.brand-name span { color: var(--neon-violet); }

/* Primary menu */
.nav-primary { display: flex; align-items: center; }
.nav-primary ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.nav-primary li { position: relative; }
.nav-primary a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-primary a:hover,
.nav-primary .current-menu-item > a,
.nav-primary .current_page_item > a {
  color: var(--neon-violet);
  background: rgba(139,92,246,0.10);
}
/* dropdowns */
.nav-primary .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  background: var(--surface);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.nav-primary li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-primary .sub-menu a { font-size: 14.5px; }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; padding-block: clamp(70px, 11vw, 150px); overflow: hidden; }
.hero-orbs { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}
.orb--1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--neon-cyan), transparent 70%); top: -80px; left: -60px; }
.orb--2 { width: 480px; height: 480px; background: radial-gradient(circle, var(--neon-violet), transparent 70%); top: -40px; right: -80px; animation-delay: -4s; }
.orb--3 { width: 360px; height: 360px; background: radial-gradient(circle, var(--neon-pink), transparent 70%); bottom: -120px; left: 40%; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -24px) scale(1.06); }
  66%      { transform: translate(-22px, 18px) scale(0.96); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon-green); box-shadow: 0 0 0 4px rgba(31,224,160,0.2); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(31,224,160,0.35);} 50%{ box-shadow: 0 0 0 6px rgba(31,224,160,0);} }

.hero-title { font-size: clamp(38px, 6.2vw, 76px); line-height: 1.04; margin-bottom: 24px; }
.hero-lead { font-size: clamp(17px, 1.9vw, 21px); color: var(--ink-soft); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); }
.hero-stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); line-height: 1; }
.hero-stat .num .grad-text { display: inline-block; }
.hero-stat .label { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }

/* Hero visual card stack */
.hero-visual { position: relative; }
.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-main);
  background-size: 200% 100%;
  animation: gradShift 6s linear infinite;
}
.hero-card-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.hero-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-row:first-of-type { padding-top: 4px; }
.hci {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 20px;
}
.hci--c { background: var(--grad-cool); box-shadow: var(--halo-cyan); }
.hci--v { background: var(--grad-warm); box-shadow: var(--halo-violet); }
.hci--p { background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple)); box-shadow: var(--halo-pink); }
.hero-card-row strong { display: block; font-family: var(--font-display); font-size: 16px; }
.hero-card-row small { color: var(--ink-soft); font-size: 13.5px; }
.hero-card-tag { margin-left: auto; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--neon-green); }

.hero-float {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  animation: float 9s ease-in-out infinite;
}
.hero-float--tl { top: -22px; left: -28px; }
.hero-float--br { bottom: -24px; right: -22px; animation-delay: -3s; }
.hero-float .fdot { width: 34px; height: 34px; border-radius: 9px; background: var(--grad-cool); color: #fff; display: grid; place-items: center; font-size: 16px; }
.hero-float--br .fdot { background: var(--grad-warm); }

/* =====================================================================
   Logo / trust strip
   ===================================================================== */
.trust { padding-block: 34px; border-block: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: flex; align-items: center; gap: clamp(18px, 4vw, 50px); flex-wrap: wrap; justify-content: center; }
.trust-label { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.trust-item { font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 2vw, 22px); color: var(--ink-faint); transition: color .2s ease; opacity: .85; }
.trust-item:hover { color: var(--neon-violet); opacity: 1; }

/* =====================================================================
   Services / cards grid
   ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--halo-violet); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card:nth-child(1):hover { box-shadow: var(--halo-cyan); }
.card:nth-child(3):hover { box-shadow: var(--halo-pink); }

.card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 27px;
  color: #fff;
  margin-bottom: 22px;
  background: var(--grad-cool);
  box-shadow: var(--halo-cyan);
}
.card:nth-child(2) .card-icon { background: var(--grad-warm); box-shadow: var(--halo-violet); }
.card:nth-child(3) .card-icon { background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple)); box-shadow: var(--halo-pink); }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 20px; }
.card-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.card-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.card:hover .card-link { color: var(--neon-violet); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-meta { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; }
.card-meta li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.card-meta svg { width: 17px; height: 17px; color: var(--neon-green); flex: none; }

/* =====================================================================
   Feature split (Why us)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 8px; }
.feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateX(6px); box-shadow: var(--halo-cyan); }
.feature-ico {
  width: 50px; height: 50px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  font-size: 22px; color: #fff;
  background: var(--grad-main);
  background-size: 180% 180%;
  box-shadow: var(--halo-violet);
}
.feature h4 { font-size: 18px; margin-bottom: 5px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--grad-soft);
  aspect-ratio: 4 / 5;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.is-placeholder { display: grid; place-items: center; }
.media-frame .ph-glyph { font-size: 90px; color: rgba(139,92,246,0.4); }
.media-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.media-badge .mb-num { font-family: var(--font-display); font-weight: 700; font-size: 30px; }
.media-badge .mb-txt { font-size: 14px; color: var(--ink-soft); line-height: 1.4; }

/* =====================================================================
   Stats band
   ===================================================================== */
.stats-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); background: var(--ink); color: #fff; }
.stats-band::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(40% 60% at 8% 10%, rgba(0,217,233,0.35), transparent 70%),
    radial-gradient(40% 60% at 92% 90%, rgba(238,47,184,0.35), transparent 70%),
    radial-gradient(50% 70% at 50% 50%, rgba(139,92,246,0.25), transparent 70%);
}
.stats-band .stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 56px); line-height: 1; background: linear-gradient(120deg,#fff,#d9c8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: rgba(255,255,255,0.72); font-size: 14.5px; margin-top: 10px; }
.stat-divider { display: none; }

/* =====================================================================
   Programs list
   ===================================================================== */
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.program {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.program:hover { transform: translateY(-4px); box-shadow: var(--halo-violet); border-color: transparent; }
.program-tag { font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: #fff; background: var(--grad-main); background-size: 150%; padding: 9px 13px; border-radius: 10px; flex: none; }
.program-body h4 { font-size: 17.5px; margin-bottom: 3px; }
.program-body p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.program-meta { margin-left: auto; text-align: right; flex: none; }
.program-meta .lvl { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--neon-violet); display: block; }
.program-meta .dur { font-size: 13px; color: var(--ink-soft); }

/* =====================================================================
   Steps / process
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step-num { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: #fff; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-main); background-size: 160%; box-shadow: var(--halo-violet); margin-bottom: 18px; }
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.step::after {
  content: "";
  position: absolute;
  top: 36px; left: 56px; right: -10px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote .mark { font-family: var(--font-display); font-size: 64px; line-height: .6; color: rgba(139,92,246,0.18); margin-bottom: 6px; display: block; }
.quote p { font-size: 17px; color: var(--ink); margin-bottom: 22px; }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-cool); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; box-shadow: var(--halo-cyan); }
.quote:nth-child(2) .quote-avatar { background: var(--grad-warm); box-shadow: var(--halo-violet); }
.quote-author strong { display: block; font-family: var(--font-display); font-size: 15.5px; }
.quote-author small { color: var(--ink-soft); font-size: 13.5px; }

/* =====================================================================
   CTA banner
   ===================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 80px);
  background: var(--grad-main);
  background-size: 200% 200%;
  animation: gradShift 10s ease infinite;
  text-align: center;
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 10% 0%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(50% 80% at 90% 100%, rgba(255,255,255,0.18), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4.5vw, 48px); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: clamp(16px, 1.8vw, 20px); max-width: 560px; margin-inline: auto; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--halo-cyan); }
.contact-card .cc-ico { width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center; color: #fff; font-size: 21px; background: var(--grad-cool); box-shadow: var(--halo-cyan); }
.contact-card:nth-child(2) .cc-ico { background: var(--grad-warm); box-shadow: var(--halo-violet); }
.contact-card:nth-child(3) .cc-ico { background: linear-gradient(135deg,var(--neon-pink),var(--neon-purple)); box-shadow: var(--halo-pink); }
.contact-card small { display: block; color: var(--ink-faint); font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-card strong { font-family: var(--font-display); font-size: 17px; color: var(--ink); }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--neon-violet); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 14px; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--neon-violet);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 14px; }

/* =====================================================================
   Blog / posts
   ===================================================================== */
.page-hero { padding-block: clamp(60px, 9vw, 110px); text-align: center; position: relative; }
.page-hero .page-title { font-size: clamp(34px, 5vw, 60px); margin-bottom: 16px; }
.page-hero p { color: var(--ink-soft); font-size: 18px; max-width: 620px; margin-inline: auto; }
.breadcrumb { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-soft); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--halo-violet); }
.post-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--grad-soft); display: grid; place-items: center; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb .ph-glyph { font-size: 54px; color: rgba(139,92,246,0.35); }
.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--neon-violet); margin-bottom: 12px; }
.post-card h3 { font-size: 20px; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--neon-violet); }
.post-excerpt { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; flex: 1; }
.post-foot { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-faint); padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }

/* Single post */
.single-wrap { max-width: 780px; margin-inline: auto; }
.entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; }
.entry-meta .pill { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: #fff; background: var(--grad-main); padding: 6px 12px; border-radius: 999px; }
.entry-content { font-size: 18px; line-height: 1.8; }
.entry-content > * { margin-bottom: 1.2em; }
.entry-content h2 { font-size: 30px; margin-top: 1.6em; }
.entry-content h3 { font-size: 24px; margin-top: 1.4em; }
.entry-content img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.entry-content blockquote {
  border-left: 4px solid var(--neon-violet);
  background: var(--surface);
  margin: 1.6em 0;
  padding: 20px 26px;
  border-radius: 0 14px 14px 0;
  font-size: 19px;
  box-shadow: var(--shadow-sm);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content code { font-family: var(--font-mono); background: var(--bg-alt); padding: 2px 7px; border-radius: 6px; font-size: 0.9em; }
.entry-content pre { background: var(--ink); color: #e7e2ff; padding: 22px; border-radius: 14px; overflow-x: auto; }
.entry-content pre code { background: none; padding: 0; color: inherit; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li { margin-bottom: .5em; }

.featured-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow-lg); }

/* Tags + share */
.entry-footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.tag-list a:hover { color: var(--neon-violet); box-shadow: var(--halo-cyan); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: clamp(40px, 6vw, 64px); flex-wrap: wrap; }
.pagination .page-numbers {
  min-width: 46px; height: 46px;
  display: grid; place-items: center;
  padding: 0 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all .2s ease;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { color: #fff; background: var(--grad-main); border-color: transparent; box-shadow: var(--halo-violet); }

/* Sidebar / widgets */
.widget { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.widget-title { font-size: 18px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--line); position: relative; }
.widget-title::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: var(--grad-main); }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 9px 0; border-bottom: 1px dashed var(--line); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--ink); }
.widget ul li a:hover { color: var(--neon-violet); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(56px, 8vw, 90px); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 380px;
  background: radial-gradient(50% 100% at 20% 0%, rgba(139,92,246,0.25), transparent 70%),
              radial-gradient(50% 100% at 85% 0%, rgba(0,217,233,0.2), transparent 70%);
  pointer-events: none;
}
.footer-top { position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 320px; margin-top: 18px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; transition: all .25s ease; }
.footer-social a:hover { background: var(--grad-main); border-color: transparent; transform: translateY(-3px); box-shadow: var(--halo-violet); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h5 { color: #fff; font-size: 15px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.66); font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { position: relative; border-top: 1px solid rgba(255,255,255,0.1); padding-block: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; font-size: 13.5px; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* Footer newsletter */
.footer-news { display: flex; gap: 8px; margin-top: 16px; max-width: 320px; }
.footer-news input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #fff; border-radius: 11px; padding: 12px 14px; font-size: 14px; }
.footer-news input::placeholder { color: rgba(255,255,255,0.45); }
.footer-news input:focus { outline: none; border-color: var(--neon-violet); }
.footer-news button { padding: 12px 16px; border-radius: 11px; }

/* =====================================================================
   Utility / WP core
   ===================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 999; }
.skip-link:focus { left: 0; color: #fff; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
.alignleft { float: left; margin: 0 24px 18px 0; }
.alignright { float: right; margin: 0 0 18px 24px; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption-text { font-size: 13px; color: var(--ink-faint); text-align: center; margin-top: 8px; }

/* =====================================================================
   Reveal-on-scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}

@media (max-width: 920px) {
  .nav-primary, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { gap: 0; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-float--tl { left: 0; }
  .hero-float--br { right: 0; }

  .split { grid-template-columns: 1fr; }
  .media-frame { order: -1; max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }

  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .quote-grid, .program-grid, .post-grid { grid-template-columns: 1fr; }

  /* Mobile nav panel */
  .nav-primary.is-open {
    display: block;
    position: absolute;
    top: 78px; left: var(--gutter); right: var(--gutter);
    background: var(--surface);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }
  .nav-primary.is-open ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-primary.is-open a { padding: 13px 16px; font-size: 16px; }
  .nav-primary.is-open .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; }
  .nav-primary.is-open .menu-mobile-cta { margin-top: 8px; }
  .nav-primary.is-open .menu-mobile-cta a { background: var(--grad-main); color: #fff; text-align: center; border-radius: 999px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .stats-band .stats-grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .hero-float { display: none; }
  .entry-footer { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .orb, .hero-float { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
