/* =====================================================
   LTP CONSULTING — STYLESHEET
   Dark futuristic theme | Custom animations
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --bg: #FAFAF7;
  --bg-2: #F2EAD5;

  --surface: rgba(0, 0, 0, 0.03);
  --surface-h: rgba(0, 0, 0, 0.06);
  --cyan: #b38346;
  --cream: #830032;
  --cyan-dim: rgba(184, 134, 11, 0.10);
  --cyan-glow: rgba(184, 134, 11, 0.25);
  --purple: #1E4A8C;
  --purple-dim: rgba(30, 74, 140, 0.10);
  --purple-glow: rgba(30, 74, 140, 0.25);
  --grad: linear-gradient(135deg, #b38346 0%, #1E4A8C 100%);
  --grad-text: linear-gradient(135deg, #d49112 0%, #b38346 60%, #7A5C00 100%);
  --text: #1C1710;
  --text-2: #6B6050;
  --text-3: #A09080;
  --text-4: #ffffff;
  --border: rgba(0, 0, 0, 0.10);
  --border-c: rgba(184, 134, 11, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-d: 'Space Grotesk', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 3px;
}

/* cursor glow removed */

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-bottom 0.4s;
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  z-index: 101;
}

.nav-logo span {
  color: var(--cyan);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--bg) !important;
  background: var(--cyan);
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #C9960D !important;
  box-shadow: 0 0 24px rgba(184, 134, 11, 0.4);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 36px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.25s;
}

.nav-mobile a:hover {
  color: var(--cyan);
}

.nav-mobile .nav-cta {
  font-size: 1rem !important;
  color: var(--bg) !important;
}

.dark-toggle-mobile {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dark-toggle-mobile svg {
  width: 20px;
  height: 20px;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

/* ---- Typography ---- */
.heading-xl {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.heading-md {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-cyan {
  color: var(--cyan);
}

.text-muted {
  color: var(--text-2);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
}

.btn-primary:hover {
  background: #C9960D;
  box-shadow: 0 0 40px rgba(184, 134, 11, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-c);
}

.btn-ghost:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 134, 11, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.09) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: url('gradient.png') no-repeat center center / cover;
  opacity: 0.15;
  top: 10%;
  left: -10%;
  z-index: 0;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: url('gradient.png') no-repeat center center / cover;
  opacity: 0.12;
  bottom: 5%;
  right: -5%;
  z-index: 0;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-40px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-content .container {
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-headline {
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.hero-trust {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.hero-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 134, 11, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ---- Sections ---- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-2);
}

.section-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.section-header.centered {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header .section-label {
  justify-content: flex-start;
}

.section-header.centered .section-label {
  justify-content: center;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ---- Problem Section ---- */
.problem {
  padding: 100px 0;
}

.problem-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}

.problem-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--grad);
}

.problem-text {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 700px;
}

.problem-text span {
  color: var(--cyan);
}

.problem-note {
  margin-top: 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
  font-style: italic;
}

.problem-deco {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  font-family: var(--font-d);
  font-size: 120px;
  font-weight: 700;
  color: var(--cyan);
  pointer-events: none;
}

/* ---- Cards Grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
  cursor: default;
}

/* card gradient overlay removed */
.card:hover {
  border-color: var(--border-c);
  background: var(--surface-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 0 0 1px var(--border-c), 0 0 40px rgba(184, 134, 11, 0.08);
}

.card>* {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(184, 134, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}

.card:hover .card-icon {
  background: rgba(184, 134, 11, 0.18);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.card-title {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.card-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-d);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  transition: color 0.4s;
}

.card:hover .card-num {
  color: rgba(184, 134, 11, 0.06);
}

/* ---- Process / Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 52px;
  right: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
  opacity: 0.3;
}

.step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border-c);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.step:hover .step-num {
  background: var(--cyan-dim);
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

.step-title {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Full Steps (process page) */
.steps-full {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step-full:last-child {
  border-bottom: none;
}

.step-full-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-full-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan);
  background: var(--cyan-dim);
  flex-shrink: 0;
}

.step-full-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--border-c), transparent);
  margin-top: 12px;
}

.step-full-content {
  padding-top: 14px;
}

.step-full-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.step-full-title {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.step-full-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ---- Why Section ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-item {
  background: var(--bg);
  padding: 44px 40px;
  transition: background 0.3s;
  will-change: transform;
}

.why-item:hover {
  background: var(--surface-h);
}

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--purple-dim);
  border: 1px solid rgba(44, 95, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
}

.why-item-icon svg {
  width: 20px;
  height: 20px;
}

.why-item-title {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-item-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 100px 0;
}

.cta-banner-inner {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.06) 0%, rgba(44, 95, 160, 0.06) 100%);
  border: 1px solid var(--border-c);
  border-radius: 24px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad);
  opacity: 0.5;
}

.cta-banner-glow {
  position: absolute;
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: url('gradient.png') no-repeat center center / cover;
  opacity: 0.1;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FAQ ---- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  background: var(--bg-2);
  padding: 28px 32px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-item:hover {
  background: var(--surface-h);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
}

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

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

.faq-a {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin-top 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 14px;
}

/* ---- Services page detail ---- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.reversed {
  direction: rtl;
}

.service-row.reversed>* {
  direction: ltr;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--cyan-dim);
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--cyan);
}

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

.service-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.service-visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 24px;
  width: 100%;
}

.vis-block {
  background: var(--surface-h);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 60px;
  animation: visPulse 3s ease-in-out infinite;
}

.vis-block:nth-child(2) {
  animation-delay: 0.5s;
}

.vis-block:nth-child(3) {
  animation-delay: 1s;
}

.vis-block:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes visPulse {

  0%,
  100% {
    border-color: var(--border);
  }

  50% {
    border-color: var(--border-c);
    box-shadow: 0 0 10px var(--cyan-dim);
  }
}

/* ---- About Principles ---- */
.principles {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.principle {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.principle:last-child {
  border-bottom: none;
}

.principle-num {
  font-family: var(--font-d);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}

.principle-title {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.principle-desc {
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ---- Booking Form ---- */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-3);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select option {
  background: #F2EAD5;
}

.form-submit {
  margin-top: 28px;
}

.form-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-3);
  text-align: center;
}

.form-note a {
  color: var(--cyan);
  text-decoration: underline;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--cyan);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-3);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-3);
}

.footer-bottom a {
  color: var(--cyan);
}

/* ---- Keyframes ---- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ---- Note / Callout ---- */
.note {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(184, 134, 11, 0.04);
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-2);
  font-style: italic;
}

.note strong {
  color: var(--text);
  font-style: normal;
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {

  /* Hide all nav links on mobile */
  .nav-links {
    display: none;
  }

  /* Hide dark toggle from navbar, push hamburger to the right */
  .nav-actions .dark-toggle {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid {
    gap: 40px;
  }

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

  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-row.reversed {
    direction: ltr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner> :first-child {
    grid-column: 1 / -1;
  }

  .problem-inner {
    padding: 48px 32px;
  }

  .problem-deco {
    display: none;
  }

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

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-inner {
    padding: 48px 28px;
  }

  .section {
    padding: 80px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .step {
    padding: 0;
  }

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

  .form {
    padding: 28px 20px;
  }
}

/* =====================================================
   ENHANCED COMPONENTS — v2
   Clip-reveal, Capabilities, Bento, Spotlight, Stats, Brand Text
   ===================================================== */

/* ---- Clip-Path Scroll Reveal (from _5.txt concept) ---- */
.clip-reveal {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.clip-reveal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: polygon(22% 22%, 78% 22%, 78% 78%, 22% 78%);
  transform: scale(1.22);
  filter: brightness(0.3) saturate(0.6);
  /* JS drives clip-path, no CSS transition so it feels physical */
}

.clip-reveal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      var(--bg) 0%,
      transparent 20%,
      transparent 80%,
      var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.clip-reveal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.clip-reveal.active .clip-reveal-content {
  opacity: 1;
  transform: translateY(0);
}

.clip-reveal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 14px;
  display: block;

}

.clip-reveal-heading {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-4);
  line-height: 1.05;
}

.clip-reveal-heading em {
  font-style: normal;
  background: var(--text-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* hero float cards removed */

/* ---- Capabilities List (from _5.txt schedule concept) ---- */
.caps-section {
  padding: 100px 0;
  position: relative;
}

.caps-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.caps-header-right {
  font-size: 0.85rem;
  color: var(--text-2);
}

.caps-list {
  border-top: 1px solid var(--border);
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.5s var(--ease);
  text-decoration: none;
  opacity: 0;
  transform: translateY(32px);
  transition: padding-left 0.5s var(--ease),
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.cap-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.cap-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}

.cap-item:hover::before {
  transform: scaleY(1);
}

.cap-item:hover {
  padding-left: 18px;
}

.cap-num {
  font-family: var(--font-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  flex-shrink: 0;
  width: 22px;
}

.cap-name {
  flex: 1;
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  transition: color 0.3s;
}

.cap-item:hover .cap-name {
  color: var(--text);
}

.cap-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
  display: none;
}

@media (min-width: 780px) {
  .cap-meta {
    display: inline;
  }
}

.cap-item:hover .cap-meta {
  border-color: rgba(184, 134, 11, 0.2);
  color: var(--text-2);
}

.cap-arrow {
  color: var(--text-3);
  transition: color 0.3s, transform 0.4s var(--ease);
  flex-shrink: 0;
}

.cap-arrow svg {
  width: 18px;
  height: 18px;
}

.cap-item:hover .cap-arrow {
  color: var(--cyan);
  transform: translateX(6px);
}

/* ---- Bento Grid ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bento-2c {
  grid-column: span 2;
}

.bento-card {
  min-height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-card.bento-2c {
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  min-height: 260px;
}

.bento-content {
  flex: 1;
}

.bento-visual {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* ---- Card Spotlight — removed ---- */

/* ---- Pipeline Visual (Lead Gen) ---- */
.pipeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  background: rgba(184, 134, 11, 0.04);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-2);
  animation: pipelinePulse 4s ease-in-out infinite;
}

.pipeline-step:nth-child(2) {
  animation-delay: 0.8s;
}

.pipeline-step:nth-child(3) {
  animation-delay: 1.6s;
}

.pipeline-step:nth-child(4) {
  animation-delay: 2.4s;
  background: rgba(184, 134, 11, 0.09);
  border-color: rgba(184, 134, 11, 0.28);
  color: var(--cyan);
  font-weight: 500;
}

.pipeline-node {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.7;
}

.pipeline-step:nth-child(4) .pipeline-node {
  box-shadow: 0 0 6px currentColor;
  opacity: 1;
}

.pipeline-arrow {
  display: flex;
  justify-content: center;
  padding: 1px 0;
  color: rgba(184, 134, 11, 0.3);
  font-size: 0.65rem;
}

@keyframes pipelinePulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* ---- Message Chain Visual (Follow-up) ---- */
.msg-chain {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.msg-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msg-row.right {
  align-items: flex-end;
}

.msg-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 6px;
}

.msg-bubble {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  max-width: 90%;
}

.msg-bubble.sent {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.18);
  color: var(--cyan);
  border-bottom-right-radius: 3px;
}

.msg-bubble.received {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-bottom-left-radius: 3px;
}

.msg-bubble.auto {
  background: rgba(44, 95, 160, 0.1);
  border: 1px solid rgba(44, 95, 160, 0.18);
  color: #7BAEE0;
  border-bottom-right-radius: 3px;
}

/* ---- Waveform Visual (Voice) ---- */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 20px;
  height: 40px;
}

.wave-bar {
  flex: 1;
  border-radius: 2px;
  background: var(--cyan);
  opacity: 0.7;
  animation: waveAnim 1s ease-in-out infinite;
}

@keyframes waveAnim {

  0%,
  100% {
    transform: scaleY(0.2);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ---- Mini Table Visual (CRM) ---- */
.mini-table {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--text-3);
  animation: rowAppear 0.6s var(--ease) both;
}

.mini-row:nth-child(1) {
  animation-delay: 0.1s;
}

.mini-row:nth-child(2) {
  animation-delay: 0.3s;
}

.mini-row:nth-child(3) {
  animation-delay: 0.5s;
}

.mini-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes rowAppear {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---- Bar Chart Visual (Reporting) ---- */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  margin-top: 18px;
}

.mini-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(184, 134, 11, 0.2), rgba(184, 134, 11, 0.05));
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-bottom: none;
  transform-origin: bottom;
  animation: barGrow 1.2s var(--ease) both;
}

.mini-bar:nth-child(1) {
  animation-delay: 0.1s;
}

.mini-bar:nth-child(2) {
  animation-delay: 0.2s;
}

.mini-bar:nth-child(3) {
  animation-delay: 0.3s;
  background: linear-gradient(to top, rgba(44, 95, 160, 0.25), rgba(44, 95, 160, 0.05));
  border-color: rgba(44, 95, 160, 0.2);
}

.mini-bar:nth-child(4) {
  animation-delay: 0.4s;
}

.mini-bar:nth-child(5) {
  animation-delay: 0.5s;
  background: linear-gradient(to top, rgba(184, 134, 11, 0.3), rgba(184, 134, 11, 0.06));
  border-color: rgba(184, 134, 11, 0.25);
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ---- Bento Note Card ---- */
.bento-note {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(44, 95, 160, 0.05));
  border-color: rgba(184, 134, 11, 0.15);
  justify-content: center;
  text-align: center;
  min-height: 160px;
}

.bento-note-text {
  font-family: var(--font-d);
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}

.bento-note-text strong {
  color: var(--text);
}

/* ---- Stats Strip ---- */
.stats-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(184, 134, 11, 0.04), transparent);
  pointer-events: none;
}

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

.stat-item {
  background: var(--bg);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.stat-item:hover {
  background: rgba(184, 134, 11, 0.03);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* hero badge removed */

/* ---- Brand footer text ---- */
.brand-text-wrap {
  display: none;
}

.brand-text {
  font-family: var(--font-d);
  font-size: clamp(56px, 11vw, 155px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 0.88;
  display: block;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.07) 0%,
      rgba(0, 0, 0, 0.03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0;
  user-select: none;
}

/* ---- Hero grid enhancement ---- */
.hero-grid-line {
  position: absolute;
  background: var(--grad);
  opacity: 0.15;
  pointer-events: none;
}

/* ---- Bento responsive ---- */
@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-2c {
    grid-column: span 2;
  }

  .bento-card.bento-2c {
    flex-direction: column;
    gap: 24px;
  }

  .bento-visual {
    flex: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .bento-2c {
    grid-column: span 1;
  }

  .bento-card.bento-2c {
    flex-direction: column;
  }

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

  .stat-item {
    padding: 28px 16px;
  }
}


/* system loader removed */

/* loader corners removed */

/* scanlines removed */

/* cursor dot removed */

/* matrix/neural canvas removed */

/* HUD corners removed */

/* live ticker removed */

/* card-shine removed */

/* ─────────────────────────────────────────────────────
   ANIMATED CARD BORDER (HOLOGRAPHIC)
───────────────────────────────────────────────────── */
.bento-card {
  transform-style: preserve-3d;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}

/* bento-card holographic border removed */

/* floating tech elements removed */

/* glitch text removed */

/* ─────────────────────────────────────────────────────
   NEON STAT NUMBERS
───────────────────────────────────────────────────── */
.stat-num {
  text-shadow: none;
  position: relative;
}

.stat-item:hover .stat-num {
  filter: drop-shadow(0 0 12px rgba(184, 134, 11, 0.6));
}

/* icon orbit removed */
.card-icon {
  position: relative;
}

/* grid pulse removed — grid is static */

/* data stream lines removed */

/* ─────────────────────────────────────────────────────
   ENHANCED WAVE BARS (Voice Agent)
───────────────────────────────────────────────────── */
.wave-bar {
  background: linear-gradient(to top, var(--cyan), rgba(184, 134, 11, 0.3));
  box-shadow: 0 0 4px rgba(184, 134, 11, 0.3);
}

@keyframes waveAnim {

  0%,
  100% {
    transform: scaleY(0.15);
    opacity: 0.25;
    box-shadow: none;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.5);
  }
}

/* ─────────────────────────────────────────────────────
   ENHANCED PIPELINE STEPS
───────────────────────────────────────────────────── */
.pipeline-step {
  position: relative;
  overflow: hidden;
}

.pipeline-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.08), transparent);
  animation: pipelineSweep 3s ease-in-out infinite;
}

.pipeline-step:nth-child(1)::after {
  animation-delay: 0s;
}

.pipeline-step:nth-child(2)::after {
  animation-delay: 0.7s;
}

.pipeline-step:nth-child(3)::after {
  animation-delay: 1.4s;
}

.pipeline-step:nth-child(4)::after {
  animation-delay: 2.1s;
}

@keyframes pipelineSweep {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* ─────────────────────────────────────────────────────
   ENHANCED MINI BARS (Reporting)
───────────────────────────────────────────────────── */
.mini-bar {
  position: relative;
  overflow: hidden;
}

.mini-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  border-radius: 2px;
}

.mini-bar:nth-child(3)::after {
  background: var(--purple);
  box-shadow: 0 0 6px var(--purple);
}

.mini-bar:nth-child(5)::after {
  box-shadow: 0 0 10px var(--cyan);
}

/* ─────────────────────────────────────────────────────
   STEP NUMBERS
───────────────────────────────────────────────────── */
.step-num {
  position: relative;
  overflow: visible;
}

/* ─────────────────────────────────────────────────────
   WHY-ITEM ICON — enhanced glow
───────────────────────────────────────────────────── */
.why-item-icon {
  transition: all 0.4s var(--ease);
}

.why-item:hover .why-item-icon {
  background: rgba(44, 95, 160, 0.22);
  box-shadow: 0 0 20px rgba(44, 95, 160, 0.3);
  transform: scale(1.1) rotate(-3deg);
}

/* ─────────────────────────────────────────────────────
   CTA BANNER — enhanced pulse
───────────────────────────────────────────────────── */
.cta-banner-inner {
  animation: ctaPulse 5s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.2), 0 0 40px rgba(184, 134, 11, 0.04);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.4), 0 0 80px rgba(184, 134, 11, 0.1);
  }
}

/* nav logo pulse removed */

/* ─────────────────────────────────────────────────────
   HERO BADGE — enhanced glow
───────────────────────────────────────────────────── */
.hero-badge {
  animation: floatBadge 4s ease-in-out infinite,
    badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.2), 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.45), 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 20px rgba(184, 134, 11, 0.1);
  }
}

/* ─────────────────────────────────────────────────────
   ENHANCED REVEAL — slide from left for items
───────────────────────────────────────────────────── */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-from-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────────────────
   CUSTOM SCROLLBAR — enhanced
───────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--cyan), var(--purple));
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────
   SECTION HEADER — data line decoration
───────────────────────────────────────────────────── */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--grad);
  margin-top: 28px;
  opacity: 0.5;
  transition: width 0.6s var(--ease);
}

.section-header:hover::after {
  width: 120px;
  opacity: 0.8;
}

.section-header.centered::after {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────
   HERO EYEBROW — enhanced
───────────────────────────────────────────────────── */
.hero-eyebrow {
  position: relative;
}

.hero-eyebrow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: rgba(184, 134, 11, 0.03);
  animation: eyebrowShimmer 3s ease-in-out infinite;
}

@keyframes eyebrowShimmer {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────
   PROBLEM SECTION — enhanced border
───────────────────────────────────────────────────── */
.problem-inner::before {
  animation: borderFlow 3s ease-in-out infinite;
}

@keyframes borderFlow {

  0%,
  100% {
    background-position: 0% 0%;
    opacity: 0.8;
  }

  50% {
    background-position: 0% 100%;
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────
   FOOTER BRAND TEXT — enhanced
───────────────────────────────────────────────────── */
.brand-text {
  transition: filter 0.6s ease;
}

footer:hover .brand-text {
  filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.04));
}

/* ─────────────────────────────────────────────────────
   BLINK CURSOR ANIMATION (typewriter)
───────────────────────────────────────────────────── */
@keyframes blink-cursor {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--cyan);
  }
}


/* pipeline sweep removed */
.pipeline-step::after {
  display: none;
}

/* CTA banner pulse removed */
.cta-banner-inner {
  animation: none;
}

/* hero eyebrow shimmer removed */
.hero-eyebrow::after {
  animation: none;
  opacity: 0;
}

/* ─────────────────────────────────────────────────────
   SCROLL-ACTIVATED: pause ongoing animations until
   their parent container is in the viewport
───────────────────────────────────────────────────── */
.wave-bar,
.mini-bar,
.pipeline-step,
.mini-row {
  animation-play-state: paused;
}

.anim-active .wave-bar,
.anim-active .mini-bar,
.anim-active .pipeline-step,
.anim-active .mini-row {
  animation-play-state: running;
}

/* vis-blocks: hidden until service-visual enters view */
.vis-block {
  opacity: 0;
  transform: scale(0.88) translateY(10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.service-visual.anim-active .vis-block {
  opacity: 1;
  transform: none;
  animation-play-state: running;
}

.service-visual.anim-active .vis-block:nth-child(1) {
  transition-delay: 0.04s;
}

.service-visual.anim-active .vis-block:nth-child(2) {
  transition-delay: 0.10s;
}

.service-visual.anim-active .vis-block:nth-child(3) {
  transition-delay: 0.16s;
}

.service-visual.anim-active .vis-block:nth-child(4) {
  transition-delay: 0.22s;
}

.service-visual.anim-active .vis-block:nth-child(5) {
  transition-delay: 0.28s;
}

.service-visual.anim-active .vis-block:nth-child(6) {
  transition-delay: 0.34s;
}

/* ─────────────────────────────────────────────────────
   NEW DIRECTIONAL REVEAL CLASSES
───────────────────────────────────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-blur {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.reveal-blur.visible {
  opacity: 1;
  filter: blur(0px);
}

/* Delay helpers for all directional reveals */
.reveal-left.reveal-delay-1,
.reveal-right.reveal-delay-1,
.reveal-scale.reveal-delay-1,
.reveal-blur.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-left.reveal-delay-2,
.reveal-right.reveal-delay-2,
.reveal-scale.reveal-delay-2,
.reveal-blur.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-left.reveal-delay-3,
.reveal-right.reveal-delay-3,
.reveal-scale.reveal-delay-3,
.reveal-blur.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-left.reveal-delay-4,
.reveal-right.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ─────────────────────────────────────────────────────
   PROCESS PAGE — step connector line draws on scroll
───────────────────────────────────────────────────── */
.step-full-line {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.step-full.visible .step-full-line {
  transform: scaleY(1);
}

/* Step number — glow on reveal */
.step-full.visible .step-full-num {
  animation: stepNumGlow 0.6s ease 0.3s both;
}

@keyframes stepNumGlow {
  0% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.5);
  }

  100% {
    box-shadow: none;
  }
}

/* ─────────────────────────────────────────────────────
   ABOUT PAGE — principle items sequential slide
───────────────────────────────────────────────────── */
.principle.principle-anim {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.principle.principle-anim.visible {
  opacity: 1;
  transform: none;
}

/* stat-cell for about page stats grid */
.stat-cell {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stat-cell.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────
   BOOKING PAGE — form groups stagger in
───────────────────────────────────────────────────── */
.form-group.form-anim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.form-group.form-anim.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────
   PAGE HERO — subtle glow pulse
───────────────────────────────────────────────────── */
.page-hero-glow {
  animation: pageHeroBreath 5s ease-in-out infinite;
}

@keyframes pageHeroBreath {

  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1.1);
  }
}

/* Page-hero grid subtle pulse */
.page-hero-bg {
  animation: gridFade 6s ease-in-out infinite;
}

@keyframes gridFade {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────
   INNER PAGES — section heading underline draw
───────────────────────────────────────────────────── */
.heading-draw {
  position: relative;
}

.heading-draw::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.9s var(--ease) 0.3s;
}

.heading-draw.visible::after {
  width: 100%;
}

/* ─────────────────────────────────────────────────────
   ENHANCED SCROLL LINE INDICATOR — slower, subtler
───────────────────────────────────────────────────── */
.scroll-line {
  animation-duration: 2.4s;
}

/* ─────────────────────────────────────────────────────
   STEP-FULL NUM — subtle scale on visible
───────────────────────────────────────────────────── */
.step-full-num {
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.step-full:hover .step-full-num {
  transform: scale(1.06);
  background: var(--cyan-dim);
  box-shadow: 0 0 24px rgba(184, 134, 11, 0.25);
}

/* ─────────────────────────────────────────────────────
   WHY-ITEM — enhanced stagger
───────────────────────────────────────────────────── */
.why-item {
  transition: background 0.3s, transform 0.4s var(--ease);
}

.why-item:hover {
  background: var(--surface-h);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────
   FAQ ITEM — nicer hover
───────────────────────────────────────────────────── */
.faq-item {
  transition: background 0.3s;
}

.faq-item.open {
  background: rgba(184, 134, 11, 0.03);
}

/* ─────────────────────────────────────────────────────
   PREFERS REDUCED MOTION
───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-blur,
  .cap-item,
  .principle.principle-anim,
  .form-group.form-anim,
  .stat-cell,
  .step-full-line,
  .vis-block {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  #matrixCanvas,
  .scanlines,
  .tech-floats,
  .hud-corners {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   VIDEO SHOWCASE SECTION
═══════════════════════════════════════════════════════ */
.video-showcase {
  position: relative;
  overflow: hidden;
}

.video-showcase-wrap {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      var(--bg) 0%,
      transparent 18%,
      transparent 80%,
      var(--bg) 100%),
    linear-gradient(to right,
      rgba(6, 8, 15, 0.25) 0%,
      transparent 40%,
      transparent 60%,
      rgba(6, 8, 15, 0.25) 100%);
}

.video-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  filter: drop-shadow(0 4px 40px rgba(0, 0, 0, 0.18));
}

/* video HUD and scanline overlay removed */

@media (max-width: 768px) {
  .video-showcase-wrap {
    height: 60vh;
    min-height: 360px;
  }
}

/* ═══════════════════════════════════════════════════════
   MEDIA PHOTO SECTION
═══════════════════════════════════════════════════════ */
.media-photo-section {
  position: relative;
  overflow: hidden;
}

.media-photo-wrap {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: photoPan 22s ease-in-out infinite alternate;
}

@keyframes photoPan {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.media-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      var(--bg) 0%,
      rgba(10, 8, 4, 0.18) 14%,
      rgba(10, 8, 4, 0.04) 38%,
      rgba(10, 8, 4, 0.04) 58%,

      var(--bg) 100%);
}

.media-photo-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  filter: drop-shadow(0 4px 48px rgba(0, 0, 0, 0.22));
}

/* media photo HUD hover removed */

@media (max-width: 768px) {
  .media-photo-wrap {
    height: 60vh;
    min-height: 380px;
  }
}

/* =====================================================
   CHAT ANIMATION VISUAL
   ===================================================== */
.chat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 100%;
}

.chat-win {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10), 0 0 0 1px var(--border-c), 0 0 40px rgba(184, 134, 11, 0.06);
}

.chat-win-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.chat-bot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-win-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.chat-win-status {
  font-size: 0.7rem;
  color: #4ade80;
  display: block;
  margin-top: 2px;
}

.chat-win-body {
  padding: 18px 14px;
  height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.chat-win-body::-webkit-scrollbar {
  display: none;
}

/* Message bubbles */
.chat-bubble-wrap {
  display: flex;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-bubble-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble-wrap.user {
  justify-content: flex-end;
}

.chat-bubble-wrap.bot {
  justify-content: flex-start;
}

.chat-bubble-inner {
  max-width: 92%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.user .chat-bubble-inner {
  background: var(--cyan);
  border-bottom-right-radius: 4px;
  color: #fff;
}

.bot .chat-bubble-inner {
  background: var(--surface-h);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}

/* Typing indicator */
.chat-typing-wrap {
  display: flex;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.chat-typing-wrap.visible {
  opacity: 1;
}

.chat-typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--surface-h);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.chat-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.4;
  animation: typing-bounce 1.2s infinite ease-in-out;
}

.chat-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {

  0%,
  80%,
  100% {
    transform: scale(0.65);
    opacity: 0.3;
  }

  40% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* =====================================================
   TERMS OF SERVICE PAGE
   ===================================================== */
.terms-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.terms-section h2 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

.terms-section p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-caps {
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text) !important;
  border-left: 2px solid var(--cyan);
  padding-left: 16px;
  line-height: 1.7 !important;
}

/* =====================================================
   DARK MODE TOGGLE BUTTON
   ===================================================== */
.dark-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.dark-toggle:hover {
  background: var(--surface-h);
  color: var(--text);
  border-color: var(--cyan);
}

.dark-toggle svg {
  width: 16px;
  height: 16px;
  transition: opacity 0.2s, transform 0.3s var(--ease);
}

.dark-toggle .icon-sun {
  display: none;
}

.dark-toggle .icon-moon {
  display: inline-block;
}

body.dark .dark-toggle .icon-sun {
  display: inline-block;
}

body.dark .dark-toggle .icon-moon {
  display: none;
}

/* Override fixed dimensions for the mobile menu toggle */
.dark-toggle.dark-toggle-mobile {
  width: auto;
  height: auto;
}

/* =====================================================
   DARK THEME — CSS VARIABLE OVERRIDES
   ===================================================== */
body.dark {
  --bg: #0F0D0A;
  --bg-2: #1A1712;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-h: rgba(255, 255, 255, 0.07);
  --text: #F0EDE6;
  --text-2: #A09888;
  --text-3: #6B6050;
  --border: rgba(255, 255, 255, 0.09);
  --border-c: rgba(184, 134, 11, 0.40);
}

/* Nav scrolled — hardcoded bg override for dark */
body.dark .nav.scrolled {
  background: rgba(15, 13, 10, 0.92);
}

/* Mobile nav — hardcoded bg override for dark */
body.dark .nav-mobile {
  background: rgba(15, 13, 10, 0.98);
}

/* Page hero bg override */
body.dark .page-hero-bg {
  background: var(--bg-2);
}

/* Smooth transition on theme switch */
body,
body * {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease);
}

/* =====================================================
   MOBILE RESPONSIVE — full phone support (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {

  /* ── General spacing ── */
  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* ── Page hero ── */
  .page-hero {
    padding: 100px 0 56px;
  }

  .heading-xl {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .heading-lg {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .heading-md {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .card-title,
  .step-title,
  .why-item-title {
    font-size: 1.5rem !important;
  }

  .card-desc,
  .step-desc,
  .why-item-desc,
  .section-header p {
    font-size: 1.05rem;
  }

  /* ── About page ── */
  .about-who-grid,
  .about-approach-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ── Booking page ── */
  .booking-section {
    padding: 100px 0 64px !important;
    min-height: unset !important;
  }

  .booking-layout {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  /* ── Process page ── */
  .process-layout {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .process-sidebar {
    position: static !important;
    top: auto !important;
  }

  .process-stats {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .process-stat-mid {
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    margin: 0;
  }

  .process-stats>div {
    padding: 28px 0;
  }

  /* ── Services page ── */
  .service-row {
    gap: 32px;
  }

  .cards-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ── Capabilities list ── */
  .cap-item {
    padding: 18px 0;
  }

  .cap-meta {
    display: none;
  }

  /* ── CTA banner ── */
  .cta-banner-inner {
    padding: 40px 20px;
  }

  .cta-banner-inner h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  /* ── Footer ── */
  .footer-inner {
    gap: 32px;
  }

  .brand-text-wrap {
    display: none;
  }

  /* ── Nav mobile ── */
  .nav-mobile {
    padding-top: 80px;
  }

  /* ── Form ── */
  .form {
    padding: 24px 16px;
  }

  .form-grid {
    gap: 16px;
  }

  /* ── Steps full (process page) ── */
  .step-full {
    gap: 16px;
  }

  .step-full-num {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  /* ── Bento / why grid ── */
  .bento {
    grid-template-columns: 1fr !important;
  }

  .bento-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* ── Stats strip ── */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 28px 16px;
  }

  /* ── Clip reveal ── */
  .clip-reveal {
    height: 50vh;
    min-height: 280px;
  }

  /* ── Video showcase ── */
  .video-showcase-wrap {
    height: 55vh;
    min-height: 320px;
  }

  .video-content h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  /* ── Media photo ── */
  .media-photo-wrap {
    height: 55vh;
    min-height: 320px;
  }
}

@media (max-width: 480px) {

  /* ── Typography ── */
  .heading-xl {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .heading-lg {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  /* ── Hero ── */
  .hero-eyebrow {
    font-size: 0.72rem;
  }

  /* ── Booking form section ── */
  .booking-section {
    align-items: flex-start !important;
  }

  /* ── About stats grid (2×2 number boxes) — go full width on very small ── */
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats-grid>div {
    padding: 24px 16px !important;
  }

  /* ── Process stats — reduce font ── */
  .process-stats [style*="font-size:3rem"] {
    font-size: 2.2rem !important;
  }

  /* ── CTA ── */
  .cta-banner-inner .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer bottom ── */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ── Nav ── */
  .nav-inner {
    padding: 0 16px;
  }
}