/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --black:       #080808;
  --surface:     #111111;
  --surface-2:   #181818;
  --border:      rgba(255,255,255,0.07);
  --white:       #f5f2eb;
  --cream:       #e8e2d5;
  --accent:      #e8ff47;
  --accent-dim:  rgba(232,255,71,0.12);
  --danger:      #ff4747;
  --danger-dim:  rgba(255,71,71,0.12);
  --wa-green:    #25d366;
  --wa-dark:     #128c7e;
  --text-muted:  rgba(245,242,235,0.45);
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-ui:     'Syne', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--accent); color: var(--black); }

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: -4px; left: -4px;
  transition: transform 0.05s linear, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232,255,71,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  top: -18px; left: -18px;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}
.cursor.cursor--hover { width: 14px; height: 14px; }
.cursor-follower.cursor--hover { width: 56px; height: 56px; border-color: var(--accent); }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.section-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.title-small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.highlight { color: var(--accent); }
.highlight.danger { color: var(--danger); }
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}
em { font-style: italic; color: var(--accent); }

/* ============================================================
   SECTION BASE
============================================================ */
section { position: relative; overflow: hidden; }

/* ============================================================
   SECTION 1 — HERO
============================================================ */
.s-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 max(4vw, 2rem);
  background: var(--black);
  position: relative;
}

.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;
  z-index: 0;
  opacity: 0.6;
}

.s-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse, rgba(232,255,71,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.s-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse, rgba(255,71,71,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero__counter-bar {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,71,71,0.08);
  border: 1px solid rgba(255,71,71,0.2);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 0.8s var(--ease-out) 0.2s both;
}
.counter-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,71,71,0.8);
  font-family: var(--font-ui);
  font-weight: 600;
}
.counter-ticker {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--danger);
  letter-spacing: 0.05em;
}
.ticker-prefix, .ticker-suffix { font-size: 1rem; opacity: 0.7; }

.hero__eyebrow {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  animation: fadeSlideDown 0.8s var(--ease-out) 0.35s both;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__content { position: relative; z-index: 2; max-width: 900px; }

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.headline-line {
  display: block;
  position: relative;
  overflow: hidden;
  animation: revealLine 1s var(--ease-out) both;
}
.line-1 { animation-delay: 0.5s;  color: var(--white); }
.line-2 { animation-delay: 0.65s; color: var(--cream); }
.line-3.line-accent {
  animation-delay: 0.8s;
  color: var(--accent);
  text-shadow: 0 0 80px rgba(232,255,71,0.3);
}

@keyframes revealLine {
  from { opacity: 0; transform: translateY(60px) skewY(3deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.glitch-active {
  animation: glitch 0.2s steps(2) forwards !important;
}
@keyframes glitch {
  0%   { text-shadow: 2px 0 var(--danger), -2px 0 var(--accent); transform: translate(-2px, 0); }
  33%  { text-shadow: -2px 0 var(--danger), 2px 0 var(--accent); transform: translate(2px, 0); }
  66%  { text-shadow: 2px 0 var(--accent), -2px 0 var(--danger); transform: translate(0, -1px); }
  100% { text-shadow: none; transform: translate(0); }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 0.9s var(--ease-out) 1s both;
}
.hero__sub em { font-style: italic; color: var(--white); }

.hero__cta-group { animation: fadeSlideDown 0.9s var(--ease-out) 1.15s both; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  cursor: none;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }

.btn--primary {
  background: var(--accent);
  color: var(--black);
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232,255,71,0.2);
}
.btn--primary:hover svg { transform: translateY(4px); }

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: max(4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeSlideDown 1s var(--ease-out) 1.5s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION 2 — PAIN POINTS
============================================================ */
.s-pain {
  padding: 8rem max(4vw, 2rem);
  background: var(--surface);
}
.s-pain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    rgba(255,255,255,0.02) 79px,
    rgba(255,255,255,0.02) 80px
  );
  pointer-events: none;
}

.pain__intro { margin-bottom: 4rem; }

.pain__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pain-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  cursor: none;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  opacity: 0;
  transform: translateY(40px);
}
.pain-card.is-visible {
  animation: cardReveal 0.7s var(--ease-out) forwards;
}
.pain-card:nth-child(1).is-visible { animation-delay: 0s; }
.pain-card:nth-child(2).is-visible { animation-delay: 0.1s; }
.pain-card:nth-child(3).is-visible { animation-delay: 0.2s; }
.pain-card:nth-child(4).is-visible { animation-delay: 0.3s; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pain-card::before {
  content: attr(data-index);
  position: absolute;
  top: -0.5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.pain-card:hover {
  border-color: rgba(255,71,71,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,71,71,0.1);
}
.pain-card:hover::before { color: rgba(255,71,71,0.06); }

.pain-card--selected {
  border-color: var(--danger) !important;
  background: rgba(255,71,71,0.06) !important;
}
.pain-card--selected::after {
  content: '✓';
  position: absolute;
  top: 1rem; right: 1rem;
  width: 28px; height: 28px;
  background: var(--danger);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.pain-card__icon {
  width: 48px; height: 48px;
  color: var(--danger);
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.pain-card__icon svg { width: 100%; height: 100%; }

.pain-card__body h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.pain-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pain-card__cost {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cost-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cost-number {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--danger);
}

.pain__mirror {
  text-align: center;
  padding: 2.5rem;
  border: 1px dashed rgba(232,255,71,0.2);
  border-radius: 8px;
  background: var(--accent-dim);
}
.mirror-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream);
}
.counter-bold {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  vertical-align: middle;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
  display: inline-block;
}

/* ============================================================
   SECTION 3 — COST / LOSS
============================================================ */
.s-cost {
  padding: 8rem max(4vw, 2rem);
  background: var(--black);
  position: relative;
}

.cost__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(255,71,71,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  user-select: none;
}

.cost__intro {
  position: relative; z-index: 1;
  max-width: 700px;
  margin-bottom: 4rem;
}

.cost__calculator { position: relative; z-index: 1; }

.calc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.calc-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out);
}
.calc-item.is-visible { opacity: 1; transform: translateY(0); }
.calc-item:nth-child(1) { transition-delay: 0s; }
.calc-item:nth-child(2) { transition-delay: 0.1s; }
.calc-item:nth-child(3) { transition-delay: 0.2s; }
.calc-item:nth-child(4) { transition-delay: 0.3s; }

.calc-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.calc-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.calc-bar {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.calc-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--danger), #ff8c00);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}
.calc-value {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--danger);
}

.cost__total {
  position: relative; z-index: 1;
  margin-top: 5rem;
  opacity: 0;
  transform: translateY(30px);
}
.cost__total.is-visible {
  animation: cardReveal 0.9s var(--ease-out) forwards;
}
.total-box {
  border: 1px solid rgba(255,71,71,0.3);
  border-radius: 8px;
  padding: 3rem;
  background: var(--danger-dim);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.total-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,71,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.total-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.total-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.amount-prefix {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--danger);
}
.amount-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--danger);
  text-shadow: 0 0 60px rgba(255,71,71,0.4);
}
.total-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================================
   SECTION 4 — TURN / BEFORE-AFTER
============================================================ */
.s-turn {
  padding: 8rem max(4vw, 2rem);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.turn__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.turn__headline {
  font-family: var(--font-ui);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.turn-accent { color: var(--accent); }
.turn__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.before-after {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}
.ba-side {
  flex: 1;
  padding: 1.8rem 1.5rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-20px);
}
.ba-side.is-visible { animation: cardReveal 0.7s var(--ease-out) forwards; }
.ba-before.is-visible { animation-delay: 0s; }
.ba-after.is-visible  { animation-delay: 0.2s; }

.ba-before {
  background: rgba(255,71,71,0.06);
  border: 1px solid rgba(255,71,71,0.2);
}
.ba-after {
  background: rgba(232,255,71,0.05);
  border: 1px solid rgba(232,255,71,0.2);
  transform: translateX(20px);
}
.ba-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.ba-before .ba-label { color: var(--danger); }
.ba-after  .ba-label { color: var(--accent); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.ba-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.icon-x     { color: var(--danger); font-style: normal; font-weight: 700; }
.icon-check { color: var(--accent); font-style: normal; font-weight: 700; }
.ba-arrow {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 5 — SERVICES
============================================================ */
.s-services {
  padding: 8rem max(4vw, 2rem);
  background: var(--black);
}
.s-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg,   rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}

.services__header { margin-bottom: 4rem; position: relative; z-index: 1; }

.services__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.service-card {
  position: relative;
  background: var(--black);
  padding: 2.5rem 2rem;
  cursor: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.service-card.is-visible { animation: cardReveal 0.7s var(--ease-out) forwards; }
.service-card:nth-child(1).is-visible { animation-delay: 0s; }
.service-card:nth-child(2).is-visible { animation-delay: 0.1s; }
.service-card:nth-child(3).is-visible { animation-delay: 0.2s; }
.service-card:nth-child(4).is-visible { animation-delay: 0.3s; }

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(232,255,71,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover { background: var(--surface-2); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }

.service-card__number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.service-card:hover .service-card__number { color: rgba(232,255,71,0.07); }

.service-card__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.service-card__desc strong { color: var(--white); }

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
}
.service-card__features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

.service-card__cta { margin-top: auto; }
.cta-price-hint {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232,255,71,0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

/* ============================================================
   SECTION — FOUNDER / HAKKIMDA
============================================================ */
.s-founder {
  padding: 8rem max(4vw, 2rem);
  background: var(--black);
  position: relative;
}

.s-founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(232,255,71,0.06), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.03), transparent 28%);
  pointer-events: none;
}

.founder__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.founder__media,
.founder__content {
  opacity: 0;
  transform: translateY(30px);
}

.founder__media.is-visible,
.founder__content.is-visible {
  animation: cardReveal 0.8s var(--ease-out) forwards;
}

.founder__content.is-visible {
  animation-delay: 0.1s;
}

.founder__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.founder__image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.95) contrast(1.03);
}

.founder__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.founder__title {
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.founder__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 680px;
}

.founder__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.founder__point {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.founder__btn {
  margin-top: 0.5rem;
}

@media (max-width: 980px) {
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder__image {
    max-height: 560px;
    object-position: center 28%;
  }
}

@media (max-width: 640px) {
  .s-founder {
    padding: 5rem max(4vw, 1.2rem);
  }

  .founder__image {
    max-height: 460px;
  }

  .founder__text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .founder__points {
    gap: 0.6rem;
  }

  .founder__point {
    width: 100%;
    border-radius: 10px;
    text-align: center;
  }
}

/* ============================================================
   SECTION 6 — SOCIAL PROOF
============================================================ */
.s-proof {
  padding: 8rem max(4vw, 2rem);
  background: var(--surface);
}
.proof__header { margin-bottom: 4rem; }

.proof__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  padding: 3rem;
  background: var(--black);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(20px);
}
.stat-item.is-visible { animation: cardReveal 0.6s var(--ease-out) forwards; }
.stat-item:nth-child(1).is-visible { animation-delay: 0s; }
.stat-item:nth-child(2).is-visible { animation-delay: 0.1s; }
.stat-item:nth-child(3).is-visible { animation-delay: 0.2s; }
.stat-item:nth-child(4).is-visible { animation-delay: 0.3s; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: center;
}

.proof__testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.testimonial-card.is-visible { animation: cardReveal 0.7s var(--ease-out) forwards; }
.testimonial-card:nth-child(1).is-visible { animation-delay: 0s; }
.testimonial-card:nth-child(2).is-visible { animation-delay: 0.1s; }
.testimonial-card:nth-child(3).is-visible { animation-delay: 0.2s; }
.testimonial-card:hover { border-color: rgba(232,255,71,0.2); transform: translateY(-3px); }

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-meta strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testimonial-meta span  { font-size: 0.75rem; color: var(--text-muted); }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.05em; }
.testimonial-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ============================================================
   SECTION 7 — URGENCY / SCARCITY
============================================================ */
.s-urgency {
  padding: 5rem max(4vw, 2rem);
  background: var(--black);
  border-top: 1px solid rgba(255,71,71,0.15);
  border-bottom: 1px solid rgba(255,71,71,0.15);
}
.urgency__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.urgency__badge {
  display: inline-block;
  background: rgba(255,71,71,0.1);
  border: 1px solid rgba(255,71,71,0.3);
  color: var(--danger);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  animation: urgencyPulse 2.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,71,71,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255,71,71,0); }
}
.urgency__headline {
  font-family: var(--font-ui);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.urgency-num {
  font-family: var(--font-display);
  font-size: 1.4em;
  color: var(--accent);
}
.urgency__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.urgency__desc strong { color: var(--white); }
.urgency__slots {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.slot {
  width: 80px; height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slot--taken {
  background: rgba(255,71,71,0.1);
  border: 1px solid rgba(255,71,71,0.3);
}
.slot--taken span { color: var(--danger); }
.slot--open {
  background: rgba(232,255,71,0.07);
  border: 2px solid var(--accent);
  animation: slotPulse 2s ease-in-out infinite;
}
.slot--open:nth-child(3) { animation-delay: 0.3s; }
.slot--open span { color: var(--accent); }
@keyframes slotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,255,71,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(232,255,71,0); }
}

/* ============================================================
   SECTION 8 — FINAL CTA
============================================================ */
.s-cta {
  padding: 10rem max(4vw, 2rem);
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  background: radial-gradient(ellipse, rgba(232,255,71,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta__content {
  position: relative; z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta__headline em { color: var(--accent); font-style: normal; }
.cta__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 2.5rem;
  background: var(--wa-green);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  margin-bottom: 2rem;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(37,211,102,0.35), 0 0 0 1px rgba(37,211,102,0.3);
}
.wa-icon { width: 24px; height: 24px; flex-shrink: 0; }
.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-out);
}
.btn-whatsapp:hover .btn-arrow { transform: translateX(4px); }

.cta__micro-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER
============================================================ */
.s-footer {
  padding: 2.5rem max(4vw, 2rem);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.float-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: none;
  opacity: 0;
  transform: scale(0.7) translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.float-wa svg { width: 28px; height: 28px; color: #fff; }
.float-wa--visible { opacity: 1; transform: scale(1) translateY(0); }
.float-wa:hover { transform: scale(1.08); box-shadow: 0 16px 50px rgba(37,211,102,0.5); }

.float-wa__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: ripple 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .hero__headline { font-size: clamp(3.5rem, 15vw, 5rem); }
  .pain__cards { grid-template-columns: 1fr; }
  .s-turn { grid-template-columns: 1fr; gap: 3rem; }
  .services__grid { grid-template-columns: 1fr; }
  .proof__testimonials { grid-template-columns: 1fr; }
  .s-footer { flex-direction: column; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .before-after {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .ba-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
    text-align: center;
    margin: 0.25rem 0;
    line-height: 1;
  }

  .cta__headline { font-size: clamp(3rem, 12vw, 5rem); }
}