:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #15151a;
  --fg: #f5f3ee;
  --muted: #8a8a90;
  --accent: #ff5f3c;
  --accent-2: #19c8a3;
  --line: rgba(245, 243, 238, 0.08);
  --line-2: rgba(245, 243, 238, 0.16);
}

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

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--fg);
}
.loader-text {
  font-weight: 700;
  letter-spacing: 0.45em;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
}
.loader-path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}
.loader-rect { transform-origin: 5px 28px; transform: scaleY(0); }
.loader-dot { transform-origin: 26px 26px; transform: scale(0); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 9000;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 95, 60, 0.6);
}

/* Mouse spotlight */
.spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 700px;
  height: 700px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 60, 0.10), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
  will-change: transform;
}

/* Cursor text variant */
.cursor-text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #111;
  opacity: 0;
  transition: opacity .25s;
  white-space: nowrap;
}
.cursor.is-text {
  width: 96px !important;
  height: 96px !important;
  background: var(--accent);
  border-color: transparent !important;
  mix-blend-mode: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor.is-text .cursor-text { opacity: 1; }

/* Click ripple particles */
.click-ripple {
  position: fixed;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 9500;
}
.click-particle {
  position: absolute;
  left: 0; top: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent);
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", "Helvetica Neue", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }

/* Custom cursor */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 243, 238, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s, height .25s, border-color .25s;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--fg);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 64px; height: 64px; border-color: var(--accent); }

/* Top urgency banner */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--accent);
  color: #111;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  z-index: 90;
}
.banner-pulse {
  width: 9px; height: 9px;
  background: #111;
  border-radius: 50%;
  animation: pulseDark 1.4s ease-out infinite;
}
@keyframes pulseDark {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,.6); }
  70% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.banner a {
  text-decoration: underline;
  font-weight: 600;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  z-index: 80;
  background: rgba(10,10,12,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-svg {
  color: var(--fg);
  transition: transform .5s cubic-bezier(.6,0,.2,1);
}
.logo:hover .logo-svg { transform: rotate(-12deg) scale(1.05); }
.logo-pulse {
  transform-origin: 26px 26px;
  animation: logoPulse 2.4s ease-out infinite;
  filter: drop-shadow(0 0 6px var(--accent));
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}
.logo-text { font-weight: 700; letter-spacing: 0.22em; font-size: 13px; }
.nav-links {
  display: flex; gap: 28px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--fg);
  transition: width .35s cubic-bezier(.6,.05,.2,1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .35s, box-shadow .35s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(245,243,238,.15); }
.dot-status {
  width: 7px; height: 7px;
  background: #19c8a3;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(25, 200, 163, 0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(25, 200, 163, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(25, 200, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 200, 163, 0); }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 50px);
  padding: 60px 40px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
  font-size: 13px;
  opacity: 0;
}
.stars { color: #ffc845; letter-spacing: 1px; display: inline-flex; gap: 1px; }
.stars span { display: inline-block; opacity: 0; }
.badge-text { color: var(--muted); }
.badge-text strong { color: var(--fg); font-weight: 600; }

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(52px, 10vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.line { display: block; overflow: hidden; }
.line-inner { display: inline-block; }

.hero-sub {
  max-width: 580px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  opacity: 0;
}
.hero-actions { display: flex; gap: 16px; opacity: 0; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-2);
  color: #0a0a0c;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: color .4s;
  cursor: none;
}
.btn .btn-arrow { transition: transform .35s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn.primary { background: var(--accent); color: #111; box-shadow: 0 10px 40px rgba(255,95,60,.25); }
.btn.primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--fg);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.btn.primary:hover::before { transform: translateY(0); }
.btn.primary > * { position: relative; z-index: 1; }
.btn.ghost { border: 1px solid rgba(245,243,238,.25); }
.btn.ghost:hover { border-color: var(--fg); }
.btn.big { padding: 22px 36px; font-size: 15px; }

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--muted);
  z-index: 2;
}
.hero-scroll-line {
  width: 60px; height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform-origin: left;
  animation: scrollLine 2.4s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  50.01% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* Wins marquee — billboard giant */
.wins {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 56px 0;
}
.wins-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.02em;
  will-change: transform;
}
.wins-track strong {
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
}
.wins-track .dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--accent);
}

/* Marquee (categories) */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 36px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 80px);
  font-style: italic;
  font-weight: 400;
}
.marquee-track {
  display: inline-flex; gap: 40px;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track span:nth-child(even) { color: var(--accent); }

/* Sections */
section { padding: 140px 40px; position: relative; }
.section-head { max-width: 1200px; margin: 0 auto 80px; }
.section-tag {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-lead {
  margin-top: 24px;
  max-width: 580px;
  font-size: 18px;
  color: var(--muted);
}
[data-reveal] { overflow: hidden; perspective: 1000px; }
[data-reveal] > * { display: inline-block; }
.char {
  display: inline-block;
  will-change: transform, opacity;
}

/* Manifesto */
.manifesto {
  position: relative;
  padding: 200px 40px;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-watermark {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  overflow: hidden;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 1;
  color: rgba(245, 243, 238, 0.04);
  letter-spacing: -0.05em;
  will-change: transform;
}
.manifesto-watermark span { display: inline-block; }
.manifesto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform;
}
.shape-1 {
  width: 360px; height: 360px;
  background: var(--accent);
  top: 10%; left: 5%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape-2 {
  width: 200px; height: 200px;
  background: var(--accent-2);
  bottom: 15%; right: 8%;
  filter: blur(60px);
  opacity: 0.32;
}
.shape-3 {
  width: 80px; height: 80px;
  background: var(--fg);
  top: 28%; right: 18%;
  filter: blur(0);
  opacity: 0.9;
}
.shape-4 {
  width: 40px; height: 40px;
  background: var(--accent);
  bottom: 30%; left: 22%;
  filter: blur(0);
  opacity: 1;
}
.manifesto-tag {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-text {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(64px, 13vw, 220px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 1400px;
  margin: 0 auto;
}
.manifesto-text .word {
  display: block;
  overflow: hidden;
}
.manifesto-text .word-inner {
  display: inline-block;
}
.manifesto-text em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-bottom {
  position: relative;
  z-index: 1;
  margin: 60px auto 0;
  max-width: 1400px;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--muted);
  line-height: 1.5;
}
.manifesto-bottom strong { color: var(--fg); font-weight: 600; }

/* Problem */
.problem-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.problem-item {
  padding: 40px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(40px);
  transition: background .4s;
}
.problem-item:hover { background: var(--bg-3); }
.problem-x {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 95, 60, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.problem-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
}
.problem-item p { color: var(--muted); }
.problem-cta {
  max-width: 1200px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.problem-cta p { font-size: 18px; color: var(--muted); }
.problem-cta strong { color: var(--fg); }

/* Services */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.service {
  padding: 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  opacity: 0;
  transform: translateY(40px);
  display: flex;
  flex-direction: column;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service-num {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.service h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service > p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.service ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 1;
  margin-bottom: 24px;
}
.service li {
  font-size: 14px;
  letter-spacing: 0.02em;
  padding-left: 22px;
  position: relative;
  color: var(--fg);
}
.service li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
}
.service-result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}
.service-result strong {
  color: var(--accent);
  font-weight: 700;
}

/* Process */
.process-list {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  position: relative;
  opacity: 0;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.7,0,.2,1);
}
.step:hover::after { transform: scaleX(1); }
.step-num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--muted);
  transition: color .35s;
}
.step:hover .step-num { color: var(--accent); }
.step-body h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  margin-bottom: 6px;
}
.step-body p { color: var(--muted); max-width: 540px; }
.step-time {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-align: right;
  font-weight: 600;
}

/* Stats */
.stats { background: var(--bg-2); padding: 100px 40px; }
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { padding: 32px 0; border-top: 1px solid var(--line); }
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Work / Cases */
.work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1200px;
}
.card {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-2);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color .4s;
  opacity: 0;
  transform: translateY(40px);
}
.card.case { transform-style: preserve-3d; will-change: transform, opacity; }
.card:hover { border-color: var(--accent); }
.card-num {
  position: absolute;
  top: 32px; left: 40px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.card-shape {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  filter: blur(40px);
  opacity: .5;
  transition: transform .8s cubic-bezier(.6,0,.2,1), opacity .8s;
}
.card:hover .card-shape { transform: translate(-50%, -50%) scale(1.4); opacity: .8; }
.case-kpi {
  font-family: "Playfair Display", serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.card > p { color: var(--muted); margin-bottom: 16px; position: relative; z-index: 1; }
.case-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

/* Testimonials */
.testimonials { background: var(--bg-2); }
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(40px);
}
.quote-stars { color: #ffc845; letter-spacing: 2px; font-size: 16px; }
.quote p {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.4;
  flex: 1;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--avatar, var(--accent));
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.quote footer div { display: flex; flex-direction: column; }
.quote footer strong { color: var(--fg); font-weight: 600; }
.quote footer span { color: var(--muted); }

/* Pricing */
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color .4s, transform .5s cubic-bezier(.6,0,.2,1);
  opacity: 0;
  transform: translateY(40px);
}
.plan:hover { border-color: var(--fg); transform: translateY(-4px); }
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, var(--bg-2)), var(--bg-2));
  transform: scale(1.02);
}
.plan.featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px; left: 40px;
  background: var(--accent);
  color: #111;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
}
.plan header h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
.plan header p { color: var(--muted); font-size: 14px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.plan-cta {
  margin-top: auto;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: color .35s;
}
.plan-cta span { transition: transform .35s; }
.plan-cta:hover { color: var(--accent); }
.plan-cta:hover span { transform: translateX(4px); }
.pricing-note {
  max-width: 1200px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Guarantee */
.guarantee { background: var(--bg-2); }
.guarantee-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-item {
  padding: 40px;
  border: 1px solid var(--accent-2);
  border-radius: 24px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-2) 10%, transparent), transparent);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px);
}
.g-icon {
  width: 48px; height: 48px;
  background: var(--accent-2);
  color: #0a0a0c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}
.g-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
}
.g-item p { color: var(--muted); }

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  cursor: none;
  transition: color .35s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transition: transform .35s cubic-bezier(.7,0,.2,1);
}
.faq-icon::before {
  width: 18px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 18px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon { transform: rotate(135deg); }
.faq-body {
  padding: 0 0 28px 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 200px 40px;
  position: relative;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: .35;
  z-index: 0;
}
.cta-title {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.95;
  font-weight: 500;
  margin: 24px 0 32px;
  z-index: 1;
}
.cta-title > span { display: block; }
.cta-title > span:nth-child(2) { font-style: italic; color: var(--accent); }
.cta-title .char { display: inline-block; }
.cta-sub {
  position: relative;
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 18px;
  z-index: 1;
}
.cta-sub strong { color: var(--fg); font-weight: 600; }
.cta-actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-mail {
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 40px 40px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 160px 240px;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a {
  font-size: 14px;
  color: var(--muted);
  transition: color .3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--fg); }
.footer-cta {
  margin-top: 8px;
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  transition: letter-spacing .3s !important;
}
.footer-cta:hover { letter-spacing: 0.06em !important; }
.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform .35s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulseWa 2s ease-out infinite;
}
@keyframes pulseWa {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 120%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 14px 14px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 90;
  transition: transform .5s cubic-bezier(.7,0,.2,1);
  max-width: calc(100vw - 100px);
}
.sticky-cta.is-visible { transform: translate(-50%, 0); }
.sticky-cta div {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.3;
}
.sticky-cta > div strong { color: var(--fg); font-weight: 600; }
.sticky-cta > div span { color: var(--muted); font-size: 12px; }
.sticky-cta .btn { padding: 12px 20px; font-size: 13px; }

@media (max-width: 900px) {
  .nav { padding: 14px 16px; }
  .nav-links { display: none; }
  .banner { font-size: 12px; padding: 10px 14px; flex-wrap: wrap; gap: 8px; }
  section { padding: 100px 20px; }
  .hero { padding: 40px 20px 60px; }
  .problem-grid, .services-grid, .work-grid, .testimonials-grid, .pricing-grid, .guarantee-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 60px 1fr; }
  .step-time { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-row { flex-direction: column; gap: 8px; text-align: center; }
  .sticky-cta { left: 16px; right: 16px; transform: translateY(120%); max-width: none; }
  .sticky-cta.is-visible { transform: translateY(0); }
  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-4px); }
  body, html { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  button, a, summary { cursor: pointer; }
  .btn { cursor: pointer; }
}
