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

:root {
  --primary-color: #FF6D29; /* Vibrant Arounda Coral Orange */
  --primary-color-hover: #FF854D; /* Glowing Bright Orange */
  --secondary-color: #453027; /* Rich Warm Cocoa Bronze */
  --background-dark: #161316; /* Deep Arounda Charcoal Abyss */
  --background-light: #161316;
  --text-main: #FFFFFF; /* Crisp Pure White Text */
  --text-muted: #BABABA; /* Arounda Muted Silver Text */
  --glass-bg: rgba(69, 48, 39, 0.45); /* Frosted Warm Bronze Glass */
  --glass-border: rgba(255, 109, 41, 0.28); /* Glowing Coral Tech Border */
  --accent-glow: 0 10px 30px rgba(255, 109, 41, 0.25); /* Glowing Coral Shadow */
  --font-family: 'Outfit', sans-serif;
  --glass-shadow: 0 20px 50px rgba(22, 19, 22, 0.75); /* Deep Executive Bronze Shadow */
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: clamp(80px, 10vh, 120px);
}

body {
  font-family: var(--font-family);
  background-color: var(--background-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img, video, svg, iframe, canvas {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Animated Ambient Background (Arounda Prismatic Warm Bronze Theme) */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 50% 25%, #453027 0%, #291D1A 55%, #161316 100%);
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
  opacity: 0.65;
}

.aurora-1 {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(255, 109, 41, 0.32) 0%, rgba(255, 109, 41, 0) 70%);
  animation: float-aurora-1 25s ease-in-out infinite alternate;
}

.aurora-2 {
  bottom: -15%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(255, 133, 77, 0.28) 0%, rgba(69, 48, 39, 0) 70%);
  animation: float-aurora-2 30s ease-in-out infinite alternate;
}

.aurora-3 {
  top: 40%;
  left: 30%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(69, 48, 39, 0.5) 0%, rgba(255, 109, 41, 0) 70%);
  animation: float-aurora-3 22s ease-in-out infinite alternate;
}

#neural-grid-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

@keyframes float-aurora-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15vw, 20vh) scale(1.15); }
  100% { transform: translate(-5vw, 35vh) scale(0.95); }
}

@keyframes float-aurora-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20vw, -15vh) scale(1.2); }
  100% { transform: translate(10vw, -25vh) scale(0.9); }
}

@keyframes float-aurora-3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15vw, 15vh) scale(1.3); }
  100% { transform: translate(20vw, -10vh) scale(1.05); }
}

@media (max-width: 768px) {
  .aurora-orb { filter: blur(90px); opacity: 0.25; }
  #neural-grid-canvas { opacity: 0.35; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem); }
p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: clamp(0.95rem, 1.5vw, 1.125rem); }

.text-gradient {
  background: linear-gradient(135deg, #FF854D 0%, #FF6D29 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 109, 41, 0.35);
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
  overflow-wrap: break-word;
}

ul { list-style: none; }



/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent; color: var(--text-main);
  transform: translateZ(0);
}

.navbar.scrolled {
  background: rgba(22, 19, 22, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 109, 41, 0.3);
  box-shadow: 0 4px 30px rgba(22, 19, 22, 0.6);
  padding: clamp(0.75rem, 2vw, 1rem) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-logo span { color: var(--primary-color); }

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
}
.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

/* Liquid glass sheen animation */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: liquid-glass 3.5s infinite ease-in-out;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes liquid-glass {
  0% { left: -150%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary {
  background-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(255, 109, 41, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
  background-color: var(--primary-color-hover);
  box-shadow: 0 12px 35px rgba(255, 109, 41, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(69, 48, 39, 0.7);
  color: var(--text-main);
  border: 1px solid rgba(255, 109, 41, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(22, 19, 22, 0.5);
}
.btn-secondary:hover {
  background-color: rgba(255, 109, 41, 0.2);
  border-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(255, 109, 41, 0.3);
  transform: translateY(-2px);
}

/* Floating CTAs */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 25px rgba(10, 33, 192, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 35px rgba(10, 33, 192, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.5);
}
.float-demo {
  background: var(--primary-color);
  position: relative;
}
.float-demo::before {
  content: "Book Demo";
  position: absolute;
  right: 75px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.float-demo:hover::before {
  opacity: 1;
  visibility: visible;
}
.float-wa {
  background: #25D366;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 109, 41, 0.6);
  box-shadow: 0 20px 45px rgba(255, 109, 41, 0.2), 0 0 30px rgba(255, 109, 41, 0.15);
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* Highlight Text */
.text-gradient {
  background: linear-gradient(135deg, #FF854D 0%, #FF6D29 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 109, 41, 0.35);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(5rem, 12vh, 6rem);
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.25rem); margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: clamp(2rem, 5vw, 3rem); }

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid var(--glass-border);
}
.metric-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.metric-item i { color: var(--primary-color); font-size: 1.25rem; }

/* Interactive Agency Showcase & Marquee Animations */
.dashboard-mockup {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

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

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(69, 48, 39, 0.75);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 109, 41, 0.35);
  box-shadow: 0 4px 10px rgba(22, 19, 22, 0.4);
  transition: all 0.3s ease;
  cursor: default;
}
.marquee-badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(255, 109, 41, 0.3);
}

@keyframes slide-in-activity {
  0% { opacity: 0; transform: translateY(-15px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.activity-item {
  animation: slide-in-activity 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.3s ease;
}
.activity-item:hover {
  transform: translateX(4px);
  border-color: var(--primary-color) !important;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.live-indicator {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 2s infinite;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: clamp(1.5rem, 5vw, 3rem); }
.section-title { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { max-width: 600px; margin: 0 auto clamp(2rem, 5vw, 4rem) auto; font-size: clamp(1rem, 2vw, 1.125rem); }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(1rem, 3vw, 2rem); }

/* Services */
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 109, 41, 0.15);
  border: 1px solid rgba(255, 109, 41, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.service-card p { font-size: 1rem; margin-bottom: 0; }
.service-card:hover .card-img-hover {
  transform: scale(1.08) !important;
}

/* AI Funnel Annotator */
.funnel-annotator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  margin-top: 1rem;
}

.annotator-avatar-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(10, 33, 192, 0.4);
  flex-shrink: 0;
  position: relative;
}

.annotator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Zoom slightly to focus on the person */
}

.annotator-bubble {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
  border-radius: 20px;
  border-bottom-right-radius: 4px;
  max-width: min(100%, 400px);
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: all 0.3s ease;
}

#annotator-text {
  margin: 0;
  color: var(--text-main);
  font-weight: 500;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  transition: opacity 0.3s ease;
}

.annotator-bubble.typing {
  animation: pulse-bubble 0.5s ease;
}

@keyframes pulse-bubble {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); box-shadow: var(--accent-glow); }
  100% { transform: scale(1); }
}

/* How It Works (Funnel) */
.funnel-wrapper {
  position: relative;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.funnel-track {
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--glass-border);
  border-radius: 2px;
  z-index: 1;
}

.funnel-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--primary-color);
  box-shadow: var(--accent-glow);
  border-radius: 2px;
  transition: width 7s cubic-bezier(0.4, 0, 0.2, 1);
}

.funnel-wrapper.animated .funnel-fill {
  width: 100%;
}

.funnel-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.step-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
  z-index: 1;
}

.step-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.step-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.step-content p {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Active State for Steps */
.funnel-step.active .step-number {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(10, 33, 192, 0.5);
}

.funnel-step.active .step-glow {
  opacity: 0.6;
  transform: scale(1.2);
}

.funnel-step.active .step-content {
  opacity: 1;
  transform: translateY(0);
}
.funnel-step.active .step-content h4 {
  color: var(--text-main);
}

/* Comparison Table */
.comparison-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 4vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  border-radius: 24px;
}
.compare-bad {
  background: rgba(41, 29, 26, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: var(--text-main);
}
.compare-good {
  background: rgba(255, 109, 41, 0.12);
  border: 1px solid var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 10px 30px rgba(255, 109, 41, 0.2);
  position: relative;
}
.compare-good::before {
  content: 'GrowthMate';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #FFFFFF;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}
.compare-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.compare-bad .compare-list i { color: #ef4444; }
.compare-good .compare-list i { color: var(--primary-color); }

/* Testimonials */
.testimonial-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.stars { color: #FDB813; margin-bottom: 1rem; }
.user-info { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.user-details h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.user-details p { font-size: 0.875rem; margin-bottom: 0; }

/* FAQ */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.faq-question {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
  gap: 1rem;
}
.faq-answer {
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding-bottom: clamp(1rem, 3vw, 1.5rem);
  max-height: 300px;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Pricing */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--accent-glow);
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}
.popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 600;
}
.pricing-header { text-align: center; margin-bottom: clamp(1.5rem, 4vw, 2rem); border-bottom: 1px solid var(--glass-border); padding-bottom: clamp(1.5rem, 4vw, 2rem); }
.pricing-title { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 0.5rem; }
.pricing-price { font-size: clamp(2rem, 5vw, 2.5rem); font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.pricing-features { flex-grow: 1; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.pricing-features i { color: var(--primary-color); margin-top: 0.25rem; flex-shrink: 0; }
.pricing-btn { width: 100%; margin-top: auto; }

/* Booking Section */
.booking-section { background: var(--glass-bg); border-radius: 32px; padding: clamp(1.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.booking-form { background: var(--glass-bg); padding: clamp(1.25rem, 4vw, 2.5rem); border-radius: 24px; border: 1px solid var(--glass-border); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.875rem; }
.form-control { width: 100%; padding: 0.875rem 1rem; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-main); font-family: inherit; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary-color); background: rgba(179, 180, 189, 0.5); }
textarea.form-control { resize: vertical; min-height: 120px; }
.trust-badges { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.trust-badges li { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); }
.trust-badges i { color: #10B981; flex-shrink: 0; }

/* Footer */
.footer-cta {
  background: radial-gradient(circle at 50% 50%, rgba(69, 48, 39, 0.85) 0%, rgba(22, 19, 22, 0.95) 100%);
  border-top: 1px solid var(--glass-border);
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}
footer {
  background: #161316;
  border-top: 1px solid rgba(255, 109, 41, 0.3);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: clamp(1.5rem, 3vw, 2rem); margin-bottom: clamp(2rem, 5vw, 3rem); }
.footer-brand p { margin-top: 1rem; font-size: 0.875rem; }
.footer-links h4 { font-size: 1.125rem; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary-color); transform: translateY(-3px); }

/* Mobile Responsive */
@media (max-width: 1024px) {
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-10px); }
  .booking-section { grid-template-columns: 1fr; padding: clamp(1.5rem, 4vw, 3rem); gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(22, 19, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 109, 41, 0.3);
    box-shadow: 0 20px 40px rgba(22, 19, 22, 0.8);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn { display: block; }
  
  .btn, .nav-links .btn, .hero-btns .btn, .pricing-btn, .footer-cta .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-btns { flex-direction: column; width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  
  .funnel-steps-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .funnel-track {
    top: 0;
    left: 23px;
    width: 4px;
    height: 100%;
    right: auto;
  }
  .funnel-fill {
    width: 100%;
    height: 0%;
    transition: height 7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .funnel-wrapper.animated .funnel-fill {
    height: 100%;
    width: 100%;
  }
  .funnel-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .step-number-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
  }
  
  /* Mobile fixed CTA */
  .mobile-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    z-index: 998;
    display: flex;
    justify-content: center;
  }
  .mobile-fixed-cta .btn { width: 100%; }
  body { padding-bottom: 80px; }
  .floating-cta { bottom: 90px; right: 1rem; }
}

@media (max-width: 480px) {
  .nav-links { padding: 1.5rem; }
  .nav-links a { padding: 12px 0; min-height: 44px; display: inline-flex; align-items: center; } /* Touch targets */
  .btn { min-height: 48px; }
  
  .dashboard-mockup { display: none; } /* Hide complex mockups on very small screens */
  .hero-content { padding: 1rem 0; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #161316; }
::-webkit-scrollbar-thumb { background: #453027; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* ==========================================================================
   Arounda Bronze/Coral Theme Adaptation & Inline Style Overrides
   Ensures cards, marquee gradients, and text elements match the Arounda palette
   ========================================================================== */
.showcase-container,
.showcase-container > div > div,
.roi-simulator,
.roi-simulator > div[style*="rgba(30, 41, 59"],
.activity-item,
.marquee-section,
.video-showcase {
  background: var(--glass-bg) !important;
  border-color: var(--glass-border) !important;
  color: var(--text-main) !important;
  box-shadow: var(--glass-shadow) !important;
}

.marquee-container > div[style*="linear-gradient(to right"] {
  background: linear-gradient(to right, #161316, rgba(22, 19, 22, 0)) !important;
}
.marquee-container > div[style*="linear-gradient(to left"] {
  background: linear-gradient(to left, #161316, rgba(22, 19, 22, 0)) !important;
}

.showcase-container h3,
.showcase-container div[style*="color: #F8FAFC"],
.roi-simulator div[style*="color: #F8FAFC"],
.roi-simulator label[style*="color: #F8FAFC"],
.activity-item div[style*="color: #F8FAFC"],
.marquee-section p[style*="color: #94A3B8"],
.trust-badges li,
.form-control {
  color: #FFFFFF !important;
}

.showcase-container p[style*="color: #94A3B8"],
.roi-simulator p[style*="color: #94A3B8"],
.roi-simulator div[style*="color: #94A3B8"],
.activity-item div[style*="color: #94A3B8"],
.activity-item span[style*="color: #94A3B8"] {
  color: #BABABA !important;
}

.roi-simulator div[style*="background: linear-gradient(135deg, #1E3A8A"],
.roi-simulator div[style*="background: linear-gradient(135deg, #2563EB"] {
  background: linear-gradient(135deg, #FF6D29 0%, #453027 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 109, 41, 0.5) !important;
  box-shadow: 0 10px 30px rgba(255, 109, 41, 0.3) !important;
}
.roi-simulator div[style*="background: linear-gradient(135deg, #1E3A8A"] *,
.roi-simulator div[style*="background: linear-gradient(135deg, #2563EB"] * {
  color: #FFFFFF !important;
}

