/* ========== DESIGN SYSTEM ========== */
:root {
  /* Colors */
  --navy-deepest: #080c14;
  --navy-deep: #0d1219;
  --navy-dark: #111827;
  --navy: #1a2233;
  --navy-mid: #1e2a3f;
  --navy-light: #243347;
  --steel: #294b6e;
  --steel-light: #3a699b;
  --teal: #279798;
  --teal-light: #30b8b9;
  --teal-glow: rgba(39, 151, 152, 0.3);
  --gold: #ffa51f;
  --gold-light: #ffbe57;
  --gold-glow: rgba(255, 165, 31, 0.25);
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --danger: #ff4757;
  --success: #2ed573;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow-teal: 0 0 30px rgba(39, 151, 152, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(255, 165, 31, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-circle: 50%;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  background-color: var(--navy-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, textarea {
  font-family: inherit;
  outline: none;
}

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

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========== TYPOGRAPHY ========== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--white-70);
  line-height: 1.7;
  max-width: 680px;
}

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

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--navy-dark);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px var(--teal-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--teal-glow), 0 0 60px rgba(39, 151, 152, 0.15);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-20);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn .btn-arrow {
  transition: transform var(--transition-base);
}

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

/* ========== HEADER / NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition-base);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.header.scrolled::before {
  opacity: 1;
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--teal-light);
  letter-spacing: 0.5px;
}

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

.nav-links a {
  padding: 8px 20px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--white-70);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  border-radius: 2px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 18, 25, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: var(--fw-semibold);
  color: var(--white-70);
  transition: all var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-nav.open a {
  transform: translateY(0);
  opacity: 1;
}

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

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

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 18, 25, 0.88) 0%,
    rgba(26, 34, 51, 0.82) 50%,
    rgba(13, 18, 25, 0.90) 100%
  );
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--white-20) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-20) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: var(--radius-circle);
  filter: blur(80px);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--teal-glow);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(143, 17, 168, 0.15);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--teal-light);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: var(--radius-circle);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-note {
  font-size: 14px;
  color: var(--white-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-note svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--white-30);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--white-50);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  padding: var(--section-padding);
  background: var(--navy-dark);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-10), transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-content .section-title {
  margin-bottom: 28px;
}

.problem-text p {
  font-size: 17px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 20px;
}

.problem-text p:last-child {
  margin-bottom: 0;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  padding: 32px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: var(--shadow-glow-teal);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 42px;
  font-weight: var(--fw-bold);
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--white-50);
  font-weight: var(--fw-medium);
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.service-card {
  padding: 40px 32px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-glow), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--shadow-glow-teal);
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-teal);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-card h3 {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.service-card:hover h3 {
  color: var(--teal-light);
}

.service-card p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========== WHY SECTION ========== */
.why-section {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-circle);
  background: rgba(39, 151, 152, 0.05);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(100px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-title {
  margin-bottom: 28px;
}

.why-content p {
  font-size: 17px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.why-feature:hover {
  background: var(--white-10);
  border-color: var(--teal);
  transform: translateX(8px);
}

.why-feature .feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.why-feature:hover .feature-icon {
  transform: rotate(-5deg) scale(1.05);
}

.why-feature .feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.why-feature h4 {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 14px;
  color: var(--white-50);
  margin: 0;
  line-height: 1.6;
}

/* ========== TARGET AUDIENCE ========== */
.audience-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--white-90);
  transition: all var(--transition-base);
}

.audience-item:hover {
  background: var(--white-10);
  border-color: var(--gold);
  transform: translateX(8px);
  box-shadow: var(--shadow-glow-gold);
}

.audience-item .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.audience-item:hover .check {
  transform: scale(1.15);
}

.audience-item .check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: var(--section-padding);
  background: var(--navy-dark);
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-timeline {
  display: flex;
  gap: 0;
  position: relative;
  justify-content: center;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0.3;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  max-width: 220px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--steel), var(--navy-light));
  border: 2px solid var(--gold);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--gold);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-color: var(--teal-light);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: var(--shadow-glow-teal);
}

.step-card {
  padding: 28px 20px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.process-step:hover .step-card {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-gold);
}

.step-card h3 {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  margin-bottom: 10px;
  color: var(--gold);
  transition: color var(--transition-base);
}

.process-step:hover .step-card h3 {
  color: var(--gold-light);
}

.step-card p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ========== FUNNEL / CUSTOMER JOURNEY ========== */
.funnel-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

.funnel-header {
  text-align: center;
  margin-bottom: 64px;
}

.funnel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* CSS Funnel */
.funnel-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.funnel-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  font-weight: var(--fw-bold);
  font-size: 18px;
  color: var(--white);
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
}

.funnel-stage:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
}

.funnel-stage-1 {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.funnel-stage-2 {
  width: 90%;
  max-width: 378px;
  background: linear-gradient(135deg, var(--steel), var(--steel-light));
  clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
}

.funnel-stage-3 {
  width: 78%;
  max-width: 328px;
  background: linear-gradient(135deg, var(--navy-light), var(--steel));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
}

.funnel-stage .stage-icon {
  margin-right: 10px;
  font-size: 22px;
}

.funnel-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.funnel-card {
  padding: 28px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
  transition: all var(--transition-base);
}

.funnel-card:nth-child(2) {
  border-left-color: var(--steel-light);
}

.funnel-card:nth-child(3) {
  border-left-color: var(--gold);
}

.funnel-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--white-20);
}

.funnel-card h4 {
  font-size: 17px;
  font-weight: var(--fw-semibold);
  margin-bottom: 8px;
  color: var(--teal-light);
}

.funnel-card:nth-child(2) h4 { color: var(--steel-light); }
.funnel-card:nth-child(3) h4 { color: var(--gold); }

.funnel-card p {
  font-size: 15px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, rgba(41, 75, 110, 0.3), rgba(143, 17, 168, 0.1));
  right: -200px;
  bottom: -200px;
  filter: blur(120px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 380px;
  height: 380px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  border: 3px solid var(--white-20);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  position: relative;
}

.about-image:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-glow-teal);
  border-radius: 50%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  border: 2px dashed var(--gold);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
  transition: all var(--transition-slow);
  z-index: -1;
}

.about-image-wrapper:hover .about-decoration {
  border-radius: 50%;
  top: 12px;
  left: 12px;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--fw-bold);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  font-size: 17px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content .btn {
  margin-top: 12px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: var(--section-padding);
  background: var(--navy-dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1px solid var(--white-10);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-glow-teal);
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 18, 25, 0.85), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--white-90);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-overlay svg {
  color: var(--teal-light);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-circle);
  background: var(--teal-glow);
  top: -300px;
  left: -200px;
  filter: blur(150px);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-circle);
  background: rgba(143, 17, 168, 0.15);
  bottom: -250px;
  right: -150px;
  filter: blur(120px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 17px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white-70);
}

.cta-perk svg {
  color: var(--teal-light);
  flex-shrink: 0;
}

/* Form */
.cta-form {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-form h3 {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  margin-bottom: 28px;
  text-align: center;
  color: var(--gold);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--white-70);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-50);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
  background: rgba(39, 151, 152, 0.05);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  color: var(--success);
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--white-50);
  font-size: 15px;
}

/* ========== FOOTER ========== */
.footer {
  padding: 60px 0 32px;
  background: var(--navy-deepest);
  border-top: 1px solid var(--white-10);
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--white-50);
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-50);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--white-70);
  padding: 6px 0;
  transition: all var(--transition-base);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Ensure footer links never inherit gradient text */
.footer-col a,
.footer-col a:link,
.footer-col a:visited {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white-70);
  background-clip: unset;
}

.footer-col a:hover {
  -webkit-text-fill-color: var(--gold);
}

/* Reusable gradient text (for non-hero elements) */
.gradient-text {
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bottom {
  border-top: 1px solid var(--white-05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--white-50);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow-teal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--teal-glow);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .problem-grid,
  .why-grid,
  .audience-grid,
  .funnel-wrapper,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-timeline {
    flex-wrap: wrap;
    gap: 24px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 16px);
  }

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

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

  .about-image {
    width: 320px;
    height: 320px;
  }

  .funnel-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .process-step {
    flex: 0 0 calc(50% - 12px);
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

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

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

  .about-image {
    width: 260px;
    height: 260px;
  }

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

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-step {
    flex: 0 0 100%;
    max-width: 100%;
  }

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