:root {
  --bg-dark: #0D0D12;
  --bg-darker: #08080C;
  --bg-light: #F8F5F0;
  --bg-light-alt: #F0ECE6;
  --accent: #00E87B;
  --accent-hover: #33FFAA;
  --accent-glow: rgba(0, 232, 123, 0.4);
  --accent-subtle: rgba(0, 232, 123, 0.1);
  --accent-on-light: #059669;
  --text-white: #FFFFFF;
  --text-light: #E5E5E5;
  --text-dim: #A3A3A3;
  --text-muted: #8A8A8A;
  --text-dark: #1A1A2E;
  --text-dark-dim: #4A4A5A;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --border-light: rgba(0, 0, 0, 0.08);
  --font-display: 'Clash Display', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --max-width: 1200px;
  --section-pad: clamp(5rem, 10vw, 8rem);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* ============ LAYOUT ============ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--section-pad) 0;
}

.section-darker {
  background: var(--bg-darker);
  color: var(--text-white);
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: var(--section-pad) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-title-center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

.section-subtitle-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-subtitle,
.section-darker .section-subtitle {
  color: var(--text-dim);
}

.section-light .section-subtitle {
  color: var(--text-dark-dim);
}

.section-light {
  --accent: var(--accent-on-light);
  --accent-glow: rgba(5, 150, 105, 0.2);
  --accent-subtle: rgba(5, 150, 105, 0.08);
}

/* ============ GLASS ============ */

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.glass:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.glass-static {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ============ BUTTONS ============ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent);
  color: #0D0D12;
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0, 232, 123, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-secondary .arrow {
  transition: transform 0.2s;
}

.btn-secondary:hover .arrow {
  transform: translateX(4px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: var(--text-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-dark:hover {
  background: #2a2a3e;
  transform: translateY(-2px);
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s, transform 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav.nav-scrolled {
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.625rem 0;
  border-bottom-color: var(--glass-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  background: var(--bg-darker);
  border: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  font-size: 0.85rem;
}

.nav-dropdown-menu a:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.nav-dropdown-menu a:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.nav-dropdown-menu a:not(:last-child) {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 232, 123, 0.08);
  color: var(--accent);
}

.nav-cta {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  transition: transform 0.3s, opacity 0.3s;
}

body.menu-open .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(13, 13, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* ============ HERO ============ */

.hero-section {
  position: relative;
}

.hero-scroll-spacer {
  height: 400vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--bg-darker);
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
}

#hero-video.loaded {
  opacity: 1;
}

.hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 232, 123, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(0, 232, 123, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-darker) 0%, rgba(13, 13, 18, 0.6) 50%, var(--bg-dark) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(0, 232, 123, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-proof {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-align: center;
}

.scroll-hint {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.4s;
}

.scroll-hint.hidden { opacity: 0; }

.scroll-hint svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  opacity: 0.5;
  animation: bounce-arrow 2s ease infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============ SECTION LABEL ============ */

.section-label {
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.booking-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ CLIENT MARQUEE ============ */

.marquee-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee-content span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.marquee-content span::after {
  content: '\00B7';
  margin-left: 2rem;
  color: var(--accent);
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ STATS ============ */

.stats-section {
  padding: 4rem 0;
}

.stats-section .container {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * clamp(1rem, 3vw, 2.5rem));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark-dim);
  margin-top: 0.5rem;
  font-weight: 500;
}

@media (max-width: 639px) {
  .stat-item:not(:last-child)::after { display: none; }
  .stats-section .container { gap: 2rem; }
}

/* ============ SERVICES ============ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}

.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card:hover {
  cursor: pointer;
}

.service-link:hover {
  gap: 0.625rem;
}

/* ============ HOW IT WORKS ============ */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: var(--accent);
    opacity: 0.25;
    pointer-events: none;
  }
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ============ RESULTS / PORTFOLIO ============ */

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-card {
  overflow: hidden;
  position: relative;
}

.result-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255,107,44,0.1), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}

.result-preview-icon {
  aspect-ratio: 16 / 12;
}

.result-preview-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.result-info {
  padding: 1.5rem;
}

.result-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.result-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* ============ CASE STUDY ============ */

.case-study {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.case-study-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.case-study-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-study-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.case-study-subtitle {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.6;
}

.case-study-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .case-study-body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.case-study-problem,
.case-study-solution,
.case-study-results {
  padding: 2rem 2.5rem;
}

.case-study-problem {
  background: #fafafa;
}

.case-study-solution {
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

@media (max-width: 767px) {
  .case-study-solution {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
}

.case-study-body h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.case-study-body p {
  font-size: 0.9rem;
  color: var(--text-dark-dim);
  line-height: 1.7;
}

.case-study-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-metric {
  display: flex;
  flex-direction: column;
}

.case-metric-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.case-metric-label {
  font-size: 0.8rem;
  color: var(--text-dark-dim);
}

/* ============ TESTIMONIAL QUOTE ============ */

.testimonial-quote {
  text-align: center;
  margin: 3rem 0 0;
}

.testimonial-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent-on-light);
  margin: 0;
  line-height: 1.5;
}

.testimonial-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-dark-dim);
  font-style: normal;
  letter-spacing: 0.02em;
}

/* ============ TRUST GRID ============ */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.trust-icon {
  margin-bottom: 1.25rem;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.7;
}

/* ============ DEMO SECTION ============ */

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.demo-content p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #22C55E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  position: relative;
}

.live-dot::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.3);
  animation: live-ping 2s ease infinite;
}

@keyframes live-ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.demo-widget {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.demo-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-light);
}

.demo-feature-item svg {
  flex-shrink: 0;
}

/* ============ BOOKING ============ */

.booking-section {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
}

.cal-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
}

.cal-embed-wrapper > div {
  width: 100%;
  height: 700px;
  overflow: auto;
}

@media (max-width: 639px) {
  .cal-embed-wrapper > div {
    height: 500px;
  }
}

/* ============ CTA SECTION ============ */

.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg-darker);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============ FAQ ============ */

.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.faq-question svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============ FOOTER ============ */

.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand-name {
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-white);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  color: var(--text-white);
  border-color: var(--glass-border-hover);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-white);
}

/* ============ REVEAL ANIMATION ============ */

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ============ LEGAL PAGES ============ */

.legal-page {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-white);
}

.legal-nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.legal-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.legal-nav a span {
  color: var(--accent);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content section {
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent-hover);
}

.legal-content strong {
  color: var(--text-white);
  font-weight: 600;
}

/* ============ SERVICE PAGE HERO ============ */

.service-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: var(--section-pad);
  text-align: center;
}

.service-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.service-hero-title .accent {
  color: var(--accent);
}

.service-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ PILLAR GRID ============ */

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0D0D12;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pillar-result {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pillar-metric {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.pillar-metric-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============ PROBLEM GRID ============ */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 2rem;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.7;
}

/* ============ GLASS LIGHT ============ */

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.glass-light:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ============ INCLUDED GRID ============ */

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.included-item span {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============ CASE STUDY ============ */

.case-study-block {
  max-width: 800px;
  margin: 3rem auto 0;
}

.case-study-context {
  margin-bottom: 2rem;
}

.case-study-context h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.case-study-context p {
  font-size: 1rem;
  color: var(--text-dark-dim);
  line-height: 1.7;
}

.case-study-problem,
.case-study-solution {
  margin-bottom: 2rem;
}

.case-study-problem h4,
.case-study-solution h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.case-study-problem p,
.case-study-solution p {
  font-size: 1rem;
  color: var(--text-dark-dim);
  line-height: 1.7;
}

.case-study-problem em {
  font-style: italic;
  color: var(--text-dark);
}

.case-study-results {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
  background: rgba(5, 150, 105, 0.06);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.case-study-stat {
  text-align: center;
}

.case-study-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.case-study-stat-label {
  font-size: 0.8rem;
  color: var(--text-dark-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-quote {
  text-align: center;
  padding: 2rem;
  border-left: none;
  margin: 0;
}

.case-study-quote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.case-study-quote cite {
  font-size: 0.9rem;
  color: var(--text-dark-dim);
  font-style: normal;
}

/* ============ USE CASES ============ */

.use-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  .use-case-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.use-case-card {
  padding: 1.5rem;
}

.use-case-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.use-case-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============ EXAMPLE CARDS ============ */

.example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .example-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.example-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.example-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.example-content {
  flex: 1;
}

.example-message {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.example-result {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* ============ PROCESS STEPS (DARK BG VARIANT) ============ */

.process-steps-dark .process-step h3 {
  color: var(--text-white);
}

.process-steps-dark .process-step p {
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .process-steps-dark::before {
    background: var(--accent);
  }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .services-grid,
  .trust-grid {
    gap: 1rem;
  }

  .demo-grid {
    text-align: center;
  }

  .service-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .case-study-results {
    flex-direction: column;
    gap: 1.5rem;
  }

  .case-study-quote p {
    font-size: 1.2rem;
  }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track { animation: none; }
  .scroll-hint svg { animation: none; }
  .hero-badge .dot { animation: none; }
  .live-dot::before { animation: none; }
  .glass:hover { transform: none; }
  .btn-primary:hover, .btn-secondary:hover, .btn-dark:hover { transform: none; }
  .trust-card:hover { transform: none; }
}
