/* ═══════════════════════════════════════════
   UGENCI — style.css
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fire: #E8430A;
  --fire-dim: rgba(232,67,10,0.18);
  --fire-glow: rgba(232,67,10,0.35);
  --bg: #0A0A0C;
  --surface: rgba(255,255,255,0.04);
  --surface-md: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.13);
  --text: rgba(255,255,255,0.92);
  --text-muted: rgba(255,255,255,0.45);
  --text-faint: rgba(255,255,255,0.25);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --nav-h: 64px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
  background: rgba(232,67,10,0.1);
  border: 1px solid rgba(232,67,10,0.22);
  border-radius: 100px;
  padding: 4px 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.fire { color: var(--fire); }

/* ── Lang Bar ── */
.lang-bar {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 1000;
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 3px;
  backdrop-filter: blur(12px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--fire);
  color: #fff;
}

/* ── Lang visibility ── */
[data-lang] { display: none; }
[data-lang].visible { display: block; }

/* ── Nav ── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
#main-nav.scrolled {
  background: rgba(10,10,12,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-right: auto;
}
.nav-logo span { color: var(--fire); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--fire);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
  transform-origin: left;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--fire);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #c93a09; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,12,0.97);
  backdrop-filter: blur(20px);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .mobile-cta {
  background: var(--fire);
  color: #fff;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 18px;
}
.mobile-menu-divider {
  width: 40px;
  height: 1px;
  background: var(--border-md);
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + 40px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,67,10,0.18) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,67,10,0.1) 0%, transparent 70%);
  bottom: 0; right: -100px;
  pointer-events: none;
  animation: blobPulse 10s ease-in-out infinite reverse;
}

@keyframes blobPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.hero-inner {
  max-width: 780px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,67,10,0.1);
  border: 1px solid rgba(232,67,10,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--fire);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232,67,10,0.5); }
  50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(232,67,10,0); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--fire);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s var(--ease-out);
  display: inline-block;
  box-shadow: 0 0 30px rgba(232,67,10,0.35);
}
.btn-primary:hover {
  background: #c93a09;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232,67,10,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-md);
  transition: all 0.25s;
  display: inline-block;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: var(--surface-md);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}
.marquee-track .dot {
  color: var(--fire);
  font-size: 10px;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── How It Works ── */
.how { background: var(--bg); }
.how-header { margin-bottom: 64px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s;
}
.step:hover { background: rgba(232,67,10,0.04); }

.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.07);
  margin-bottom: 20px;
  line-height: 1;
}
.step-num.fire-bg { color: var(--fire); }

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.steps-tnc {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 24px;
  line-height: 1.6;
}

/* ── What You Get ── */
.what { background: linear-gradient(180deg, var(--bg) 0%, rgba(232,67,10,0.04) 100%); }
.what > .container { display: flex; flex-direction: column; gap: 0; }
.what .section-title { margin-bottom: 48px; }

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}

.what-item {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.3s;
}
.what-item:hover { background: rgba(255,255,255,0.03); }

.what-icon {
  width: 40px; height: 40px;
  background: rgba(232,67,10,0.12);
  border: 1px solid rgba(232,67,10,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.what-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.what-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Video Showcase ── */
.showcase {
  padding: 100px 0;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showcase-header { text-align: center; margin-bottom: 56px; }
.showcase-header .section-sub { margin: 0 auto; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.video-slot {
  aspect-ratio: 9/16;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.35s var(--ease-out), border-color 0.25s;
  cursor: pointer;
}
.video-slot:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(232,67,10,0.4);
}
.video-slot iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.video-slot-icon { font-size: 32px; opacity: 0.3; }
.video-slot-label {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 500;
}

.showcase-note {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Pricing ── */
.pricing { background: var(--bg); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.plan:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
}
.plan.popular {
  border-color: var(--fire);
  background: rgba(232,67,10,0.05);
}

.popular-label {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--fire);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
.plan-price sup {
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  color: var(--fire);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

.plan-tnc {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-fire {
  background: var(--fire);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,67,10,0.35);
}
.btn-fire:hover {
  background: #c93a09;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232,67,10,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-md);
}
.btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: var(--surface-md);
}

/* ── Tooltip ── */
.tooltip-wrap {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  position: relative;
}
.tooltip-trigger {
  width: 17px; height: 17px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  font-family: var(--font-body);
  line-height: 1;
}
.tooltip-trigger:hover, .tooltip-trigger:focus {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  outline: none;
}
.tooltip-trigger.tooltip-light {
  background: rgba(232,67,10,0.15);
  border-color: rgba(232,67,10,0.3);
  color: var(--fire);
}

.tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1f;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  width: 230px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  z-index: 999;
  pointer-events: none;
  text-align: left;
}
.tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a1f;
}
.tooltip-wrap:hover .tooltip-box,
.tooltip-trigger:focus + .tooltip-box {
  display: block;
  animation: tooltipIn 0.18s var(--ease-out) forwards;
}
@keyframes tooltipIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── One-off & Addons ── */
.one-off {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.one-off-text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.one-off-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.one-off-price {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.one-off-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
.one-off-amount sup {
  font-size: 16px;
  vertical-align: top;
  margin-top: 7px;
  display: inline-block;
}
.btn-outline-sm {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-outline-sm:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

.addons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.addons-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.addon {
  background: var(--surface-md);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.addon-name {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  line-height: 1.4;
}
.addon-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--fire);
}

.ai-callout {
  text-align: center;
  padding: 24px 32px;
  background: rgba(232,67,10,0.06);
  border: 1px solid rgba(232,67,10,0.18);
  border-radius: var(--radius-lg);
}
.ai-callout p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ── Services ── */
.services-section { background: linear-gradient(180deg, rgba(232,67,10,0.04) 0%, var(--bg) 100%); }
.services-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover { transform: translateY(-3px); }

.service-available {
  background: var(--surface);
  border: 1px solid var(--border-md);
}
.service-soon {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}
.service-badge.available {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}
.service-badge.soon {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-faint);
}
.badge-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.service-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--fire);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-compare { margin-bottom: 20px; }
.compare-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.compare-no { color: var(--text-muted); }
.compare-no > span:first-child { color: rgba(255,100,80,0.7); font-weight: 700; flex-shrink: 0; }
.compare-yes { color: rgba(255,255,255,0.8); }
.compare-yes > span:first-child { color: #4ade80; font-weight: 700; flex-shrink: 0; }

.service-cta {
  display: inline-block;
  margin-top: auto;
  padding: 11px 20px;
  background: transparent;
  border: 1.5px solid rgba(232,67,10,0.4);
  border-radius: var(--radius-sm);
  color: var(--fire);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s;
  width: 100%;
  text-align: center;
}
.service-cta:hover {
  background: rgba(232,67,10,0.1);
  border-color: var(--fire);
}

.service-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.service-tiers li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pre-reg box */
.prereg-box {
  background: rgba(232,67,10,0.08);
  border: 1px solid rgba(232,67,10,0.2);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  margin-top: auto;
}
.prereg-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
}
.prereg-row {
  display: flex;
  gap: 8px;
  max-width: 380px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.prereg-input {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.prereg-input:focus { border-color: var(--fire); }
.prereg-btn {
  background: var(--fire);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.2s;
}
.prereg-btn:hover { background: #c93a09; }
.prereg-note {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ── For Whom ── */
.whom { background: var(--bg); }
.whom > .container { display: flex; flex-direction: column; gap: 48px; }
.whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.whom-card {
  border-radius: var(--radius-lg);
  padding: 32px;
}
.whom-yes {
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.18);
}
.whom-no {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.whom-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.whom-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.whom-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.whom-yes .whom-check { color: #4ade80; font-weight: 700; flex-shrink: 0; }
.whom-no .whom-check { color: rgba(255,100,80,0.7); font-weight: 700; flex-shrink: 0; }

/* ── Social Proof ── */
.proof {
  padding: 100px 0;
  background: rgba(232,67,10,0.04);
  border-top: 1px solid var(--border);
}
.proof-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 48px;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.quote:hover {
  transform: translateY(-3px);
  border-color: rgba(232,67,10,0.3);
}
.quote-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-av {
  width: 38px; height: 38px;
  background: var(--fire-dim);
  border: 1px solid rgba(232,67,10,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--fire);
  font-size: 15px;
  flex-shrink: 0;
}
.quote-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.quote-biz {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-header { margin-bottom: 48px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.faq-q:hover { color: #fff; }
.faq-q.open { color: #fff; }
.faq-arrow {
  width: 28px; height: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
  color: var(--text-muted);
}
.faq-q.open .faq-arrow {
  background: var(--fire);
  border-color: var(--fire);
  transform: rotate(45deg);
  color: #fff;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 22px;
  padding-right: 48px;
}

/* ── CTA Section ── */
.cta-section {
  padding: 120px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,67,10,0.16) 0%, transparent 70%),
              var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,67,10,0.12) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-inner { text-align: center; position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-form {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
}

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--fire);
  background: rgba(232,67,10,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-select option { background: #1a1a1f; color: #fff; }
.form-textarea { height: 110px; resize: vertical; line-height: 1.6; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 16px;
}

.form-submit {
  width: 100%;
  background: var(--fire);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s var(--ease-out);
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(232,67,10,0.35);
}
.form-submit:hover {
  background: #c93a09;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232,67,10,0.45);
}
.form-submit:active { transform: translateY(0); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

/* ── Footer ── */
footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
.footer-logo span { color: var(--fire); }
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 16px;
  margin: 8px 0;
}
.footer-social-link {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  transform: translateY(-2px);
}
.footer-brand-note {
  font-size: 12px;
  color: var(--text-faint);
}
.footer-legal {
  font-size: 12px;
  color: var(--text-faint);
}
.footer-legal a {
  color: var(--text-faint);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ── GSAP initial states ── */
[data-gsap="fade-up"],
[data-gsap="hero-title"],
[data-gsap="fade-up-delay"],
[data-gsap="fade-up-delay2"],
[data-gsap="fade-up-delay3"] {
  opacity: 0;
  transform: translateY(30px);
}
[data-gsap="scroll-fade"] { opacity: 0; transform: translateY(40px); }
[data-gsap="step"] { opacity: 0; transform: translateY(30px); }
[data-gsap="plan-card"] { opacity: 0; transform: translateY(30px); }
[data-gsap="video-card"] { opacity: 0; transform: scale(0.95) translateY(20px); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-bar { top: 68px; right: 12px; }

  .hero { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 60px; }
  .hero-stats {
    gap: 24px;
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 20px;
  }
  .hero-stats .stat-item { display: flex; align-items: center; gap: 12px; text-align: left; }
  .stat-num { font-size: 18px; }

  .steps { grid-template-columns: 1fr; }
  .step { border-radius: 0 !important; }

  .what-grid { grid-template-columns: 1fr; }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pricing-grid { max-width: 100%; }
  .plan.popular { margin-top: 16px; }

  .addons-grid { grid-template-columns: 1fr 1fr; }

  .one-off {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-grid { grid-template-columns: 1fr; }

  .whom-grid { grid-template-columns: 1fr; }

  .cta-form { padding: 24px 20px; }

  .tooltip-box { width: 200px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(32px, 10vw, 48px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  .video-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .addons-grid { grid-template-columns: 1fr; }
  .prereg-row { flex-direction: column; }
  .prereg-input { width: 100%; }

  .marquee-track { gap: 18px; }
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(232,67,10,0.4); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--fire); }

/* ── Selection ── */
::selection { background: rgba(232,67,10,0.3); color: #fff; }

/* ── Focus visible ── */
:focus-visible { outline: 2px solid var(--fire); outline-offset: 3px; }
