/* ============================================================
   ORLO CREATIVE — LP DE LANDING PAGES  v3
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --clr-bg:        #080808;
  --clr-surface:   #111111;
  --clr-surface-2: #161616;
  --clr-border:    rgba(255,255,255,0.07);
  --clr-border-hi: rgba(202,255,0,0.25);

  --clr-accent:    #CAFF00;
  --clr-accent-dk: #9FCC00;
  --clr-accent-glow: rgba(202,255,0,0.18);

  --clr-text:      #F5F5F5;
  --clr-text-sec:  rgba(245,245,245,0.55);
  --clr-text-muted:rgba(245,245,245,0.32);

  --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 60px rgba(202,255,0,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);

  --transition-fast: 0.18s ease;
  --transition-med:  0.32s ease;
  --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  --max-w: 1200px;
  --header-h: 72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: rgba(202,255,0,0.3); border-radius: 99px; }
::selection { background: var(--clr-accent); color: #000; }

/* ---------- LAYOUT ---------- */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ---------- CURSOR BLOB ---------- */
.cursor-blob {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,255,0,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
  z-index: 0;
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med);
}
.glass-card:hover {
  border-color: var(--clr-border-hi);
  box-shadow: var(--shadow-glow);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: 999px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn--primary {
  background: var(--clr-accent);
  color: #000;
  box-shadow: 0 0 20px rgba(202,255,0,0.25);
}
.btn--primary:hover {
  background: #d9ff1a;
  box-shadow: 0 0 35px rgba(202,255,0,0.4);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

.btn--sm  { padding: 10px 20px; font-size: 13px; }
.btn--md  { padding: 12px 24px; font-size: 14px; }
.btn--lg  { padding: 16px 32px; font-size: 15px; }
.btn--xl  { padding: 20px 44px; font-size: 17px; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- SECTION COMMON ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--clr-accent);
}
.section-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--clr-accent); }
.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--clr-text-sec);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition-med), border-color var(--transition-med);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--clr-border);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__text {
  font-size: 22px; font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.03em;
}
.logo__sub {
  font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 1px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-size: 13px; font-weight: 500;
  color: var(--clr-text-sec);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav__link:hover { color: var(--clr-text); background: rgba(255,255,255,0.06); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--clr-text); border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — two-column on desktop
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--header-h) + 60px) 80px;
}

.hero__grid-lines {
  position: absolute; inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none; z-index: 0;
  opacity: 0.04;
}
.hero__grid-lines span { width: 1px; background: var(--clr-text); }

.hero__glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); z-index: 0;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(202,255,0,0.12) 0%, transparent 70%);
  animation: floatGlow1 8s ease-in-out infinite;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(0,80,200,0.1) 0%, transparent 70%);
  animation: floatGlow2 10s ease-in-out infinite;
}
@keyframes floatGlow1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px,30px) scale(1.1); }
}
@keyframes floatGlow2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.05); }
}

/* Hero two-column layout */
.hero__layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  /* width: 100% removed — was overriding .container max-width */
}

.hero__content { max-width: 620px; }

.hero__badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(202,255,0,0.08);
  border: 1px solid rgba(202,255,0,0.2);
  color: var(--clr-accent);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.6s ease both;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 8px var(--clr-accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero__title {
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}
.hero__title em { font-style: normal; color: var(--clr-accent); }
.hero__title-highlight {
  color: var(--clr-accent); position: relative;
}
.hero__title-highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; background: var(--clr-accent);
  border-radius: 2px; opacity: 0.4;
  transform: scaleX(0); transform-origin: left;
  animation: underlineReveal 0.8s 0.8s ease forwards;
}
@keyframes underlineReveal { to { transform: scaleX(1); } }

.hero__asterisk {
  color: var(--clr-accent); font-size: 0.55em;
  vertical-align: super; margin-left: 6px;
  display: inline-block;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--clr-text-sec);
  margin-bottom: 44px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}
.hero__subtitle strong { color: var(--clr-text); font-weight: 700; }
.hero__subtitle mark {
  background: var(--clr-accent); color: #000;
  padding: 1px 7px; border-radius: 4px; font-weight: 800;
}

.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.hero__stats {
  display: flex; align-items: center;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}
.hero__stat { display: flex; flex-direction: column; padding: 0 28px; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-value {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  color: var(--clr-accent); line-height: 1; letter-spacing: -0.03em;
}
.hero__stat-value sup { font-size: 0.5em; }
.hero__stat-label { font-size: 12px; color: var(--clr-text-muted); font-weight: 500; margin-top: 4px; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--clr-border); }

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,255,0,0.1) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.hero__visual-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px;
  height: auto;
  border-radius: var(--radius-lg);
  animation: floatImg 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(202,255,0,0.15));
}
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Floating badges over visual */
.hero__float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17,17,17,0.85);
  border: 1px solid rgba(202,255,0,0.22);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  animation: floatBadge 5s ease-in-out infinite;
}
.hero__float-badge--1 {
  top: 10%; left: -5%;
  animation-delay: 0s;
}
.hero__float-badge--2 {
  bottom: 16%; right: -4%;
  animation-delay: 1.5s;
}
.hero__float-badge--3 {
  bottom: 40%; left: -8%;
  animation-delay: 0.8s;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__float-icon { font-size: 20px; }
.hero__float-badge strong { display: block; font-size: 13px; font-weight: 700; color: var(--clr-text); }
.hero__float-badge small { display: block; font-size: 11px; color: var(--clr-text-muted); }
.hero__float-price {
  font-size: 22px; font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.03em;
}

.hero__scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--clr-text-muted);
  animation: fadeIn 1s 1s ease both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform: scaleY(1) translateY(0); }
  50% { opacity:0.5; transform: scaleY(0.7) translateY(5px); }
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section {
  padding-block: 100px;
  background: var(--clr-surface);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card { padding: 36px 32px; }
.pain-card__icon { font-size: 36px; margin-bottom: 18px; }
.pain-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.pain-card p { color: var(--clr-text-sec); font-size: 15px; }

/* ============================================================
   BENEFITS SECTION — 3 cols × 2 rows = 6 cards + wide highlight
   ============================================================ */
.benefits-section {
  position: relative;
  padding-block: 110px;
  overflow: hidden;
}
.benefits__glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(202,255,0,0.07) 0%, transparent 65%);
  pointer-events: none; filter: blur(60px); border-radius: 50%;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.benefit-card__number {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; color: var(--clr-accent); opacity: 0.7;
}
.benefit-card__icon { font-size: 28px; }
.benefit-card__title { font-size: 16px; font-weight: 700; line-height: 1.3; }
.benefit-card__desc { font-size: 14px; color: var(--clr-text-sec); }

/* Wide highlight card spanning full 3 columns */
.benefit-card--highlight {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  background: rgba(202,255,0,0.05);
  border-color: rgba(202,255,0,0.25);
  overflow: hidden;
}
.benefit-card--highlight:hover { box-shadow: 0 0 80px rgba(202,255,0,0.15); }

.benefit-card__price-tag {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; color: var(--clr-accent);
  letter-spacing: -0.04em; white-space: nowrap; line-height: 1;
  padding: 44px 56px;
  border-right: 1px solid rgba(202,255,0,0.18);
  flex-shrink: 0;
  background: rgba(202,255,0,0.03);
}
.benefit-card__highlight-body {
  padding: 36px 48px;
  display: flex; flex-direction: column; gap: 14px;
}
.benefit-card__highlight-body .benefit-card__title { font-size: 20px; }

/* ============================================================
   INCLUDES SECTION
   ============================================================ */
.includes-section {
  padding-block: 110px;
  background: var(--clr-surface);
}
.includes-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.includes-list { display: flex; flex-direction: column; gap: 0; }
.includes-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: border-color var(--transition-fast);
}
.includes-item:last-child { border-bottom: none; }
.includes-item:hover { border-color: rgba(202,255,0,0.2); }
.includes-item__check {
  font-size: 16px; color: var(--clr-accent);
  margin-top: 2px; flex-shrink: 0; line-height: 1;
}
.includes-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.includes-item p { font-size: 14px; color: var(--clr-text-sec); margin: 0; }

.includes-cta {
  padding: 40px 32px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  text-align: center;
}
.includes-cta__badge {
  display: inline-block;
  background: rgba(202,255,0,0.1); border: 1px solid rgba(202,255,0,0.25);
  color: var(--clr-accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 24px;
}
.includes-cta__price {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px; gap: 4px;
}
.includes-cta__price-from { font-size: 13px; color: var(--clr-text-muted); }
.includes-cta__price-value {
  font-size: 52px; font-weight: 800; color: var(--clr-accent);
  letter-spacing: -0.04em; line-height: 1;
}
.includes-cta__price-note { font-size: 12px; color: var(--clr-text-muted); }
.includes-cta__text { font-size: 14px; color: var(--clr-text-sec); margin-bottom: 28px; line-height: 1.6; }
.includes-cta__security {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 12px; color: var(--clr-text-muted); margin-top: 16px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  position: relative;
  padding-block: 110px;
  overflow: hidden;
}
.process__glow {
  position: absolute;
  width: 500px; height: 500px;
  top: 50%; left: -150px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(202,255,0,0.07) 0%, transparent 65%);
  filter: blur(60px); border-radius: 50%; pointer-events: none;
}
.process-timeline {
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute; left: 28px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent) 0%, transparent 100%);
  opacity: 0.3;
}
/* Original desktop layout: number flex-sibling to the left of card */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.process-step__number {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--clr-surface); border: 1px solid var(--clr-border-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--clr-accent);
  letter-spacing: 0.06em; flex-shrink: 0; position: relative; z-index: 1;
}
.process-step__content {
  flex: 1;
  padding: 28px 32px;
}
.process-step__content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.process-step__content p { color: var(--clr-text-sec); font-size: 15px; }

/* ============================================================
   PORTFOLIO SECTION — browser mockup cards
   ============================================================ */
.portfolio-section {
  padding-block: 110px;
  background: var(--clr-surface);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* The card is an anchor wrapping the whole block */
.portfolio-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  transition: border-color var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med);
  cursor: pointer;
}
.portfolio-card:hover {
  border-color: var(--clr-border-hi);
  box-shadow: 0 0 40px rgba(202,255,0,0.1);
  transform: translateY(-4px);
}

/* Browser chrome bar */
.portfolio-card__browser {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.portfolio-card__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%; flex-shrink: 0;
}
.dot--red    { background: #FF5F57; }
.dot--yellow { background: #FEBC2E; }
.dot--green  { background: #28C840; }
.browser-url {
  flex: 1;
  font-size: 11px; color: var(--clr-text-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 3px 10px;
  margin-left: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.portfolio-card__screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}
.portfolio-card__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-card__screen img {
  transform: scale(1.03);
}

/* Card info below the screen */
.portfolio-card__info {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.portfolio-card__badge {
  display: inline-block;
  background: rgba(202,255,0,0.1);
  border: 1px solid rgba(202,255,0,0.2);
  color: var(--clr-accent);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  align-self: flex-start; margin-bottom: 4px;
}
.portfolio-card__title { font-size: 18px; font-weight: 700; }
.portfolio-card__desc { font-size: 13px; color: var(--clr-text-sec); line-height: 1.55; }
.portfolio-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  color: var(--clr-accent);
  margin-top: 8px;
  transition: gap var(--transition-fast);
}
.portfolio-card:hover .portfolio-card__link { gap: 8px; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  position: relative;
  padding-block: 110px;
  overflow: hidden;
}
.testimonials__glow {
  position: absolute;
  width: 600px; height: 600px;
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(202,255,0,0.07) 0%, transparent 65%);
  filter: blur(80px); border-radius: 50%; pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-card__stars { color: #FFD700; font-size: 15px; letter-spacing: 2px; }
.testimonial-card__text {
  font-size: 15px; color: var(--clr-text-sec);
  line-height: 1.75; font-style: italic; flex: 1;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #000; flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-card__author span  { display: block; font-size: 12px; color: var(--clr-text-muted); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding-block: 110px;
  background: var(--clr-surface);
}
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item { overflow: hidden; }
.faq-item__question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; color: var(--clr-text);
  transition: color var(--transition-fast);
}
.faq-item__question:hover { color: var(--clr-accent); }
.faq-item__icon {
  font-size: 22px; font-weight: 300; color: var(--clr-accent);
  transition: transform var(--transition-fast); flex-shrink: 0; line-height: 1;
}
details[open] .faq-item__icon { transform: rotate(45deg); }
details[open] .faq-item__question { color: var(--clr-accent); }
details[open] { border-color: rgba(202,255,0,0.2); }
.faq-item__answer { padding: 0 28px 24px; }
.faq-item__answer p { font-size: 15px; color: var(--clr-text-sec); line-height: 1.7; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  position: relative;
  padding-block: 130px;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--clr-bg) 0%, #060606 100%);
}
.final-cta__glow {
  position: absolute;
  width: 900px; height: 900px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(202,255,0,0.1) 0%, transparent 60%);
  pointer-events: none; filter: blur(80px); border-radius: 50%;
}
.final-cta__content {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px;
}
.final-cta__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(202,255,0,0.08); border: 1px solid rgba(202,255,0,0.25);
  color: var(--clr-accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; margin-bottom: 32px;
}
.final-cta__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--clr-accent); box-shadow: 0 0 8px var(--clr-accent);
  animation: pulse 2s ease-in-out infinite;
}
.final-cta__title {
  font-size: clamp(34px, 5.5vw, 62px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px;
}
.final-cta__title em { font-style: normal; color: var(--clr-accent); }
.final-cta__subtitle {
  font-size: clamp(15px, 2vw, 19px); color: var(--clr-text-sec);
  margin-bottom: 48px; line-height: 1.7;
}
.final-cta__contacts {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 32px;
}
.final-cta__contact-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}
.final-cta__contact-link:hover { color: var(--clr-accent); }
.final-cta__contact-sep { color: var(--clr-text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: 72px;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; padding-bottom: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__tagline { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; max-width: 240px; }
.footer__links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 4px;
}
.footer__col a, .footer__col p { font-size: 14px; color: var(--clr-text-sec); transition: color var(--transition-fast); }
.footer__col a:hover { color: var(--clr-accent); }
.footer__bottom { border-top: 1px solid var(--clr-border); padding-block: 22px; }
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 13px; color: var(--clr-text-muted); }
.footer__bottom a { color: var(--clr-accent); }
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pricePulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 24px rgba(202,255,0,0.7); }
  50%       { opacity: 0.55; text-shadow: 0 0 8px rgba(202,255,0,0.2); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET  (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card--highlight { grid-column: 1 / -1; }
  .includes-layout { grid-template-columns: 1fr; }
  .includes-cta { position: static; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 62px; }

  /* Mobile nav drawer */
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px 32px; gap: 4px;
    border-bottom: 1px solid var(--clr-border);
    transform: translateY(-120%);
    transition: transform var(--transition-med);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { font-size: 16px; padding: 12px 16px; }
  .nav__toggle { display: flex; margin-left: auto; }
  .header__inner .btn--sm { display: none; }

  .hero__ctas { flex-direction: column; }
  .hero__stats { flex-wrap: nowrap; gap: 0; }
  .hero__stat { padding: 0; flex: 1; text-align: center; min-width: 0; }
  .hero__stat-value { font-size: 22px; }
  .hero__stat-label { font-size: 10px; }
  .hero__stat-divider { display: block; height: 28px; }
  .hero__visual { display: none; }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 26px 22px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card--highlight {
    flex-direction: column;
    gap: 0;
  }
  .benefit-card__price-tag {
    border-right: none;
    border-bottom: 1px solid rgba(202,255,0,0.18);
    padding: 28px;
    font-size: 48px;
    width: 100%;
    text-align: center;
    animation: pricePulse 1.8s ease-in-out infinite;
  }
  .benefit-card__highlight-body { padding: 28px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .process-timeline::before { display: none; }
  .process-timeline { counter-reset: none; }
  /* Mobile: number is a flex-sibling OUTSIDE the card.
     Set step to relative+column, take number out of flow (absolute),
     card fills full width. Number overlaps the card's top-left corner. */
  .process-step {
    position: relative;
    flex-direction: column;
    gap: 0;
  }
  .process-step__number {
    /* Taken out of flow → card rises to top of step.
       Number sits 20px inside the card's top-left. */
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    font-size: 11px;
    background: rgba(12,12,12,0.95);
  }
  .process-step__content {
    /* Extra padding-top so text doesn't hide behind the number */
    padding: 76px 24px 24px 24px;
  }

  .faq-item__question { padding: 18px 20px; font-size: 15px; }
  .faq-item__answer { padding: 0 20px 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .footer__links { grid-template-columns: 1fr; }
  .final-cta__contacts { flex-direction: column; gap: 12px; }
  .final-cta__contact-sep { display: none; }
  .btn--xl { padding: 16px 28px; font-size: 15px; }
}

/* ============================================================
   DESKTOP-SPECIFIC — 2-col hero + show visual only ≥900px
   ============================================================ */
@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .hero__visual { display: flex !important; }
  .hero__content { max-width: 100%; }
}

/* Below 900px: single col, no visual */
@media (max-width: 899px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__visual { display: none !important; }
  .hero__content { max-width: 100%; }
}
