:root {
  --black: #080810;
  --charcoal: #0f0f1a;
  --orange: #FF6B00;
  --orange-dim: #ff6b0018;
  --orange-glow: #ff6b0040;
  --white: #f0eff5;
  --muted: #5a5a6e;
  --border: #ffffff08;
  --border-bright: #ffffff14;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .4;
  transition: width .2s, height .2s, opacity .2s;
}
.cursor.expand { width: 18px; height: 18px; }
.cursor-ring.expand { width: 54px; height: 54px; opacity: .8; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .7;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 165px 165px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6b0018 0%, transparent 65%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--orange);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 8.5vw, 8rem);
  line-height: .92;
  letter-spacing: -.04em;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero-headline em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-headline em.glitch {
  animation: glitch .08s steps(1) 3;
}

.hero-sub {
  margin-top: 36px;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

.hero-stats {
  margin-top: 80px;
  display: flex;
  gap: 56px;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
}
.stat-item {}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.hero-line {
  position: absolute;
  bottom: 40px; left: 6vw;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .8s 1.3s forwards;
  z-index: 2;
}
.hero-line span {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.line-bar {
  width: 44px; height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.line-bar::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--orange);
  animation: slideRight 2.2s 1.5s infinite;
}

/* Scan line overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.03) 2px,
    rgba(0,0,0,.03) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--orange-glow); }
.btn-primary:hover::after { opacity: .08; }

.btn-ghost {
  color: var(--muted);
  font-size: .83rem;
  text-decoration: none;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '↓'; }

.btn-outline {
  border: 1px solid var(--border-bright);
  color: var(--muted);
  padding: 15px 32px;
  border-radius: 2px;
  font-size: .83rem;
  text-decoration: none;
  letter-spacing: .06em;
  transition: border-color .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--white); }

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
  padding: 16px 0;
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-item span { color: var(--orange); font-size: .9rem; }

/* ── SECTION BASE ── */
.section { padding: 120px 6vw; }
.section-label {
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 64px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-bright);
  border: 1px solid var(--border-bright);
}
.service-card {
  background: var(--black);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height .4s ease;
}
.service-card:hover { background: #0d0d18; }
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: .6;
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.service-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  max-width: 36ch;
}
.service-arrow {
  position: absolute;
  bottom: 36px; right: 36px;
  color: var(--orange);
  font-size: 1.3rem;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .3s, transform .3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translate(0,0); }

/* ── WORK ── */
.work-section { padding: 120px 6vw; background: var(--charcoal); }
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  margin-top: 64px;
}
.work-card {
  background: var(--black);
  border: 1px solid var(--border-bright);
  overflow: hidden;
}
.work-card-inner { padding: 44px; }
.work-tag {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
  border: 1px solid #ff6b0028;
}
.work-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.work-desc {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  max-width: 38ch;
}
.work-meta {
  margin-top: 36px;
  display: flex;
  gap: 32px;
}
.work-stat-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.work-stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.work-visual {
  height: 180px;
  background: linear-gradient(135deg, #0f0f1a 0%, #080810 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border-bright);
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff06;
  letter-spacing: -.04em;
  position: relative;
  overflow: hidden;
}
.work-visual-accent {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6b001a 0%, transparent 70%);
}
.work-side { display: flex; flex-direction: column; gap: 20px; }
.work-card-sm {
  background: var(--black);
  border: 1px solid var(--border-bright);
  padding: 36px;
  flex: 1;
  position: relative;
}
.work-card-sm::after {
  content: 'CONCEPT';
  position: absolute;
  top: 16px; right: 16px;
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--muted);
  opacity: .4;
}
.work-card-sm .work-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.work-card-sm .work-desc { font-size: .83rem; }

/* ── PROCESS ── */
.process-list {
  border: 1px solid var(--border-bright);
  margin-top: 64px;
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  padding: 36px 44px;
  border-bottom: 1px solid var(--border-bright);
  transition: background .25s;
  cursor: default;
}
.process-item:last-child { border-bottom: none; }
.process-item:hover { background: #0d0d18; }
.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff08;
  letter-spacing: -.04em;
  transition: color .3s;
}
.process-item:hover .process-num { color: var(--orange); opacity: .25; }
.process-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.process-content p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
  max-width: 52ch;
}
.process-tag {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-bright);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.why-icon { font-size: 1.6rem; margin-bottom: 20px; }
.why-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}
.why-text { color: var(--muted); font-size: .86rem; line-height: 1.75; }

/* ── CTA LAYOUT ── */
.cta-section {
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, #ff6b000a 0%, transparent 70%);
  pointer-events: none;
}
.cta-left { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.cta-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.04em;
  line-height: .96;
  margin-bottom: 20px;
}
.cta-sub {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 38ch;
}

/* ── OFFER DEADLINE TIMER ── */
.offer-deadline {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-bright);
}
.offer-deadline-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
.offer-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── LEAD FORM ── */
.lead-form-wrap { position: relative; z-index: 1; }
.lead-form-card {
  background: var(--charcoal);
  border: 1px solid var(--border-bright);
  border-top: 2px solid var(--orange);
  padding: 40px;
}
.lead-form-header { margin-bottom: 28px; }

.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.form-required { color: var(--orange); }
.form-input {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border-bright);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  appearance: none;
}
.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: var(--muted); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a6e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-select option { background: var(--charcoal); color: var(--white); }

.checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid var(--border-bright);
  background: var(--black);
  transition: border-color .2s, background .2s;
}
.check-item:hover { border-color: #ffffff22; }
.check-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.check-item.checked {
  border-color: var(--orange);
  background: var(--orange-dim);
}
.check-item span {
  font-size: .86rem;
  color: var(--muted);
  transition: color .2s;
}
.check-item.checked span { color: var(--white); }

.form-note {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: .02em;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.form-success p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* Loading state */
.btn-loading {
  opacity: .6;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 6vw 120px;
  }
}



/* ── FOOTER ── */
footer {
  padding: 44px 6vw;
  border-top: 1px solid var(--border-bright);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: .78rem; color: var(--muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .15s forwards;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff08;
  border: 1px solid var(--border-bright);
  padding: 8px 14px;
  border-radius: 2px;
  min-width: 56px;
}
.countdown-unit span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: var(--orange);
  line-height: 1;
}
.countdown-unit small {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.countdown-sep {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 12px;
}


.hero-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid #ff6b0030;
  color: var(--orange);
  font-size: .75rem;
  letter-spacing: .08em;
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .1s forwards;
}

/* ── URGENCY CARD ── */
.hero-urgency-card {
  position: absolute;
  bottom: 60px;
  right: 6vw;
  z-index: 10;
  background: #0f0f1acc;
  border: 1px solid #ffffff12;
  border-left: 3px solid var(--orange);
  padding: 28px 32px;
  width: 375px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s 1.4s forwards;
  backdrop-filter: blur(12px);
}
.urgency-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.urgency-live {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.urgency-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.urgency-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.urgency-sub span { color: var(--white); font-weight: 500; }
.urgency-timer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 22px;
}
.urgency-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff06;
  border: 1px solid var(--border-bright);
  padding: 8px 14px;
  min-width: unset;
  width: auto;
}
.urgency-time-block span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}
.urgency-time-block small {
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}
.urgency-sep {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
  padding-bottom: 10px;
}
.urgency-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px;
  text-decoration: none;
  transition: opacity .2s;
  width: 100%;
}
.urgency-cta:hover { opacity: .85; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.5); }
}

/* Mobile — card slides up from bottom as a banner */
@media (max-width: 768px) {
  .hero-urgency-card {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-left: none;
    border-top: 2px solid var(--orange);
    border-radius: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    animation: slideUp .6s 1.8s forwards;
    opacity: 0;
    transform: translateY(100%);
    z-index: 200;
  }
  .urgency-top { margin-bottom: 0; flex-shrink: 0; }
  .urgency-title { font-size: .9rem; margin-bottom: 0; }
  .urgency-sub { display: none; }
  .urgency-timer { margin-bottom: 0; gap: 4px; flex-shrink: 0; }
  .urgency-time-block { min-width: unset; padding: 5px 8px; }
  .urgency-time-block span { font-size: 1rem; }
  .urgency-cta {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 16px;
    margin-left: auto;
    font-size: .7rem;
  }
  .urgency-content-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PROCESS HIGHLIGHT ── */
.process-item--highlight {
  background: #0d0d18;
  border-left: 3px solid var(--orange);
}
.process-item--highlight .process-num { color: var(--orange); opacity: .25; }

.process-free-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: middle;
  font-family: 'Syne', sans-serif;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ── */
@keyframes urgencyFadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes slideRight {
  from { left: -100%; }
  to   { left: 100%; }
}
@keyframes pulseGlow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50%       { transform: translateY(-50%) scale(1.15); opacity: .6; }
}
@keyframes glitch {
  0%   { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 0); }
  25%  { clip-path: inset(60% 0 10% 0); transform: translate(4px, 0); }
  50%  { clip-path: inset(40% 0 30% 0); transform: translate(-2px, 0); }
  75%  { clip-path: inset(10% 0 70% 0); transform: translate(2px, 0); }
  100% { clip-path: inset(0); transform: translate(0, 0); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 50px 1fr; }
  .process-tag { display: none; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
}

/* ── CALENDLY POPUP ── */
.calendly-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}
.calendly-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.calendly-modal {
  background: var(--charcoal);
  border: 1px solid var(--border-bright);
  border-top: 2px solid var(--orange);
  width: 90%;
  max-width: 580px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(24px);
  transition: transform .3s ease;
}
.calendly-overlay.active .calendly-modal {
  transform: translateY(0);
}
.calendly-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: color .2s;
  padding: 4px 8px;
}
.calendly-close:hover { color: var(--white); }
.calendly-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--border-bright);
  flex-shrink: 0;
}
.calendly-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.calendly-sub {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}
.calendly-embed {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.calendly-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}
.calendly-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  background: var(--charcoal);
}
.placeholder-icon { font-size: 2.4rem; margin-bottom: 16px; }
.placeholder-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.placeholder-sub {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
  max-width: 36ch;
}
.placeholder-sub code {
  background: #ffffff10;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: .78rem;
  color: var(--orange);
}
@media (max-width: 768px) {
  .calendly-modal { max-width: 100%; max-height: 92vh; }
  .calendly-header { padding: 28px 24px 20px; }
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-bright);
  border: 1px solid var(--border-bright);
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background .3s;
}
.pricing-card:hover { background: #0d0d18; }

.pricing-card--featured {
  background: #0d0d18;
  border-top: 2px solid var(--orange);
  margin-top: -1px;
}
.pricing-card--featured:hover { background: #111120; }

.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
}
.pricing-card--featured .pricing-amount { color: var(--orange); }
.pricing-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-bright);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-features li {
  font-size: .84rem;
  color: var(--white);
  line-height: 1.4;
}
.pricing-feature--no { color: var(--muted) !important; opacity: .5; }
.pricing-cta {
  display: block;
  text-align: center;
  border: 1px solid var(--border-bright);
  color: var(--muted);
  padding: 13px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  margin-top: auto;
}
.pricing-cta:hover { border-color: var(--orange); color: var(--white); }
.pricing-cta--featured {
  background: var(--orange);
  color: var(--black) !important;
  border-color: var(--orange);
}
.pricing-cta--featured:hover { opacity: .88; }
.pricing-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-note strong { color: var(--white); font-weight: 500; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { margin-top: 0; }
}

/* ═══════════════════════════════════════
   PREMIUM UPGRADE LAYER
   ═══════════════════════════════════════ */

/* Better font import — add Clash Display for ultra-premium headings */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&display=swap');

:root {
  --orange: #FF5C00;
  --orange-dim: #ff5c0014;
  --orange-glow: #ff5c0035;
  --muted: #636375;
  --muted-light: #8888a0;
  --border-bright: #ffffff18;
  --surface: #0c0c18;
  --glass: rgba(255,255,255,0.03);
}

/* ── PREMIUM NAV ── */
nav {
  padding: 20px 5vw;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #ffffff08;
  background: rgba(8,8,16,0.6);
}
nav::after { display: none; }

.nav-logo {
  font-size: 1.3rem;
  letter-spacing: .04em;
}

.nav-links { gap: 36px; align-items: center; }
.nav-links a {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--muted-light);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--orange) !important;
  color: var(--orange) !important;
  padding: 9px 22px !important;
  letter-spacing: .1em !important;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: #000 !important;
}
.nav-cta::after { display: none !important; }

/* ── PREMIUM HERO TYPOGRAPHY ── */
.hero-label {
  font-size: .65rem;
  letter-spacing: .28em;
  color: var(--orange);
  opacity: .9;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--orange);
  opacity: .6;
}

.hero-headline {
  font-size: clamp(4rem, 8.5vw, 9rem);
  line-height: .92;
  letter-spacing: -.05em;
  font-weight: 800;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-light);
  max-width: 46ch;
  margin-bottom: 44px;
  font-weight: 300;
}

/* ── PREMIUM BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-101%);
  transition: transform .3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
  color: var(--muted-light);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.btn-ghost::after {
  content: '→';
  transition: transform .2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-outline {
  border: 1px solid var(--border-bright);
  color: var(--muted-light);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── PREMIUM STATS ── */
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-bright);
  width: fit-content;
  margin-top: 64px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.stat-item {
  padding: 20px 36px;
  border-right: 1px solid var(--border-bright);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--orange);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PREMIUM SECTION LABELS ── */
.section-label {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--orange);
  opacity: .5;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  letter-spacing: -.04em;
  line-height: .96;
  margin-bottom: 0;
}

/* ── PREMIUM MARQUEE ── */
.marquee-strip {
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
  background: var(--surface);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.marquee-item span { color: var(--orange); font-size: .5rem; }

/* ── PREMIUM SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--border-bright);
  border: 1px solid var(--border-bright);
}
.service-card {
  background: var(--black);
  padding: 52px 48px 52px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--orange);
  transition: height .4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 100%, #ff5c0008 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover { background: #0a0a16; }
.service-card:hover::before { height: 100%; }
.service-card:hover::after { opacity: 1; }

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--orange);
  margin-bottom: 32px;
  opacity: .7;
}
.service-name {
  font-size: 1.35rem;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.service-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 38ch;
}
.service-arrow {
  bottom: 40px; right: 44px;
  font-size: 1.1rem;
}

/* ── PREMIUM WORK CARDS ── */
.work-card-sm {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  padding: 40px;
  transition: border-color .3s, background .3s;
}
.work-card-sm:hover {
  border-color: #ffffff28;
  background: #0e0e1c;
}
.work-card-sm::after { display: none; }
.work-card-sm .work-title { font-size: 1.15rem; }

/* ── PREMIUM PROCESS ── */
.process-list {
  border: 1px solid var(--border-bright);
  margin-top: 72px;
  background: var(--surface);
}
.process-item {
  padding: 40px 52px;
  border-bottom: 1px solid var(--border-bright);
  transition: background .25s, border-color .25s;
}
.process-item:hover {
  background: #0d0d1c;
  border-color: #ffffff1e;
}
.process-num {
  font-size: 1.6rem;
  color: #ffffff06;
  transition: color .3s, opacity .3s;
}
.process-item--highlight {
  background: #0d0d1c;
  border-left: 2px solid var(--orange);
}
.process-item--highlight .process-num { color: var(--orange); opacity: .2; }
.process-tag {
  font-size: .62rem;
  letter-spacing: .12em;
  padding: 7px 16px;
  border-radius: 0;
  border: 1px solid var(--border-bright);
  background: var(--glass);
}

/* ── PREMIUM WHY CARDS ── */
.why-grid { gap: 1px; background: var(--border-bright); margin-top: 72px; }
.why-card {
  background: var(--surface);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.why-card:hover { background: #0d0d1c; }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 1.4rem; margin-bottom: 24px; }
.why-title { font-size: 1rem; letter-spacing: -.01em; margin-bottom: 14px; }
.why-text { font-size: .86rem; line-height: 1.8; color: var(--muted); }

/* ── PREMIUM PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-bright);
  border: 1px solid var(--border-bright);
  margin-top: 72px;
}
.pricing-card {
  background: var(--surface);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .3s;
}
.pricing-card:hover { background: #0d0d1c; }

.pricing-card--featured {
  background: #0d0d1e;
  border-top: 2px solid var(--orange);
}
.pricing-card--featured:hover { background: #0e0e22; }

.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 28px;
  width: fit-content;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-amount { color: var(--orange); }

.pricing-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-bright);
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: .84rem;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before { display: none; }
.pricing-feature--no { color: var(--muted) !important; opacity: .4; }

.pricing-cta {
  display: block;
  text-align: center;
  border: 1px solid var(--border-bright);
  color: var(--muted-light);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  margin-top: auto;
}
.pricing-cta:hover { border-color: var(--orange); color: var(--orange); }
.pricing-cta--featured {
  background: var(--orange);
  border-color: var(--orange);
  color: #000 !important;
}
.pricing-cta--featured:hover { opacity: .88; color: #000 !important; }

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  margin-top: 32px;
  letter-spacing: .02em;
}
.pricing-note strong { color: var(--muted-light); }

/* ── PREMIUM FOOTER ── */
footer {
  border-top: 1px solid var(--border-bright);
  padding: 36px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
  color: var(--white);
}
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

/* ── SCROLL REVEAL REFINEMENT ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── URGENCY CARD CLOSE ── */
.urgency-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .75rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color .2s;
  z-index: 10;
}
.urgency-close:hover { color: var(--white); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  left: unset;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg {
  width: 26px; height: 26px;
  color: #fff;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}
@media (max-width: 768px) {
  .wa-float { bottom: 24px; right: 20px; left: unset; width: 48px; height: 48px; }
  .wa-float svg { width: 23px; height: 23px; }
}

/* ═══════════════════════════════════════
   MOBILE PREMIUM FIX
   ═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 16px 5vw; }
  .nav-links {
    gap: 0;
  }
  .nav-links li:not(:last-child) { display: none; }
  .nav-cta { padding: 8px 18px !important; font-size: .65rem !important; }

  /* HERO */
  .hero { padding: 100px 5vw 60px; min-height: 100svh; }
  .hero-label { font-size: .6rem; margin-bottom: 20px; }
  .hero-headline {
    font-size: clamp(3rem, 14vw, 4.5rem);
    letter-spacing: -.04em;
    line-height: .94;
    margin-bottom: 24px;
  }
  .hero-sub {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }
  .btn-primary {
    padding: 14px 22px;
    font-size: .68rem;
    white-space: nowrap;
  }
  .btn-ghost { font-size: .68rem; white-space: nowrap; }

  /* STATS */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 40px;
  }
  .stat-item { padding: 16px 12px; border-right: 1px solid var(--border-bright); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: .55rem; letter-spacing: .1em; }

  /* URGENCY CARD — mobile bottom banner */
  .hero-urgency-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-left: none !important;
    border-top: 2px solid var(--orange) !important;
    border-radius: 0 !important;
    padding: 14px 20px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 200 !important;
    background: rgba(10,10,20,0.98) !important;
    backdrop-filter: blur(16px) !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .urgency-close {
    position: absolute !important;
    top: 10px !important;
    right: 12px !important;
  }
  .urgency-top { margin-bottom: 2px; }
  .urgency-live { font-size: .58rem; }
  .urgency-title { font-size: 1rem; margin-bottom: 0; }
  .urgency-sub { display: none; }
  .urgency-content-wrap { grid-column: 1; }
  .urgency-timer {
    grid-column: 2;
    margin-bottom: 0 !important;
    gap: 4px !important;
  }
  .urgency-time-block { padding: 5px 7px !important; }
  .urgency-time-block span { font-size: 1rem !important; }
  .urgency-time-block small { font-size: .45rem !important; }
  .urgency-sep { font-size: .8rem; }
  .urgency-cta { display: none !important; }

  /* MARQUEE */
  .marquee-item { font-size: .62rem; padding: 0 32px; }

  /* SERVICES — single column */
  .services-grid {
    grid-template-columns: 1fr !important;
    margin-top: 40px;
  }
  .service-card { padding: 36px 28px; }
  .service-name { font-size: 1.2rem; }
  .service-desc { font-size: .86rem; max-width: 100%; }
  .service-arrow { display: none; }

  /* SECTION */
  .section { padding: 80px 5vw; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .work-section { padding: 80px 5vw; }

  /* WORK */
  .work-grid { grid-template-columns: 1fr !important; }
  .work-side { gap: 16px; }
  .work-card-sm { padding: 28px; }

  /* PROCESS */
  .process-item {
    grid-template-columns: 48px 1fr !important;
    padding: 28px 20px !important;
    gap: 16px;
  }
  .process-tag { display: none; }
  .process-num { font-size: 1.2rem; }
  .process-content h3 { font-size: .95rem; }
  .process-content p { font-size: .82rem; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr !important; gap: 1px; }
  .why-card { padding: 36px 28px; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card { padding: 36px 28px; }
  .pricing-amount { font-size: 2rem; }

  /* CTA SECTION */
  .cta-section {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 80px 5vw 100px !important;
  }
  .cta-headline { font-size: clamp(2rem, 8vw, 3rem); }

  /* FORM */
  .lead-form-card { padding: 28px 20px; }
  .check-item { padding: 10px 12px; }

  /* FOOTER */
  footer {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
    padding: 32px 5vw 80px !important;
  }
  .footer-links { gap: 20px; }

  /* WA FLOAT — above urgency card */
  .wa-float {
    bottom: 90px !important;
    right: 20px !important;
  }
}
