/* ═══════════════════════════════════════════════════════════
   حسن الحلبي — Futuristic Light · v3
   Editorial · Light mode · Insane animations · Portrait module
   ═══════════════════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}

:root{
  /* Light palette */
  --bg: #F4F2EE;
  --bg-2: #EDEAE3;
  --surface: #FFFFFF;
  --surface-2: #FBFAF7;
  --ink: #0B0B14;
  --ink-2: #1C1C28;
  --muted: #6B6B7B;
  --muted-2: #9999A8;
  --border: rgba(11,11,20,0.08);
  --border-strong: rgba(11,11,20,0.18);
  --hairline: rgba(11,11,20,0.06);

  /* Accents */
  --orange: #FF5B22;
  --pink: #E91E63;
  --violet: #7C3AED;
  --cyan: #0EA5C7;
  --green: #0F9F6E;
  --gold: #C99A4B;
  --gold-2: #A47832;
  --wa: #25D366;
  --wa-2: #128C7E;

  /* Signature gradient */
  --grad: linear-gradient(120deg, #FF5B22 0%, #E91E63 50%, #7C3AED 100%);
  --grad-soft: linear-gradient(120deg, rgba(255,91,34,.12) 0%, rgba(233,30,99,.12) 50%, rgba(124,58,237,.12) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11,11,20,.05);
  --shadow: 0 8px 24px -8px rgba(11,11,20,.12), 0 2px 6px rgba(11,11,20,.06);
  --shadow-lg: 0 28px 60px -24px rgba(11,11,20,.18), 0 8px 24px -12px rgba(11,11,20,.08);
  --shadow-xl: 0 40px 100px -30px rgba(11,11,20,.30), 0 14px 40px -18px rgba(11,11,20,.14);

  /* Type */
  --font-sans: 'IBM Plex Sans Arabic', 'Inter', 'Tahoma', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none), (pointer: coarse){
  body{ cursor: auto; }
  .cursor-spotlight, .cursor-dot{ display:none !important; }
}

::selection{ background: var(--ink); color: var(--bg); }

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
img,svg{ display: block; max-width: 100%; }
ul{ margin:0; padding:0; list-style: none; }

.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   PAGE-ENTER LOADER
   ═══════════════════════════════════════════════════════════ */
.page-enter{
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
  animation: pageEnter 1.2s var(--ease) forwards;
}
.page-enter-bar{
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad);
  transform-origin: right center;
  animation: pageBar 1.0s var(--ease) forwards;
}
@keyframes pageEnter {
  0%   { transform: translateY(0); }
  70%  { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@keyframes pageBar {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ═══════════════════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════════════════ */
.cursor-spotlight{
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,34,.18) 0%, rgba(124,58,237,.10) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: multiply;
  transition: opacity .3s ease;
  will-change: transform;
}
.cursor-dot{
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .25s;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot.is-hover{
  width: 44px; height: 44px;
  background: var(--bg);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════════════════════ */
.scroll-progress{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform-origin: right center;
  transform: scaleX(0);
  z-index: 9998;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════
   MESH BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.mesh-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mesh-bg .blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.blob-1{
  width: 520px; height: 520px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, #FFB199 0%, rgba(255,177,153,0) 70%);
  animation: blobFloat 22s var(--ease) infinite alternate;
}
.blob-2{
  width: 600px; height: 600px;
  top: 30%; left: -200px;
  background: radial-gradient(circle, #D9B3FF 0%, rgba(217,179,255,0) 70%);
  animation: blobFloat 28s var(--ease) infinite alternate-reverse;
}
.blob-3{
  width: 480px; height: 480px;
  bottom: -160px; right: 25%;
  background: radial-gradient(circle, #FFD6A5 0%, rgba(255,214,165,0) 70%);
  animation: blobFloat 32s var(--ease) infinite alternate;
}
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(80px, -60px) scale(1.1); }
  100% { transform: translate(-50px, 90px) scale(.95); }
}
.grain{
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .55;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING NAV
   ═══════════════════════════════════════════════════════════ */
.floating-nav{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 8px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 1000;
  max-width: calc(100vw - 24px);
  animation: navEnter 1s var(--ease) .8s both;
}
@keyframes navEnter {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.fn-brand{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.fn-logo{
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
}
.fn-logo-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fn-name{ white-space: nowrap; }
.fn-links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.fn-links a{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.fn-links a:hover{ background: rgba(11,11,20,.06); }
.fn-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .2s;
}
.fn-cta:hover{ transform: scale(1.04); background: #000; }

@media (max-width: 760px){
  .fn-name{ display: none; }
  .fn-links{ display: none; }
  .floating-nav{ padding: 6px 8px; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════
   PORTRAIT MODULE — Hasan's creative hero
   ═══════════════════════════════════════════════════════════ */
.portrait-module{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.portrait-ring{
  position: relative;
  width: clamp(220px, 32vw, 320px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-ring::before,
.portrait-ring::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.portrait-ring::before{
  background: conic-gradient(from 0deg, #FF5B22, #E91E63, #7C3AED, #0EA5C7, #FF5B22);
  filter: blur(28px);
  opacity: .55;
  animation: ringRotate 14s linear infinite;
  transform: scale(1.04);
}
.portrait-ring::after{
  border: 1.5px dashed var(--border-strong);
  inset: -18px;
  animation: ringRotate 60s linear infinite reverse;
}
@keyframes ringRotate {
  to { transform: rotate(360deg) scale(1.04); }
}

.portrait-photo{
  position: relative;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 28px 60px -16px rgba(11,11,20,.30),
    0 8px 24px -10px rgba(11,11,20,.18),
    inset 0 0 0 4px rgba(255,255,255,.85);
  transition: transform .6s var(--ease);
  z-index: 2;
}
.portrait-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(1.02);
  transition: transform .8s var(--ease), filter .5s;
  transform: scale(1.02);
}
.portrait-photo:hover img{
  transform: scale(1.08);
  filter: contrast(1.06) saturate(1.08);
}
.portrait-flare{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,0) 32%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Floating orbiting platform chips */
.portrait-orbit{
  position: absolute;
  inset: 0;
  animation: orbitSpin 22s linear infinite;
  z-index: 3;
  pointer-events: none;
}
.orbit-chip{
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--ink-2);
}
.orbit-chip:nth-child(1){ top: -6px;    left: 50%; transform: translateX(-50%); color: #E1306C; }
.orbit-chip:nth-child(2){ right: -6px;  top: 50%;  transform: translateY(-50%); color: #1877F2; }
.orbit-chip:nth-child(3){ bottom: -6px; left: 50%; transform: translateX(-50%); color: #FF0000; }
.orbit-chip:nth-child(4){ left: -6px;   top: 50%;  transform: translateY(-50%); color: var(--wa); }
.orbit-chip svg{ animation: orbitCounter 22s linear infinite; }
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
@keyframes orbitCounter {
  to { transform: rotate(-360deg); }
}

/* Portrait sparks */
.portrait-spark{
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255,91,34,.7);
  z-index: 1;
  opacity: 0;
}
.portrait-spark-1{ top: 8%;  right: 14%; background: var(--orange); animation: sparkFloat 5s ease-in-out infinite; }
.portrait-spark-2{ bottom: 18%; left: 6%; background: var(--violet); box-shadow: 0 0 16px rgba(124,58,237,.7); animation: sparkFloat 7s ease-in-out infinite 1s; }
.portrait-spark-3{ top: 24%; left: 0;   width: 6px; height: 6px; background: var(--pink); box-shadow: 0 0 12px rgba(233,30,99,.7); animation: sparkFloat 6s ease-in-out infinite .5s; }
.portrait-spark-4{ bottom: 4%; right: 22%; width: 14px; height: 14px; background: var(--cyan); box-shadow: 0 0 18px rgba(14,165,199,.7); animation: sparkFloat 8s ease-in-out infinite 1.5s; }

@media (max-width: 540px){
  .portrait-module{ margin-bottom: 28px; }
  .orbit-chip{ width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO + SITES SECTION
   ═══════════════════════════════════════════════════════════ */
.hero-sites{
  padding: 140px 0 80px;
  position: relative;
}
.hero-portrait{ padding-top: 130px; }

.hero-head{
  max-width: 980px;
  margin: 0 auto 64px;
  text-align: center;
}
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.kicker-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,91,34,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,91,34,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255,91,34,.06); }
}

.display-title{
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--ink);
}
.dt-line{
  display: block;
}
.dt-serif{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dt-serif em{ font-style: italic; }

/* Split-text reveal */
.split-word{
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-inner{
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}
.is-revealed .split-inner{ transform: translateY(0); }

.display-sub{
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Reveal animation */
[data-reveal]{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-revealed{
  opacity: 1;
  transform: translateY(0);
}

/* ─── SITES GRID ─── */
.sites-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 880px){
  .sites-grid{ grid-template-columns: 1fr; gap: 20px; }
}

.site-card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .5s var(--ease), border-color .3s, transform .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.site-card:hover{
  box-shadow: var(--shadow-xl);
  border-color: var(--border-strong);
}

.sc-visual{
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.site-card-reelaty .sc-visual{
  background: linear-gradient(135deg, #FFE6DA 0%, #FFD6E8 50%, #E6D5FF 100%);
}
.site-card-vidko .sc-visual{
  background: linear-gradient(135deg, #FFEFE0 0%, #FFD7B5 50%, #FFC299 100%);
}

/* Reelaty phone preview */
.sc-phone{
  position: relative;
  width: 140px;
  height: 240px;
  background: var(--ink);
  border-radius: 24px;
  padding: 6px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.05);
  transform: rotate(-6deg) translateY(10px);
  transition: transform .5s var(--ease);
}
.site-card-reelaty:hover .sc-phone{ transform: rotate(-3deg) translateY(0) scale(1.04); }
.sc-phone-screen{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #FF5B22 0%, #E91E63 50%, #7C3AED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-phone-wave{
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  transform: translate(-50%, -50%);
  animation: phoneWave 2.4s ease-out infinite;
}
.sc-phone-wave.wave-2{ animation-delay: .8s; }
.sc-phone-wave.wave-3{ animation-delay: 1.6s; }
@keyframes phoneWave {
  0%   { width: 8px; height: 8px; opacity: 0.8; }
  100% { width: 220px; height: 220px; opacity: 0; }
}
.sc-play{
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

/* Vidko preview */
.sc-yt{
  position: relative;
  width: 220px;
  height: 130px;
  background: var(--ink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 50px -12px rgba(0,0,0,.4);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.site-card-vidko:hover .sc-yt{ transform: scale(1.06); }
.sc-yt-bar{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255,255,255,.18);
  width: 100%;
}
.sc-yt-bar.bar-2{
  height: 4px;
  background: var(--orange);
  width: 65%;
  animation: ytProgress 4s linear infinite;
}
.sc-yt-bar.bar-3{
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  bottom: -2px;
  left: 65%;
  animation: ytProgressDot 4s linear infinite;
}
@keyframes ytProgress {
  0%   { width: 0; }
  100% { width: 100%; }
}
@keyframes ytProgressDot {
  0%   { left: 0; }
  100% { left: 100%; }
}
.sc-yt-icon{
  filter: drop-shadow(0 4px 12px rgba(255,91,34,.5));
}

/* Sparks (floating particles) */
.sc-spark{
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: .9;
  box-shadow: 0 0 16px rgba(255,255,255,.8);
}
.sc-spark-1{ top: 18%; left: 14%; animation: sparkFloat 6s ease-in-out infinite; }
.sc-spark-2{ top: 70%; right: 16%; width: 8px; height: 8px; animation: sparkFloat 8s ease-in-out infinite reverse; }
.sc-spark-3{ top: 28%; right: 22%; width: 6px; height: 6px; animation: sparkFloat 7s ease-in-out infinite; animation-delay: 1s; }
@keyframes sparkFloat {
  0%, 100% { transform: translate(0,0); opacity: .9; }
  50%      { transform: translate(20px, -16px); opacity: .4; }
}

.sc-content{
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.sc-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sc-badge{
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
}
.sc-badge-2{
  background: linear-gradient(120deg, #FF5B22 0%, #FFAB1E 100%);
}
.sc-domain{
  font-family: 'Inter', monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  direction: ltr;
}
.sc-title{
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.sc-desc{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.sc-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
}
.sc-cta-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  transition: transform .4s var(--ease), background .3s;
}
.site-card:hover .sc-cta-arrow{
  background: var(--orange);
  transform: translateX(-6px) rotate(-12deg);
}

/* ─── MARQUEE ─── */
.marquee{
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  margin: 40px 0 0;
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-2);
  animation: marquee 28s linear infinite;
}
.marquee-track > span{ flex-shrink: 0; }
.m-dot{
  color: var(--orange);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION (paid / free / services)
   ═══════════════════════════════════════════════════════════ */
.section{
  padding: 100px 0;
  position: relative;
}
.section-head{
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-num{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted-2);
  display: block;
  margin-bottom: 8px;
}
.section-eyebrow{
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-eyebrow-green{ color: var(--green); border-color: rgba(15,159,110,.3); background: rgba(15,159,110,.06); }
.section-eyebrow-violet{ color: var(--violet); border-color: rgba(124,58,237,.3); background: rgba(124,58,237,.06); }

.section-title{
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-title em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub{
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── PAID COURSES ─── */
.courses-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .courses-grid{ grid-template-columns: 1fr; } }

.pc{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.pc:hover{
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.pc-glow{
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,34,.16) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.pc:hover .pc-glow{ opacity: 1; }
.pc-featured{
  background: linear-gradient(180deg, #fff 0%, #FFF8F1 100%);
  border-color: rgba(201,154,75,.4);
}
.pc-glow-featured{
  background: radial-gradient(circle, rgba(201,154,75,.22) 0%, transparent 70%);
  opacity: .6;
}

.pc-top{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pc-tag{
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--ink);
  color: var(--bg);
  letter-spacing: .03em;
}
.pc-tag-gold{
  background: linear-gradient(120deg, #C99A4B 0%, #E8B968 100%);
  color: #2A1B05;
  box-shadow: 0 4px 12px -4px rgba(201,154,75,.5);
}
.pc-tag-soft{
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--bg-2);
  color: var(--ink-2);
}

.pc-title{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.pc-desc{
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.pc-features{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}
.pc-features li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.pc-features svg{ color: var(--green); flex-shrink: 0; }
.pc-price{
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}
.pc-price-now{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pc-price-now i{ font-style: normal; font-size: 20px; font-weight: 700; margin-inline-start: 2px; color: var(--muted); }
.pc-price-old{
  font-size: 16px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.pc-save{
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(15,159,110,.12);
  color: var(--green);
  border-radius: 6px;
}
.pc-note{
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.pc-note strong{ color: var(--gold-2); font-weight: 700; }
.pc-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

/* ─── FREE COURSES ─── */
.free-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px){ .free-grid{ grid-template-columns: 1fr; } }

.fc{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  will-change: transform;
  overflow: hidden;
}
.fc::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,159,110,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.fc:hover{ box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.fc:hover::after{ opacity: 1; }
.fc-icon{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: rgba(15,159,110,.1);
  color: var(--green);
  border-radius: 16px;
}
.fc-badge{
  display: inline-flex;
  padding: 3px 10px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  align-self: flex-start;
}
.fc-title{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}
.fc-desc{
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.fc-arrow{
  position: absolute;
  top: 32px;
  left: 32px;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 18px;
  font-weight: 700;
  transition: transform .4s var(--ease), background .3s;
}
.fc:hover .fc-arrow{ background: var(--green); transform: rotate(-15deg) scale(1.08); }

/* ─── SERVICES ─── */
.services-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 980px){ .services-grid{ grid-template-columns: 1fr; } }

.sv{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  overflow: hidden;
  will-change: transform;
}
.sv:hover{ box-shadow: var(--shadow-lg); border-color: var(--border-strong); }

.sv-feature{
  grid-row: span 1;
  background: linear-gradient(135deg, #1a1a26 0%, #0B0B14 100%);
  color: var(--bg);
  border-color: transparent;
}
.sv-feature .sv-tag{
  display: inline-flex;
  padding: 4px 10px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}
.sv-feature .sv-title{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.sv-feature .sv-desc{
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  margin: 0;
  flex: 1;
  line-height: 1.65;
}
.sv-feature .btn-ghost{
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.sv-feature .btn-ghost:hover{ background: rgba(255,255,255,.18); }
.sv-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sv-card{
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.sv-card-tag{
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(124,58,237,.1);
  color: var(--violet);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  align-self: flex-start;
}
.sv-card-title{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.sv-card-desc{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.sv-card-arrow{
  position: absolute;
  top: 28px; left: 28px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  transition: transform .4s var(--ease), background .3s;
}
.sv-card:hover .sv-card-arrow{ background: var(--violet); transform: rotate(-15deg) scale(1.08); }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════ */
.cta-strip{
  padding: 60px 0 100px;
}
.cs-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 48px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.cs-card::before{
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,91,34,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cs-card::after{
  content: '';
  position: absolute;
  bottom: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(124,58,237,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cs-text{ position: relative; z-index: 1; }
.cs-title{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.cs-title em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-sub{
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s, color .25s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn-block{ width: 100%; }

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

.btn-solid{
  background: var(--ink);
  color: var(--bg);
}
.btn-solid:hover{
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(11,11,20,.4);
}

.btn-mega{
  height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 40px -12px rgba(233,30,99,.6);
}
.btn-mega::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #7C3AED 0%, #E91E63 50%, #FF5B22 100%);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  border-radius: 999px;
}
.btn-mega:hover{ transform: translateY(-3px) scale(1.02); }
.btn-mega:hover::before{ opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer{
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr 1fr; } .footer-brand{ grid-column: 1 / -1; } }

.footer-brand{ display: flex; flex-direction: column; gap: 8px; }
.footer-logo{
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.footer-logo-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.footer-name{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.footer-tag{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.footer-col h4{
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .2s;
}
.footer-col a:hover{ color: var(--orange); }

.socials{ display: flex; gap: 10px; }
.social{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-2);
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.social:hover{
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.social-wa:hover{ background: var(--wa); color: #fff; border-color: var(--wa); }

.copyright{
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════ */
.wa-float{
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 990;
  width: 56px; height: 56px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.1);
  transition: transform .3s var(--ease);
}
.wa-float:hover{ transform: scale(1.1) rotate(-8deg); }
.wa-float svg{ position: relative; z-index: 2; }
.wa-pulse{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: .6;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-pulse-2{ animation-delay: 1.2s; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(2); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP MODAL
   ═══════════════════════════════════════════════════════════ */
.wa-modal{
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.wa-modal:not([hidden]){
  opacity: 1;
  pointer-events: auto;
}
.wa-modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(11,11,20,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wa-modal-card{
  position: relative;
  background: var(--surface);
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(.92) translateY(20px);
  transition: transform .5s var(--ease);
  overflow: hidden;
}
.wa-modal:not([hidden]) .wa-modal-card{
  transform: scale(1) translateY(0);
}
.wa-modal-card::before{
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.18) 0%, transparent 70%);
  pointer-events: none;
}
.wa-modal-card::after{
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,34,.14) 0%, transparent 70%);
  pointer-events: none;
}
.wa-modal-close{
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-2);
  transition: background .2s, transform .2s;
  z-index: 2;
}
.wa-modal-close:hover{ background: var(--ink); color: var(--bg); transform: rotate(90deg); }

.wa-modal-icon{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,.55);
  animation: modalIconIn .8s var(--ease) .15s both;
}
@keyframes modalIconIn {
  from { transform: scale(.5) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.wa-modal-title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.wa-modal-body{
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.wa-paid{
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.08em;
  padding: 0 4px;
  position: relative;
}
.wa-paid::after{
  content: '';
  position: absolute;
  inset: -2px -4px;
  background: var(--grad-soft);
  border-radius: 6px;
  z-index: -1;
}
.wa-modal-actions{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.wa-modal-continue{
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.wa-modal-continue:hover{
  background: var(--wa-2);
  border-color: var(--wa-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(37,211,102,.5);
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  body{ cursor: auto; }
  .cursor-spotlight, .cursor-dot{ display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SMALL SCREENS POLISH
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 540px){
  .hero-sites{ padding: 120px 0 60px; }
  .section{ padding: 70px 0; }
  .cs-card{ padding: 32px 24px; }
  .pc, .fc, .sv{ padding: 24px; }
  .sc-content{ padding: 24px; }
  .wa-modal-card{ padding: 32px 20px 24px; }
  .wa-modal-actions{ grid-template-columns: 1fr; }
}
