/* ============================================================
   EQAI Hospitality Page — hospitality.css
   Executive Dark SaaS Aesthetic — matches EQAI design system
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --bg:           #080c14;
  --bg-alt:       #0d1220;
  --surface:      #111827;
  --surface-2:    #1a2235;
  --border:       rgba(255,255,255,0.07);
  --border-teal:  rgba(45,212,191,0.25);
  --teal:         #2dd4bf;
  --teal-dim:     rgba(45,212,191,0.12);
  --purple:       #818cf8;
  --purple-dim:   rgba(129,140,248,0.12);
  --blue:         #38bdf8;
  --gold:         #ceab8a;
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;
  --font:         'Inter', 'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Sans', 'Inter', system-ui, sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow:       0 4px 32px rgba(0,0,0,0.5);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.04) inset;
  --glow-teal:    0 0 80px rgba(45,212,191,0.15);
  --glow-purple:  0 0 80px rgba(129,140,248,0.12);
  --gradient:     linear-gradient(135deg, #2dd4bf 0%, #818cf8 50%, #ceab8a 100%);
  --gradient-card:linear-gradient(145deg, #141e28 0%, #0d1219 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.h-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Typography ---- */
.h-gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.h-section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal);
}

.h-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.h-section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

.h-section-header { margin-bottom: 3rem; }
.h-section-header.h-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.h-section-header.h-centered .h-section-body { text-align: center; }

/* ---- Buttons ---- */
.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.h-btn-teal {
  background: var(--teal);
  color: #0a0f1a;
}
.h-btn-teal:hover {
  background: #5eead4;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45,212,191,0.35);
}
.h-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.h-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.h-btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* ---- Glow Orbs ---- */
.h-section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.h-glow-teal  { width: 500px; height: 300px; background: rgba(45,212,191,0.07); top: -80px; right: -80px; }
.h-glow-purple{ width: 500px; height: 300px; background: rgba(129,140,248,0.07); top: -80px; left: -80px; }

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.22s; }
.fade-up-delay-3 { transition-delay: 0.34s; }

/* ============================================================
   HEADER
============================================================ */
.h-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(8,12,20,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.h-header.scrolled {
  background: rgba(8,12,20,0.92);
  border-bottom-color: var(--border);
}
.h-header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.h-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.h-logo-mark { display: flex; align-items: center; }
.h-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-logo-divider {
  color: var(--border);
  font-size: 1rem;
  margin: 0 0.25rem;
  -webkit-text-fill-color: rgba(255,255,255,0.2);
}
.h-logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.h-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.h-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.h-nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.h-header-ctas { display: flex; gap: 0.6rem; flex-shrink: 0; }

.h-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.h-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}
.h-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(8,12,20,0.98);
}
.h-mobile-nav.open { display: flex; }
.h-mobile-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.h-mobile-link:last-of-type { border-bottom: none; }

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

.h-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.h-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0.75) 50%, rgba(8,12,20,0.6) 100%),
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(45,212,191,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(129,140,248,0.1) 0%, transparent 60%);
}

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

.h-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 130px 2rem 80px;
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.22);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.h-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.h-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.h-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.h-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.h-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.h-stat { text-align: center; }
.h-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.h-stat-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}
.h-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Visual */
.h-hero-visual { position: relative; }

.h-mockup-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 40px rgba(45,212,191,0.08);
  position: relative;
  z-index: 2;
}
.h-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: #141c2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.h-chrome-dots { display: flex; gap: 5px; }
.h-chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.h-chrome-dots span:nth-child(1) { background: #ff5f57; }
.h-chrome-dots span:nth-child(2) { background: #febc2e; }
.h-chrome-dots span:nth-child(3) { background: #28c840; }
.h-chrome-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
}
.h-mockup-screen { overflow: hidden; }
.h-mockup-img { width: 100%; display: block; object-fit: cover; }

.h-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(13,18,32,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(45,212,191,0.22);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 12px rgba(45,212,191,0.08);
  z-index: 3;
  min-width: 200px;
}
.h-float-card-1 {
  bottom: 80px;
  left: -24px;
  animation: floatA 6s ease-in-out infinite;
}
.h-float-card-2 {
  bottom: 20px;
  right: -24px;
  animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.h-float-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.h-float-dot-purple { background: var(--purple); }
.h-float-label { font-size: 0.7rem; color: var(--text-dim); }
.h-float-value { font-size: 0.82rem; font-weight: 600; color: var(--text); }

/* Scroll indicator */
.h-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
}
.h-scroll-indicator span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.h-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ============================================================
   BRAND STRIP
============================================================ */
.h-brand-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.h-brand-strip-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.h-brand-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.h-brand-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.h-brand-tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  display: inline-block;
}

/* ============================================================
   SECTIONS
============================================================ */
.h-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.h-section-alt { background: var(--bg-alt); }

/* ============================================================
   PROBLEM GRID
============================================================ */
.h-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.h-problem-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.h-problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.h-problem-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.h-icon-red    { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); }
.h-icon-orange { background: rgba(251,146,60,0.1);  border: 1px solid rgba(251,146,60,0.2); }
.h-icon-purple { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); }
.h-icon-teal   { background: rgba(45,212,191,0.1);  border: 1px solid rgba(45,212,191,0.2); }
.h-icon-blue   { background: rgba(56,189,248,0.1);  border: 1px solid rgba(56,189,248,0.2); }
.h-icon-gold   { background: rgba(206,171,138,0.1); border: 1px solid rgba(206,171,138,0.2); }
.h-problem-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.h-problem-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   FEATURE ROWS
============================================================ */
.h-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.h-feature-row:last-child { margin-bottom: 0; }
.h-feature-row-reverse { direction: rtl; }
.h-feature-row-reverse > * { direction: ltr; }

.h-feature-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.h-feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.h-feature-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.h-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.h-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.h-feature-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%232dd4bf' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.h-feature-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(45,212,191,0.05);
  border: 1px solid rgba(45,212,191,0.15);
  border-radius: var(--radius);
}
.h-metric-value {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.4;
}

/* Screen Mockup */
.h-screen-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  background: #0d1220;
}
.h-screen-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: #141c2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.h-screen-dots { display: flex; gap: 5px; }
.h-screen-dots span { width: 10px; height: 10px; border-radius: 50%; }
.h-screen-dots span:nth-child(1) { background: #ff5f57; }
.h-screen-dots span:nth-child(2) { background: #febc2e; }
.h-screen-dots span:nth-child(3) { background: #28c840; }
.h-screen-title { font-size: 0.72rem; color: var(--text-dim); font-weight: 500; }
.h-screen-img { width: 100%; display: block; object-fit: cover; max-height: 340px; }
.h-screen-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60px;
  background: rgba(45,212,191,0.1);
  filter: blur(30px);
  pointer-events: none;
}
.h-screen-glow-purple { background: rgba(129,140,248,0.12); }

/* ============================================================
   CAPABILITIES GRID
============================================================ */
.h-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.h-cap-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.h-cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,212,191,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.h-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-teal);
  border-color: rgba(45,212,191,0.2);
}
.h-cap-card:hover::before { opacity: 1; }
.h-cap-card-featured {
  border-color: rgba(45,212,191,0.22);
  background: linear-gradient(145deg, #141c2e 0%, #0f1629 60%, rgba(45,212,191,0.04) 100%);
}
.h-cap-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(45,212,191,0.07);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.h-cap-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(45,212,191,0.07);
  border: 1px solid rgba(45,212,191,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.h-cap-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.h-cap-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.h-cap-tag {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  background: rgba(45,212,191,0.07);
  border: 1px solid rgba(45,212,191,0.15);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.h-cap-tag-featured {
  background: linear-gradient(135deg, rgba(45,212,191,0.12), rgba(129,140,248,0.12));
  border-color: rgba(129,140,248,0.25);
  color: var(--purple);
}

/* ============================================================
   JOURNEY STEPS
============================================================ */
.h-journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.h-journey-line {
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--blue));
  opacity: 0.25;
  z-index: 0;
}
.h-journey-step { position: relative; z-index: 1; }
.h-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45,212,191,0.14), rgba(129,140,248,0.14));
  border: 1px solid rgba(45,212,191,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700;
  color: var(--teal);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(45,212,191,0.1);
}
.h-step-body {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.h-step-body:hover { border-color: rgba(45,212,191,0.2); transform: translateY(-2px); }
.h-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.h-step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.h-step-tag {
  display: inline-block;
  padding: 0.22rem 0.6rem;
  background: rgba(45,212,191,0.07);
  border: 1px solid rgba(45,212,191,0.14);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   OUTCOMES GRID
============================================================ */
.h-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.h-outcome-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.h-outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45,212,191,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(45,212,191,0.05);
}
.h-outcome-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(45,212,191,0.07);
  border: 1px solid rgba(45,212,191,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.h-outcome-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.h-outcome-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PROOF SECTION
============================================================ */
.h-proof-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.h-proof-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.h-proof-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,20,0.95) 0%, rgba(8,12,20,0.88) 60%, rgba(8,12,20,0.8) 100%);
}
.h-proof-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.h-proof-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.h-quote-card {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  background: rgba(45,212,191,0.04);
  border: 1px solid rgba(45,212,191,0.18);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.h-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
}
.h-quote-text {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.h-quote-source {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.h-quote-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.h-proof-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  width: fit-content;
}
.h-proof-metric { text-align: center; }
.h-proof-metric-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-proof-metric-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.h-proof-metric-divider {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   FAQ
============================================================ */
.h-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.h-faq-item {
  border-bottom: 1px solid var(--border);
}
.h-faq-item:first-child { border-top: 1px solid var(--border); }
.h-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.h-faq-q:hover { color: var(--teal); }
.h-faq-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s, color 0.2s;
}
.h-faq-item.open .h-faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}
.h-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.h-faq-item.open .h-faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.h-faq-a p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   CTA SECTION
============================================================ */
.h-cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--bg);
}
.h-cta-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.h-cta-glow-1 {
  width: 500px; height: 500px;
  background: rgba(45,212,191,0.08);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.h-cta-glow-2 {
  width: 350px; height: 350px;
  background: rgba(129,140,248,0.07);
  bottom: -100px; right: 10%;
}
.h-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.h-cta-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.h-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.h-cta-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.h-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.h-cta-tagline {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
============================================================ */
.h-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.h-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.h-footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1rem;
}
.h-footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.h-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.h-footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.h-footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.h-footer-col a:hover { color: var(--teal); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .h-hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 110px; }
  .h-hero-sub { max-width: 100%; }
  .h-float-card { display: none; }
  .h-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .h-feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .h-feature-row-reverse { direction: ltr; }
  .h-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .h-journey-steps { grid-template-columns: repeat(3, 1fr); }
  .h-journey-line { display: none; }
  .h-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .h-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .h-nav, .h-header-ctas { display: none; }
  .h-mobile-toggle { display: flex; }
  .h-section { padding: 3.5rem 0; }
  .h-problem-grid { grid-template-columns: 1fr; }
  .h-cap-grid { grid-template-columns: 1fr; }
  .h-journey-steps { grid-template-columns: 1fr; }
  .h-outcomes-grid { grid-template-columns: 1fr; }
  .h-footer-links { grid-template-columns: repeat(2, 1fr); }
  .h-hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .h-stat-divider { width: 40px; height: 1px; }
  .h-proof-metrics { flex-direction: column; gap: 1rem; width: 100%; }
  .h-proof-metric-divider { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  .h-container { padding: 0 1.25rem; }
  .h-hero-ctas { flex-direction: column; align-items: flex-start; }
  .h-hero-ctas .h-btn { width: 100%; justify-content: center; }
  .h-cta-actions { flex-direction: column; }
  .h-cta-actions .h-btn { width: 100%; justify-content: center; }
  .h-footer-links { grid-template-columns: 1fr; }
}
