:root {
  --navy: #000074;
  --navy-light: #1a1a8e;
  --red: #b80000;
  --red-glow: #ff1a1a;
  --red-soft: #ff4444;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-wa: #25D366;
  --green-wa-dark: #128C7E;
  --ig-pink: #E1306C;
  --ig-purple: #833AB4;
  --ig-orange: #F77737;
  --ota-orange: #FF6600;
  --success: #10b981;
  --gradient-primary: linear-gradient(135deg, #000074 0%, #1a1a8e 50%, #4a4aff 100%);
  --gradient-red: linear-gradient(135deg, #b80000 0%, #ff4444 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  --gradient-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,0,116,0.3) 0%, transparent 70%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 60px rgba(0,0,116,0.15);
  --shadow-glow-red: 0 0 60px rgba(184,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PREMIUM NAV
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-logo {
  color: var(--gray-900);
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gray-900);
}

.nav-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.nav-logo img {
  filter: brightness(0) invert(1);
  transition: var(--transition-base);
}

.nav-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
  border-radius: 2px;
}

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

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

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

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-nav-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.navbar.scrolled .btn-nav-ghost {
  color: var(--gray-600);
  border-color: var(--gray-200);
}

.navbar.scrolled .btn-nav-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-nav-primary {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.navbar.scrolled .btn-nav-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

.navbar.scrolled .hamburger span {
  background: var(--gray-900);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  width: 100%;
  max-width: 300px;
}

.mobile-menu-ctas a {
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(0,0,116,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(0,0,116,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(184,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-shape 20s ease-in-out infinite;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--navy);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--red);
  bottom: -100px;
  right: -50px;
  animation-delay: -5s;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: #4a4aff;
  top: 40%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

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

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

.hero-content {
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,0,0,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(184,0,0,0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--red-soft) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

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

.btn-primary {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.25);
}

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

.btn-secondary {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
  background: var(--green-wa-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.hero-visual {
  animation: fadeInScale 1s ease-out 0.4s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   HERO — WHATSAPP CHAOS VISUAL
   ============================================ */
.chaos-phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.phone-frame {
  /* width: 300px; */
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #0b141a;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.wa-header {
  background: #1f2c34;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.wa-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #667 0%, #445 100%); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; }
.wa-name { font-size: 13px; font-weight: 600; color: #e9edef; }
.wa-status { font-size: 10px; color: #8696a0; }

.wa-chat {
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 360px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l5 5-5 5-5-5z' fill='%23ffffff' opacity='0.015'/%3E%3C/svg%3E") repeat;
}

.wa-msg {
  max-width: 82%;
  padding: 7px 10px 4px;
  border-radius: 8px;
  font-size: 11.5px;
  line-height: 1.45;
  position: relative;
  animation: msg-in 0.4s ease-out both;
}

.wa-msg.in { background: #1f2c34; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.wa-msg.out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 2px; }

.wa-msg .time { font-size: 9px; color: #8696a0; text-align: right; margin-top: 2px; }

@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-msg:nth-child(1) { animation-delay: 0.3s; }
.wa-msg:nth-child(2) { animation-delay: 0.6s; }
.wa-msg:nth-child(3) { animation-delay: 0.9s; }
.wa-msg:nth-child(4) { animation-delay: 1.2s; }
.wa-msg:nth-child(5) { animation-delay: 1.5s; }
.wa-msg:nth-child(6) { animation-delay: 1.8s; }
.wa-msg:nth-child(7) { animation-delay: 2.1s; }
.wa-msg:nth-child(8) { animation-delay: 2.4s; }
.wa-msg:nth-child(9) { animation-delay: 2.7s; }
.wa-msg:nth-child(10) { animation-delay: 3.0s; }

/* chaos overlay icons floating */
.chaos-floaters {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.chaos-floater {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: float-chaos 6s ease-in-out infinite;
}
.chaos-floater:nth-child(1) { top: 8%; left: -10%; animation-delay: 0s; }
.chaos-floater:nth-child(2) { top: 25%; right: -8%; animation-delay: 1.2s; }
.chaos-floater:nth-child(3) { top: 55%; left: -12%; animation-delay: 2.4s; }
.chaos-floater:nth-child(4) { top: 75%; right: -10%; animation-delay: 0.8s; }
.chaos-floater:nth-child(5) { top: 40%; left: -6%; animation-delay: 3.6s; }
.chaos-floater:nth-child(6) { top: 90%; right: -6%; animation-delay: 1.8s; }

@keyframes float-chaos {
  0%, 100% { opacity: 0; transform: translateY(10px) rotate(-5deg); }
  20%, 80% { opacity: 0.5; }
  50% { opacity: 0.7; transform: translateY(-10px) rotate(5deg); }
}

/* RED STAMP */
.stamp-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 10;
  border: 4px solid var(--red);
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(4px);
  animation: stamp-in 0.6s 3.5s ease-out both;
  white-space: nowrap;
}

@keyframes stamp-in {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-12deg) scale(2); }
  60% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(1); }
}

/* ============================================
   PREMIUM SECTION STYLES
   ============================================ */
.section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.section-light {
  background: var(--white);
}

.section-gray {
  background: var(--gray-50);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.section-navy {
  background: var(--gradient-primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(0,0,116,0.06);
  border-radius: 100px;
}

.section-dark .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

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

.stat-item {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-number .suffix {
  font-size: 36px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 140px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  animation: scroll-testimonials 30s linear infinite;
}

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

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 13px;
  color: var(--gray-500);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #fbbf24;
}

/* ============================================
   SECTION: THE PROBLEM
   ============================================ */
.section-problem {
  padding: 140px 0;
  background: var(--gray-50);
  position: relative;
}

/* The chaos flow vs. clean flow */
.flow-comparison {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: stretch;
}

.flow-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
}

.flow-card.chaos {
  border-color: rgba(184,0,0,0.2);
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

.flow-card.clean {
  border-color: rgba(0,0,116,0.2);
  background: linear-gradient(180deg, #fff 0%, #f0f0ff 100%);
}

.flow-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.flow-badge.bad { background: rgba(184,0,0,0.1); color: var(--red); }
.flow-badge.good { background: rgba(0,0,116,0.1); color: var(--navy); }

.flow-card h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 28px; line-height: 1.2;
}

.flow-steps { display: flex; flex-direction: column; gap: 0; }

.flow-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.flow-step:last-child { border-bottom: none; }

.step-num {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.chaos .step-num { background: rgba(184,0,0,0.1); color: var(--red); }
.clean .step-num { background: rgba(0,0,116,0.1); color: var(--navy); }

.step-text { font-size: 14px; line-height: 1.5; color: var(--gray-600); }
.step-text strong { color: var(--black); font-weight: 700; }

.step-pain {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--red);
  margin-top: 4px; font-weight: 700;
}

.step-win {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--navy);
  margin-top: 4px; font-weight: 700;
}

.flow-divider {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  padding: 40px 0;
}
.flow-divider .vs {
  font-size: 18px; font-weight: 900;
  color: var(--gray-400);
  background: var(--gray-200);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.flow-divider .line { width: 2px; flex: 1; background: var(--gray-200); }

/* ============================================
   SECTION: COMMISSION KILLER
   ============================================ */
.section-commission {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-commission::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(184,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-commission .section-label { color: var(--red-glow); }
.section-commission .section-subtitle { color: rgba(255,255,255,0.5); }

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

.booking-breakdown {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}

.bb-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 28px;
}

.bb-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bb-row:last-child { border-bottom: none; }

.bb-label { font-size: 15px; color: rgba(255,255,255,0.6); }
.bb-value { font-size: 18px; font-weight: 800; }
.bb-value.loss { color: var(--red); text-decoration: line-through; text-decoration-color: var(--red); }
.bb-value.keep { color: var(--success); }

.bb-total {
  margin-top: 20px; padding-top: 20px;
  border-top: 2px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: baseline;
}
.bb-total-label { font-size: 14px; font-weight: 600; color: var(--gray-400); }
.bb-total-value {
  font-size: 42px; font-weight: 900; letter-spacing: -2px;
  color: var(--success);
}
.bb-total-sub { font-size: 13px; color: var(--gray-400); font-weight: 400; }

.commission-right { padding-left: 24px; }

.commission-right h3 {
  font-size: 36px; font-weight: 900; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 20px;
}
.commission-right h3 .red { color: var(--red); }

.commission-right p {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.ota-logos {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.ota-chip {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 6px;
  background: rgba(255,102,0,0.1);
  color: var(--ota-orange);
  border: 1px solid rgba(255,102,0,0.2);
}

/* ============================================
   PREMIUM FEATURES SECTION
   ============================================ */
.section-features {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

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

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,116,0.02) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0,0,116,0.15);
  border-color: rgba(0,0,116,0.1);
}

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

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--gradient-primary);
}

.feature-card:hover .feature-icon span {
  filter: brightness(0) invert(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all var(--transition-smooth);
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   SECTION: REAL EXAMPLE
   ============================================ */
.section-example {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

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

/* Fake Instagram DM */
.ig-dm-mock {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.ig-header {
  background: linear-gradient(90deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.ig-header-icon { font-size: 18px; }
.ig-header-text { font-size: 14px; font-weight: 700; }

.ig-content {
  padding: 24px 20px;
}

.ig-dm-bubble {
  background: var(--gray-100);
  border-radius: 18px 18px 18px 4px;
  padding: 16px 18px;
  font-size: 13px; line-height: 1.6;
  color: var(--black);
  margin-bottom: 16px;
  max-width: 90%;
}

.ig-dm-bubble.reply {
  background: #3797f0;
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  margin-left: auto;
}

.ig-chaos-label {
  text-align: center;
  padding: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ig-chaos-label span {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--red);
  letter-spacing: 1px; text-transform: uppercase;
}

.example-solution h3 {
  font-size: 32px; font-weight: 900; letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 20px;
}

.example-solution p {
  font-size: 16px; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 32px;
}

.solution-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.sol-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--gray-100);
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 3px solid var(--navy);
}
.sol-step-num {
  font-family: 'Space Mono', monospace;
  font-size: 13px; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.sol-step-text { font-size: 14px; line-height: 1.5; color: var(--black); }
.sol-step-text strong { font-weight: 700; }

/* ============================================
   SECTION: PRICING
   ============================================ */
.section-pricing {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-pricing::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 30% 0%, rgba(255,255,255,0.05), transparent),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(184,0,0,0.15), transparent);
  pointer-events: none;
}

.section-pricing .section-label { color: rgba(255,255,255,0.5); }

.pricing-hero-text {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.1;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.pricing-sub {
  font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.6;
  max-width: 560px; margin: 0 auto 48px;
  position: relative; z-index: 1;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  margin: 0 auto 48px;
  text-align: left;
  position: relative; z-index: 1;
}

.pricing-amount {
  font-size: 14px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.pricing-number {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
  margin-bottom: 8px;
}
.pricing-number .per { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0; }

.pricing-note {
  font-size: 14px; color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  padding: 8px 0;
}
.pricing-features li::before {
  content: '✓'; font-weight: 800; color: var(--success);
  width: 20px; text-align: center; flex-shrink: 0;
}

.cta-section {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--navy);
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 17px;
  padding: 18px 36px; border-radius: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.2); }

.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 17px;
  padding: 18px 36px; border-radius: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.3); }

/* ============================================
   PREMIUM CTA FOOTER SECTION
   ============================================ */
.cta-footer {
  padding: 120px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,0,116,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(184,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-footer h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-footer p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-footer-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
footer {
  padding: 80px 24px 40px;
  background: var(--black);
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}

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

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-sub {
    margin: 0 auto 40px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-scroll-indicator {
    display: none;
  }

  .flow-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .flow-divider {
    flex-direction: row;
    padding: 20px 0;
  }
  
  .flow-divider .line {
    height: 2px;
    width: auto;
    flex: 1;
  }

  .commission-visual {
    grid-template-columns: 1fr;
  }
  
  .commission-right {
    padding-left: 0;
  }

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

  .example-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 48px;
  }
  
  .footer-links {
    gap: 48px;
    flex-wrap: wrap;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 100px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  .testimonial-card {
    width: 320px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 16px;
    height: 64px;
  }
  
  .nav-logo {
    font-size: 20px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  
  .hero-sub {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  
  .phone-frame {
    width: 260px;
  }
  
  .stamp-overlay {
    font-size: 16px;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 28px;
    letter-spacing: -1px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 28px 24px;
  }
  
  .cta-footer h2 {
    font-size: 28px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}

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

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

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

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 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.95);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Parallax effect helper */
.parallax {
  will-change: transform;
}

/* ============================================
   BOOKING DEMO MODAL
   ============================================ */

/* Overlay */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Card */
.booking-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform var(--transition-smooth);
  box-shadow: var(--shadow-2xl);
}

.booking-overlay.active .booking-modal {
  transform: translateY(0) scale(1);
}

/* Header */
.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.booking-steps-indicator {
  display: flex;
  gap: 8px;
}

.step-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-200);
  transition: all var(--transition-base);
}

.step-dot.active {
  background: var(--navy);
  width: 48px;
}

.step-dot.completed {
  background: var(--success);
}

.booking-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-close:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

/* Steps */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step-content {
  padding: 24px;
}

/* Typography */
.booking-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 8px;
}

.booking-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin: 0 0 24px;
  line-height: 1.5;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-group input:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 0, 116, 0.1);
}

.form-group input.error {
  border-color: var(--red);
  background: #fff5f5;
}

.form-error {
  display: block;
  font-size: 13px;
  color: var(--red);
  margin-top: 4px;
  min-height: 18px;
}

/* Buttons */
.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.booking-btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 116, 0.25);
}

.booking-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 116, 0.35);
}

.booking-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.booking-btn-primary.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Back button */
.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  padding: 0;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}

.booking-back:hover {
  color: var(--gray-900);
}

/* Date Picker */
.date-picker-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.date-picker-scroll::-webkit-scrollbar {
  display: none;
}

.date-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-width: 72px;
}

.date-pill:hover {
  border-color: var(--navy-light);
  background: rgba(0, 0, 116, 0.03);
}

.date-pill.selected {
  background: var(--gradient-primary);
  border-color: var(--navy);
  color: var(--white);
}

.date-pill-day {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.date-pill.selected .date-pill-day {
  opacity: 0.9;
}

.date-pill-date {
  font-size: 20px;
  font-weight: 800;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.date-pill-month {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.date-pill.selected .date-pill-month {
  opacity: 0.85;
}

/* Slot Cards */
.slot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.slot-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--white);
}

.slot-card:hover {
  border-color: var(--navy-light);
  background: rgba(0, 0, 116, 0.02);
}

.slot-card.selected {
  border-color: var(--navy);
  background: rgba(0, 0, 116, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 0, 116, 0.1);
}

.slot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-600);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.slot-card.selected .slot-icon {
  background: var(--navy);
  color: var(--white);
}

.slot-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slot-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-900);
}

.slot-time {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Confirmation */
.booking-confirmation {
  text-align: center;
  padding: 40px 24px;
}

.booking-success-icon {
  color: var(--success);
  margin-bottom: 16px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.booking-summary {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}

.booking-summary-label {
  color: var(--gray-500);
  font-weight: 500;
}

.booking-summary-value {
  color: var(--gray-900);
  font-weight: 700;
}

/* Button resets for CTA triggers (keep visual consistency when switching from <a> to <button>) */
button.btn,
button.btn-nav,
button.btn-cta-primary {
  font-family: inherit;
  line-height: inherit;
}

/* Responsive */
@media (max-width: 480px) {
  .booking-modal {
    max-height: 100vh;
    border-radius: var(--radius-lg);
  }

  .booking-step-content {
    padding: 20px 16px;
  }

  .booking-title {
    font-size: 20px;
  }

  .date-pill {
    min-width: 64px;
    padding: 10px 12px;
  }
}

/* ============================================
   LEGAL PAGES (Privacy Policy & Terms of Service)
   ============================================ */

.legal-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--gradient-dark);
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0.4;
  pointer-events: none;
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 24px;
  transition: var(--transition-base);
}

.legal-breadcrumb:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.legal-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.legal-meta {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.legal-content {
  padding: 80px 0;
  background: var(--white);
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.legal-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 12px;
  position: relative;
}

.legal-section ul li::marker {
  color: var(--navy);
}

.legal-section a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
}

.legal-section a:hover {
  color: var(--navy-light);
  border-bottom-color: var(--navy-light);
}

.legal-section strong {
  font-weight: 700;
  color: var(--gray-900);
}

.legal-list {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-list > li {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-sublist {
  margin-top: 12px;
  padding-left: 24px;
  list-style-type: circle;
}

.legal-sublist li {
  margin-bottom: 8px;
  color: var(--gray-700);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
  font-weight: 500;
}

.contact-info {
  background: var(--gray-50);
  border-left: 4px solid var(--navy);
  padding: 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.info-box {
  display: flex;
  gap: 16px;
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #3b82f6;
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.info-box svg {
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 2px;
}

.info-box strong {
  color: #1e40af;
  display: block;
  margin-bottom: 8px;
}

.legal-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 2px solid var(--gray-200);
}

.legal-footer p {
  font-size: 16px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
}

.legal-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  transition: all var(--transition-base);
}

.legal-links a:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
  .legal-hero {
    padding: 120px 0 60px;
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .legal-content {
    padding: 60px 0;
  }

  .legal-section h2 {
    font-size: 28px;
  }

  .legal-section h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 100px 0 50px;
  }

  .legal-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .legal-meta {
    font-size: 14px;
  }

  .legal-content {
    padding: 48px 0;
  }

  .legal-section {
    margin-bottom: 40px;
  }

  .legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .legal-section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-section ul {
    padding-left: 20px;
  }

  .contact-info {
    padding: 20px;
  }

  .info-box {
    padding: 16px;
    gap: 12px;
  }

  .legal-footer {
    margin-top: 48px;
  }

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

  .legal-links a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .legal-hero {
    padding: 90px 0 40px;
  }

  .legal-hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .legal-breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .legal-meta {
    font-size: 13px;
  }

  .legal-content {
    padding: 40px 0;
  }

  .legal-section {
    margin-bottom: 32px;
  }

  .legal-section h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .legal-section h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 14px;
    line-height: 1.6;
  }

  .legal-section ul {
    padding-left: 18px;
    margin: 12px 0;
  }

  .legal-section ul li {
    margin-bottom: 10px;
  }

  .contact-info {
    padding: 16px;
    font-size: 14px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .info-box {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .info-box svg {
    width: 20px;
    height: 20px;
  }

  .legal-footer {
    margin-top: 40px;
    padding-top: 24px;
  }

  .legal-footer p {
    font-size: 14px;
  }

  .legal-links a {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Print Styles for Legal Pages */
@media print {
  .navbar,
  footer,
  .legal-breadcrumb,
  .legal-links {
    display: none;
  }

  .legal-hero {
    background: none;
    padding: 20px 0;
  }

  .legal-hero h1 {
    color: var(--black);
  }

  .legal-meta {
    color: var(--gray-600);
  }

  .legal-content {
    padding: 20px 0;
  }

  .legal-section {
    page-break-inside: avoid;
  }

  .legal-section h2,
  .legal-section h3 {
    page-break-after: avoid;
  }
}