:root {
  --bg: #08080b;
  --bg2: #0e0e14;
  --surface: #111117;
  --surface2: #18181f;
  --surface3: #1f1f28;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.1);
  --accent: #c8f542;
  --accent-dim: rgba(200,245,66,0.12);
  --accent-glow: rgba(200,245,66,0.25);
  --white: #ffffff;
  --text: #e8e8f0;
  --muted: #55556a;
  --muted2: #8888a8;
  --muted3: #aaaac0;
  --ps-color: #c8f542;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── LANG SWITCHER ─── */
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: rgba(200,245,66,0.06);
  border-bottom: 1px solid rgba(200,245,66,0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 48px;
  z-index: 200;
  gap: 4px;
}
.lang-btn {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted2);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--accent);
  color: #000;
}
.lang-btn:hover:not(.active) { color: var(--white); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(8,8,11,0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
  padding: 14px 48px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(200,245,66,0.2);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  border: none;
}
.btn-accent {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 28px var(--accent-glow);
}
.btn-accent:hover {
  background: #d4f855;
  box-shadow: 0 0 40px rgba(200,245,66,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--muted3);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-lg { padding: 14px 32px; font-size: 14px; border-radius: 10px; }
.btn-xl { padding: 16px 40px; font-size: 15px; border-radius: 12px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 180px 48px 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}
.hero-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(200,245,66,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: 0; left: -200px;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,245,66,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0.5) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
  color: transparent;
}
.hero-title .accent-word {
  color: var(--accent);
}

.hero-sub-row {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  margin-top: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted3);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}
.hero-desc strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats-row {
  display: flex;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both;
}
.hstat {
  flex: 1;
  padding: 28px 0;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
}
.hstat-label {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ─── PIXELSOUL METHODOLOGY ─── */
.ps-section {
  padding: 120px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.ps-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow-line {
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
}
.section-desc {
  font-size: 15px;
  color: var(--muted3);
  line-height: 1.75;
  font-weight: 300;
  max-width: 420px;
  align-self: end;
}

.ps-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.ps-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.3;
}
.ps-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
}
.ps-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.ps-step:hover .ps-step-num {
  background: var(--accent-dim);
  border-color: rgba(200,245,66,0.4);
  box-shadow: 0 0 30px var(--accent-glow);
}
.ps-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}
.ps-step-desc {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.65;
}
.ps-badge {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,245,66,0.2);
}
.ps-badge-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--accent);
}
.ps-badge-text {
  font-size: 12px;
  color: var(--muted3);
  line-height: 1.5;
}
.ps-badge-text strong { color: var(--white); }

/* ─── SERVICES ─── */
.services-section {
  padding: 0 48px 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.services-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.s-card {
  border-radius: 20px;
  padding: 48px 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.s-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.s-card-single {
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
}
.s-card-single:hover { border-color: rgba(200,245,66,0.3); }

.s-card-monthly {
  background: linear-gradient(135deg, rgba(200,245,66,0.07) 0%, var(--surface) 70%);
  border-color: rgba(200,245,66,0.25);
  box-shadow: 0 0 60px rgba(200,245,66,0.07);
}
.s-card-monthly:hover {
  border-color: rgba(200,245,66,0.5);
  box-shadow: 0 20px 80px rgba(200,245,66,0.12);
}

.s-card-platform {
  opacity: 0.5;
  filter: saturate(0.4);
  transition: opacity 0.4s, filter 0.4s, transform 0.3s;
  cursor: default;
  position: relative;
}
.s-card-platform:hover {
  opacity: 0.65;
  filter: saturate(0.6);
  transform: none;
}

.s-card-training:hover { border-color: rgba(200,245,66,0.25); }

.s-card-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-card-eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.s-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.s-card-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
  flex: 1;
}
.s-card-price {
  margin-bottom: 28px;
}
.s-card-price .from {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.s-card-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}
.s-card-price .period {
  font-size: 13px;
  color: var(--muted);
  margin-left: 6px;
}

.s-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
}
.s-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted3);
}
.s-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 4px;
  background: rgba(200,245,66,0.08);
  border: 1px solid rgba(200,245,66,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23c8f542' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.coming-soon-tag {
  position: absolute;
  top: 20px; right: 20px;
  padding: 5px 14px;
  border-radius: 6px;
  background: var(--surface3);
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.s-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* ─── RESULTS ─── */
.results-section {
  padding: 0 0 120px;
  overflow: hidden;
}
.results-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  margin-bottom: 60px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.r-cell {
  padding: 48px 36px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.r-cell:hover { background: var(--surface); }
.r-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.r-label {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

/* ─── VIDEO STRIP ─── */
.vstrip {
  display: flex;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  padding: 8px 0;
}
.vtrack {
  display: flex;
  gap: 14px;
  animation: vscroll 28s linear infinite;
  flex-shrink: 0;
}
@keyframes vscroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.vcard {
  flex-shrink: 0;
  width: 160px; height: 280px;
  border-radius: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.vcard-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -70%);
  font-size: 44px;
  opacity: 0.6;
}
.vcard-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.vcard-label {
  font-size: 11px;
  color: var(--muted3);
}

/* ─── PLATFORM TEASER ─── */
.platform-section {
  padding: 120px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.platform-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 80px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0.6;
  filter: saturate(0.5);
  transition: opacity 0.5s, filter 0.5s;
}
.platform-card:hover {
  opacity: 0.75;
  filter: saturate(0.7);
}
.platform-card::before {
  content: 'СКОРО / COMING SOON';
  position: absolute;
  top: 24px; right: 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted2);
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 6px 14px;
  border-radius: 6px;
}
.platform-mockup {
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border2);
  overflow: hidden;
}
.pm-bar-top {
  background: var(--surface2);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.pm-dot { width: 8px; height: 8px; border-radius: 50%; }
.pm-content { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.pm-row { display: flex; gap: 8px; align-items: center; }
.pm-ava {
  width: 36px; height: 52px;
  border-radius: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pm-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--muted2);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.4;
}
.pm-gen-btn {
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  padding: 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
}
.pm-progress {
  height: 4px;
  border-radius: 2px;
  background: var(--surface2);
  overflow: hidden;
}
.pm-progress-fill {
  height: 100%;
  width: 65%;
  background: var(--accent);
  border-radius: 2px;
}
.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.pf-tag {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  font-size: 11px;
  color: var(--muted2);
}

/* ─── TESTIMONIALS ─── */
.testi-section {
  padding: 0 48px 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.tcard {
  border-radius: 16px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.tcard:hover {
  border-color: rgba(200,245,66,0.15);
  transform: translateY(-2px);
}
.tcard-stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; }
.tcard-text {
  font-size: 13px;
  color: var(--muted3);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.tcard-name { font-size: 13px; font-weight: 600; color: var(--white); }
.tcard-role { font-size: 11px; color: var(--muted); }

/* ─── SOCIALS ─── */
.socials-section {
  padding: 0 48px 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.socials-card {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.slink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s;
}
.slink:hover {
  border-color: rgba(200,245,66,0.3);
  background: var(--surface3);
  transform: translateY(-1px);
}
.slink-icon { font-size: 22px; flex-shrink: 0; }
.slink-name { font-size: 13px; font-weight: 600; color: var(--white); }
.slink-handle { font-size: 11px; color: var(--muted); }

/* ─── CTA ─── */
.cta-section {
  padding: 0 48px 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.cta-card {
  border-radius: 24px;
  background: var(--accent);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.2) 0%, transparent 65%);
}
.cta-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
}
.cta-card p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
  font-weight: 300;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.btn-cta-dark {
  background: #000;
  color: var(--accent);
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.btn-cta-dark:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.btn-cta-ghost {
  background: rgba(0,0,0,0.12);
  color: #000;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-cta-ghost:hover { background: rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 48px 36px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
}
.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11px; color: var(--muted); }
.ps-footer-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  opacity: 0.6;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero { padding: 160px 24px 80px; }
  .hero-sub-row { flex-direction: column; gap: 0; }
  .hero-stats-row { flex-wrap: wrap; }
  .hstat { min-width: 50%; }
  .ps-section { padding: 80px 24px; }
  .ps-header { grid-template-columns: 1fr; gap: 24px; }
  .ps-steps { grid-template-columns: 1fr 1fr; }
  .services-section { padding: 0 24px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .platform-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .socials-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .social-links { grid-template-columns: 1fr; }
  .cta-card { padding: 60px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lang-bar { padding: 0 20px; }
}
