/* DESIGN SYSTEM & TOKENS */
:root {
  /* Color Palette - Updated to eccentric, modern theme */
  --primary: #7f00ff;
  --primary-light: #ff0055;
  --primary-dark: #5b00b7;

  --purple: #7f00ff;
  --purple-soft: rgba(127, 0, 255, 0.15);
  --purple-light: rgba(127, 0, 255, 0.06);

  --pink: #ff0055;
  --pink-soft: rgba(255, 0, 85, 0.15);
  --pink-light: rgba(255, 0, 85, 0.06);

  --blue: #00f2fe;
  --blue-soft: rgba(0, 242, 254, 0.15);
  --blue-light: rgba(0, 242, 254, 0.06);

  --green: #00ff87;
  --green-soft: rgba(0, 255, 135, 0.15);
  --green-light: rgba(0, 255, 135, 0.06);

  --orange: #ff6b00;
  --orange-soft: rgba(255, 107, 0, 0.15);
  --orange-light: rgba(255, 107, 0, 0.06);

  --dark: #03010a;
  --dark-card-bg: #0a0816;
  --light: #070414;

  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);

  /* Border Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Premium Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow:
    0 0 20px rgba(127, 0, 255, 0.45), 0 0 40px rgba(255, 0, 85, 0.2);
}

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

html {
  scroll-behavior: smooth;
  /* clip instead of hidden: 'hidden' implicitly forces overflow-y:auto on html,
     making the html element the scroll container instead of window —
     that breaks GSAP ScrollTrigger's pin which listens to window scroll */
  overflow-x: clip;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background-color: var(--dark);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
}

p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* HELPER CLASSES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Compact layout padding */
.section-padding {
  padding: 70px 0;
}

.bg-light {
  background-color: var(--light);
}

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

.text-purple {
  color: var(--purple);
}
.text-pink {
  color: var(--pink);
}
.text-blue {
  color: #0ea5e9;
}
.text-green {
  color: #059669;
}
.text-orange {
  color: var(--orange);
}

.bg-purple-soft {
  background: var(--purple-soft);
}
.bg-pink-soft {
  background: var(--pink-soft);
}
.bg-blue-soft {
  background: var(--blue-soft);
}
.bg-green-soft {
  background: var(--green-soft);
}
.bg-orange-soft {
  background: var(--orange-soft);
}

.bg-purple-light {
  background: var(--purple-light);
}
.bg-pink-light {
  background: var(--pink-light);
}
.bg-blue-light {
  background: var(--blue-light);
}
.bg-green-light {
  background: var(--green-light);
}
.bg-orange-light {
  background: var(--orange-light);
}

.text-gradient {
  background: linear-gradient(135deg, #7f00ff 0%, #ff0055 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #ff0055 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 8px auto 0;
}

.mt-5 {
  margin-top: 36px;
}
.mb-4 {
  margin-bottom: 20px;
}

/* DYNAMIC SCROLL GLOW BACKGROUND */
.scroll-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: background, opacity, transform;
  transition:
    transform 0.15s ease-out,
    opacity 0.15s ease-out;
}

/* BUTTONS WITH LIQUID GLOWING EFFECTS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0055 0%, #7f00ff 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  border: none;
  animation: glowPulse 4s infinite alternate;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 28px rgba(127, 0, 255, 0.7),
    0 0 56px rgba(255, 0, 85, 0.45);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: #ffffff;
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #ff0055 0%, #7f00ff 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.8),
    0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  border: 2px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #25d366;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 15px rgba(127, 0, 255, 0.35),
      0 0 30px rgba(255, 0, 85, 0.15);
  }
  100% {
    box-shadow:
      0 0 25px rgba(127, 0, 255, 0.55),
      0 0 50px rgba(255, 0, 85, 0.3);
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  padding: 24px 60px; /* Sleek and stretched */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 14px 60px;
  background: rgba(3, 1, 10, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100% !important;
  padding: 0;
}

/* WAYNE BRAND LOGO */
.logo-wayne {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.logo-main-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 0.95;
  transition: color 0.3s ease;
}

.logo-sub-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  margin-top: 1px;
}

.logo-wayne:hover .logo-main-text {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 28px;
  border-radius: 9999px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links a.active::after {
  opacity: 1;
}

.nav-links a:hover::after {
  opacity: 0.5;
}

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

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-nav-outline:hover {
  background: #ffffff;
  color: #03010a;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-nav-outline i {
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu-toggle i {
  font-size: 1rem;
}

/* Mobile Dropdown Nav */
.mobile-nav {
  display: none;
  background: #060410; /* Deep black-violet */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 24px;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #ffffff;
  letter-spacing: 0.12em; /* Subtle micro-animation expansion on hover/active! */
}

/* Wide low-contrast capsule button at bottom of mobile menu */
.mobile-nav .btn-block {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  padding: 14px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-nav .btn-block:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  padding-top: 125px; /* Reduced for compactness */
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

/* HERO GEOMETRIC BACKGROUND STYLES (LIGHT VERSION) */
.hero-geometric-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(99, 102, 241, 0.04) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(244, 63, 94, 0.04) 0%,
      transparent 40%
    ),
    linear-gradient(to bottom, #ffffff, #f8fafc);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #f8fafc 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.75) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.geometric-shape {
  position: absolute;
  will-change: transform, opacity;
  opacity: 0;
  animation: entryShape 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) forwards;
  z-index: 1;
}

.shape-inner {
  position: relative;
  width: 100%;
  height: 100%;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--gradient-from) 0%, transparent 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 2px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.02);
}

.shape-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.5),
    transparent 70%
  );
  pointer-events: none;
}

/* Individual Shape Configurations */
.shape-1 {
  width: 600px;
  height: 140px;
  left: -10%;
  top: 15%;
  --rotate-start: -3deg; /* 12deg - 15deg */
  --rotate-end: 12deg;
  --gradient-from: rgba(99, 102, 241, 0.12); /* indigo */
  animation-delay: 0.3s;
}

.shape-2 {
  width: 500px;
  height: 120px;
  right: -5%;
  top: 60%;
  --rotate-start: -30deg; /* -15deg - 15deg */
  --rotate-end: -15deg;
  --gradient-from: rgba(244, 63, 94, 0.12); /* rose */
  animation-delay: 0.5s;
}

.shape-3 {
  width: 300px;
  height: 80px;
  left: 5%;
  bottom: 5%;
  --rotate-start: -23deg; /* -8deg - 15deg */
  --rotate-end: -8deg;
  --gradient-from: rgba(139, 92, 246, 0.12); /* violet */
  animation-delay: 0.4s;
}

.shape-4 {
  width: 200px;
  height: 60px;
  right: 15%;
  top: 10%;
  --rotate-start: 5deg; /* 20deg - 15deg */
  --rotate-end: 20deg;
  --gradient-from: rgba(245, 158, 11, 0.12); /* amber */
  animation-delay: 0.6s;
}

.shape-5 {
  width: 150px;
  height: 40px;
  left: 20%;
  top: 5%;
  --rotate-start: -40deg; /* -25deg - 15deg */
  --rotate-end: -25deg;
  --gradient-from: rgba(6, 182, 212, 0.12); /* cyan */
  animation-delay: 0.7s;
}

/* Animations */
@keyframes entryShape {
  0% {
    opacity: 0;
    transform: translateY(-150px) rotate(var(--rotate-start));
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(var(--rotate-end));
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; /* Reduced gap */
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  background-color: var(--purple-soft);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(127, 0, 255, 0.12);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 95%;
  line-height: 1.55;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; /* Tighter gap */
  margin-bottom: 28px;
}

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

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item .title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.feature-item .desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

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

/* 3D Phone Mockups Stack */
.phone-mockups-container {
  position: relative;
  width: 100%;
  height: 460px; /* More compact */
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-sphere {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(127, 0, 255, 0.25) 0%,
    rgba(255, 0, 85, 0.1) 60%,
    transparent 100%
  );
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.phone-mockups {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-wrapper {
  position: absolute;
  width: 185px; /* Compact width */
  height: 375px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25);
  border: 5px solid #10121e;
  background-color: var(--dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-1 {
  z-index: 1;
  transform: rotate(-9deg) translateX(-42%) translateY(15px);
}

.mockup-2 {
  z-index: 3;
  transform: scale(1.04);
  box-shadow: 0 35px 70px -15px rgba(127, 0, 255, 0.3);
}

.mockup-3 {
  z-index: 2;
  transform: rotate(9deg) translateX(42%) translateY(15px);
}

/* Hover effects */
.phone-mockups-container:hover .mockup-1 {
  transform: rotate(-12deg) translateX(-50%) translateY(5px);
}

.phone-mockups-container:hover .mockup-2 {
  transform: scale(1.07) translateY(-10px);
}

.phone-mockups-container:hover .mockup-3 {
  transform: rotate(12deg) translateX(50%) translateY(5px);
}

@keyframes phoneFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Trust Logos */
.client-logos {
  position: relative;
  z-index: 3;
  margin-top: 60px; /* Reduced */
  text-align: center;
}

.client-logos p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
/* Logo Marquee Styles */
.logo-marquee-container {
  overflow: hidden;
  padding: 14px 0;
  width: 100%;
  position: relative;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logoScroll 30s linear infinite;
}

.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  opacity: 0.65;
  transition: all 0.3s ease;
  user-select: none;
  flex-shrink: 0;
}

.logo-item:hover {
  color: var(--primary);
  opacity: 0.95;
  transform: translateY(-1.5px);
}

.logo-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke-width: 1.8;
}

.logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}

.brand-bold {
  font-weight: 800;
  color: #1e293b;
  transition: color 0.3s ease;
}

.logo-item:hover .brand-bold {
  color: var(--primary);
}

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

/* WHY CHOOSE US SECTION */
.why-choose-us {
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; /* Tight gap */
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(10, 8, 22, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 24px 18px; /* Tighter padding */
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(127, 0, 255, 0.15);
  border-color: rgba(127, 0, 255, 0.4);
  background: rgba(15, 12, 32, 0.85);
}

.why-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.why-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 8px;
  font-weight: 700;
  color: #ffffff;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
  flex-grow: 1;
}

.why-highlight {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  line-height: 1.35;
}

/* CREATIVE LEADERSHIP SECTION */
.creative-leadership-section {
  background: #ffffff;
}

.dark-card {
  background-color: var(--dark);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.dark-card-content {
  padding: 48px; /* Tighter */
}

.dark-card-content h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.15;
}

.dark-card-desc {
  color: #94a3b8 !important;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

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

.sys-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sys-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ff0055;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.sys-feature span {
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.dark-card-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: left;
}

.dark-card-banner p {
  color: #ffffff !important;
  font-size: 0.88rem;
  margin: 0;
}

.dark-card-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 420px;
}

.dark-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.badge-spark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7f00ff 0%, #ff0055 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.badge-title {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}

.badge-sub {
  display: block;
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* INDUSTRIES SECTION */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; /* Compact */
}

.industry-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(127, 0, 255, 0.2);
}

.industry-img-container {
  height: 170px; /* Reduced height */
  overflow: hidden;
  position: relative;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-img {
  transform: scale(1.06);
}

.industry-body {
  padding: 18px; /* Tighter spacing */
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ind-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.industry-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.industry-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* HOW IT WORKS SECTION */
.how-it-works {
  position: relative;
  z-index: 2;
  background-image: url('images/bg_howitworks.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 1, 10, 0.82);
  z-index: 0;
}
.how-it-works .container {
  position: relative;
  z-index: 1;
}

.steps-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.step-node {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 6px;
  z-index: 2;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin: 0 auto 12px;
}

.step-number.bg-purple {
  background-color: var(--purple);
}
.step-number.bg-pink {
  background-color: var(--pink);
}
.step-number.bg-orange {
  background-color: var(--orange);
}
.step-number.bg-green {
  background-color: #10b981;
}

.step-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(10, 8, 22, 0.85);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.step-node:hover .step-icon-box {
  transform: scale(1.08) translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-node h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.step-node p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.flow-line {
  flex-shrink: 0;
  width: 45px;
  margin-top: 40px;
  z-index: 1;
}

/* PRICING — REVAMPED FULL-WIDTH CENTERED */
.pricing .section-header {
  max-width: 620px;
  margin: 0 auto 2rem;
}

.pricing-audience-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}

.pricing-audience-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  letter-spacing: 0.02em;
}

.pricing-audience-tags span i {
  font-size: 0.9rem;
  color: var(--purple);
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 3rem;
}

.price-card {
  background: rgba(10, 8, 22, 0.7);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(127,0,255,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(127, 0, 255, 0.15);
  border-color: rgba(127, 0, 255, 0.25);
}

.price-card.popular {
  border: 1.5px solid rgba(127,0,255,0.6);
  background: rgba(15, 8, 40, 0.9);
  box-shadow: 0 0 40px rgba(127,0,255,0.18), 0 20px 50px rgba(0,0,0,0.3);
}

.price-card.popular::before {
  background: linear-gradient(90deg, transparent, var(--purple), var(--pink), transparent);
  opacity: 1;
}

.price-card.popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(127,0,255,0.25), 0 30px 60px rgba(0,0,0,0.4);
}

.popular-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
}

.price-card-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-tier-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.price-best-for {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.price-amount .period {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 20px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.price-features i {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-note {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.pricing-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-trust-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* TESTIMONIALS SLIDER */
.testimonials-section {
  background: var(--light);
  overflow: hidden;
}

.slider-viewport {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px 2px 15px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 10px;
}

.testi-card {
  background: rgba(10, 8, 22, 0.65);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  position: relative;
}

.quote-graphic {
  font-size: 2.5rem;
  color: var(--primary-light);
  opacity: 0.12;
  position: absolute;
  top: 20px;
  left: 28px;
  line-height: 1;
}

.testi-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 24px;
  display: flex;
  gap: 3px;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-light);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1px;
}

.client-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0a0816;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  color: var(--text-main);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #ff0055 0%, #7f00ff 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.arrow-prev {
  left: -15px;
}
.arrow-next {
  right: -15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 20px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff0055, #7f00ff);
}

/* FAQ SECTION (STANDALONE & COMPACT) */
.faq-compact-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.accordion-node {
  background: rgba(10, 8, 22, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-node:hover {
  border-color: rgba(127, 0, 255, 0.25);
  box-shadow: var(--shadow-sm);
}

.accordion-trigger {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.accordion-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-panel p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-bottom: 16px;
}

.accordion-node.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.accordion-node.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

/* FOOTER SECTION (FULL-WIDTH & PREMIUM BANNER CARD) */
.footer-section {
  background-color: #060212;
  position: relative;
  overflow: visible;
  color: #ffffff;
  padding: 110px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 45%;
  height: 55%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-glow-2 {
  position: absolute;
  bottom: 5%;
  right: 15%;
  width: 45%;
  height: 65%;
  background: radial-gradient(
    circle,
    rgba(127, 0, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-banner {
  background: linear-gradient(135deg, #180945 0%, #2f0761 50%, #4c0e9b 100%);
  border-radius: 24px;
  padding: 48px 60px 0 60px;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.footer-banner-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}

.footer-banner-content {
  padding-bottom: 48px;
}

.footer-banner-content h2 {
  color: #ffffff;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-banner-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.45;
  font-weight: 500;
}

.footer-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-footer-primary {
  background-color: #ffffff;
  color: #2f0761;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-footer-primary i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-footer-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.3),
    0 0 15px rgba(255, 255, 255, 0.2);
  color: #2f0761;
}

.btn-footer-primary:hover i {
  transform: translateX(3px);
}

.btn-footer-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-footer-secondary i {
  font-size: 1.1rem;
}

.btn-footer-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-banner-image-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  min-height: 320px;
  z-index: 1;
}

.wavy-ribbon-svg {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 340px;
  height: 450px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.doodle-head-svg {
  position: absolute;
  right: 0px;
  top: -70px;
  width: 250px;
  height: 250px;
  pointer-events: none;
  z-index: 4;
}

.businessman-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 3;
}

.footer-businessman-img {
  height: 460px;
  width: auto;
  display: block;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 3;
  pointer-events: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

/* SUB-FOOTER ROW */
.sub-footer-row {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sub-footer-left p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.sub-footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.sub-footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.sub-footer-nav a:hover {
  color: #ffffff;
}

.sub-footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sub-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.sub-footer-socials a:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 99;
}

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

.scroll-top-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(255, 0, 85, 0.6),
    0 0 40px rgba(127, 0, 255, 0.4);
}

/* Interactive Lead Form in Footer Banner */
.footer-lead-form {
  margin-top: 24px;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.form-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-select option {
  background-color: #1c0a4e;
  color: #ffffff;
}

.form-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-submit-btn {
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

/* Local SEO NAP Contact Block */
.footer-nap-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.nap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.nap-item i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Reveal Delays */
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.15s;
}
.delay-3 {
  transition-delay: 0.22s;
}
.delay-4 {
  transition-delay: 0.3s;
}
.delay-5 {
  transition-delay: 0.38s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-cards-container {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px !important;
  }
  .navbar.scrolled {
    padding: 12px 40px !important;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-mockups-container {
    height: 420px;
  }

  .phone-wrapper {
    width: 160px;
    height: 325px;
  }

  .dark-card {
    grid-template-columns: 1fr;
  }

  .dark-card-content {
    padding: 32px;
  }

  .system-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }

  .dark-card-image-wrapper {
    min-height: 340px;
  }

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

  .steps-flow {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .flow-line {
    display: none;
  }

  .step-node {
    width: 100%;
    max-width: 300px;
  }

  .footer-banner {
    padding: 40px 40px 0 40px;
  }

  .footer-banner-layout {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 20px;
    text-align: left;
  }

  .footer-banner-content {
    padding-bottom: 40px;
  }

  .footer-banner-content h2 {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .footer-banner-sub {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-select {
    grid-column: span 2;
  }
  .form-actions-row .btn {
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
  }

  .footer-banner-image-box {
    justify-content: flex-end;
    min-height: 260px;
    height: 100%;
  }

  .footer-businessman-img {
    height: 320px;
    right: 10px;
  }

  .wavy-ribbon-svg {
    right: -30px;
    width: 240px;
    height: 320px;
    opacity: 0.8;
    transform: none;
  }

  .doodle-head-svg {
    right: 0px;
    top: -25px;
    width: 170px;
    height: 170px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px !important;
  }
  .navbar.scrolled {
    padding: 10px 24px !important;
  }
  .logo-marquee-group {
    gap: 35px;
    padding-right: 35px;
  }

  .shape-1 {
    width: 320px !important;
    height: 90px !important;
    left: -15% !important;
    top: 15% !important;
  }
  .shape-2 {
    width: 260px !important;
    height: 80px !important;
    right: -10% !important;
    top: 60% !important;
  }
  .shape-3 {
    width: 180px !important;
    height: 50px !important;
    left: 5% !important;
    bottom: 5% !important;
  }
  .shape-4,
  .shape-5 {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .btn-nav-outline {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .navbar.menu-open .open-icon {
    display: none;
  }

  .navbar.menu-open .close-icon {
    display: block;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    margin: 0 auto;
    gap: 16px !important;
  }

  .industries-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    margin: 0 auto;
    gap: 16px !important;
  }

  .hero-features {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 270px !important;
    margin: 0 auto 28px !important;
    gap: 14px !important;
  }

  .feature-item {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .system-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  h2 br {
    display: none !important;
  }

  .pricing-cards-container {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto 2rem;
    gap: 16px;
  }

  .price-card.popular {
    box-shadow: 0 0 30px rgba(127,0,255,0.2);
  }

  .pricing-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-section {
    padding-top: 80px;
  }

  .sub-footer-row {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .sub-footer-nav {
    justify-content: center;
    gap: 16px;
  }

  .sub-footer-socials {
    justify-content: center;
  }

  .testi-card {
    padding: 28px 20px;
  }

  .testi-text {
    font-size: 1rem;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-banner-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-banner-content {
    padding-bottom: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-select {
    grid-column: auto;
  }
  .form-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .form-actions-row .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    font-size: 0.95rem;
  }
  .footer-nap-block {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
  }

  .footer-banner-image-box {
    justify-content: center;
    align-items: flex-end;
    min-height: 240px;
    height: 240px;
  }

  .businessman-wrapper {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .footer-businessman-img {
    height: 240px;
    position: relative;
    right: auto;
    bottom: 0;
    margin: 0 auto;
  }

  .wavy-ribbon-svg {
    right: 50%;
    transform: translateX(50%);
    width: 220px;
    height: 240px;
  }

  .doodle-head-svg {
    right: 50%;
    transform: translateX(50%);
    top: -20px;
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px !important;
  }
  .navbar.scrolled {
    padding: 8px 16px !important;
  }
  .logo-marquee-group {
    gap: 25px;
    padding-right: 25px;
  }

  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.6rem;
  }

  /* Make logo compact on narrow screens */
  .navbar-logo-img {
    height: 28px !important;
  }
  .logo-wayne {
    gap: 6px !important;
  }
  .logo-wayne svg {
    width: 28px !important;
    height: 22px !important;
  }
  .nav-container {
    padding: 0 16px !important;
    height: 60px !important; /* Slightly shorter navbar */
  }

  /* Stack and layout actions */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }

  /* Compact and non-overlapping phone mockups */
  .phone-mockups-container {
    height: 290px !important;
  }
  .phone-wrapper {
    width: 110px !important;
    height: 220px !important;
    border-width: 3px !important;
  }
  .mockup-1 {
    transform: rotate(-6deg) translateX(-38%) translateY(10px) !important;
  }
  .mockup-2 {
    transform: scale(1.02) !important;
  }
  .mockup-3 {
    transform: rotate(6deg) translateX(38%) translateY(10px) !important;
  }

  .badge {
    font-size: 0.6rem;
  }

  /* Smaller floating scroll to top button */
  .scroll-top-btn {
    width: 36px !important;
    height: 36px !important;
    bottom: 16px !important;
    right: 16px !important;
    font-size: 1rem !important;
  }

  /* Tighter sections on mobile */
  .section-padding {
    padding: 40px 0 !important;
  }

  .footer-banner {
    padding: 32px 20px 0 20px;
  }
  .footer-banner-content h2 {
    font-size: 1.5rem;
  }
  .footer-banner-sub {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  .footer-banner-image-box {
    min-height: 210px;
    height: 210px;
  }
  .footer-businessman-img {
    height: 210px;
  }
  .wavy-ribbon-svg {
    width: 190px;
    height: 210px;
  }
  .doodle-head-svg {
    width: 110px;
    height: 110px;
    top: -15px;
  }
}

/* CINEMATIC REDESIGN & GSAP SCROLL LAYOUTS */

.hero-cinematic {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #03010a;
  color: #ffffff;
}

.hero-visual-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Zoomed slightly for scroll scale */
  transform-origin: center center;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(3, 1, 10, 0.45) 0%, rgba(3, 1, 10, 0.95) 92%);
  z-index: 2;
}

.hero-overlay-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.futuristic-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  padding: 6px 18px;
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 9999px;
  background: rgba(0, 242, 254, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
}

.hero-massive-title {
  font-size: clamp(2.5rem, 6.5vw, 4.2rem); /* Slightly smaller on desktop layout */
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cinematic-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.18rem);
  color: #cbd5e1;
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-cta-group .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hero-cta-group .btn-outline:hover {
  background-color: #ffffff;
  color: #03010a;
  border-color: #ffffff;
}

/* MISSION SECTION (SCROLL TEXT REVEAL) */
.mission-section {
  background-image: url('images/bg_mission.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 0;
  position: relative;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.mission-text-container {
  max-width: 1000px;
}

.reveal-text {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.15); /* Base color before reveal */
}

.reveal-word {
  display: inline-block;
  opacity: 0.15;
  color: #ffffff;
  transition: opacity 0.1s ease;
}

/* PINNED HORIZONTAL WORKS SECTION */
.works-pin-section {
  position: relative;
  color: #ffffff;
  /* NO overflow:hidden here — GSAP pin inserts a spacer sibling and breaks if clipped */

  /* Cinematic dark background: dot-grid pattern + purple/blue gradient blooms */
  background-color: #05030f;
  background-image:
    /* Dot grid */
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
    /* Purple bloom — top right */
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(127,0,255,0.18) 0%, transparent 70%),
    /* Blue bloom — bottom left */
    radial-gradient(ellipse 55% 45% at 15% 90%, rgba(0,212,255,0.12) 0%, transparent 70%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}

.works-horizontal-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.works-horizontal-track {
  display: flex;
  flex-direction: row;
  width: 400vw;   /* 4 slides × 100vw — explicit so scrollWidth is always accurate */
  height: 100%;
  will-change: transform;
}

.work-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  box-sizing: border-box;
}

.intro-slide {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-slide .slide-content {
  max-width: 600px;
  text-align: left;
}

.slide-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.intro-slide h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.intro-slide p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.scroll-indicator i {
  animation: slideRight 1.5s infinite alternate;
}

@keyframes slideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(8px); }
}

.slide-card {
  width: 90%;
  max-width: 1100px;
  height: 75vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: var(--radius-xl);
  overflow: visible; /* allow ::before chrome rim to be visible outside */
  position: relative;
  border: none;

  /* Dark frosted glass interior */
  background: rgba(12, 8, 28, 0.55);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);

  /* Outer ambient glow — purple bloom like reference image */
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(127, 0, 255, 0.22),
    0 0 160px rgba(0, 180, 255, 0.08);
}

/* Clip inner content so image doesn't escape card corners */
.slide-card > * {
  overflow: hidden;
}
.slide-card .slide-img-box {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.slide-card .slide-body {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

/* Chrome acrylic rim — thick gradient border like reference image */
.slide-card::before {
  content: '';
  position: absolute;
  inset: -2px; /* rim sits just outside the card */
  border-radius: calc(var(--radius-xl) + 2px);
  padding: 2px; /* rim thickness */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92) 0%,    /* bright white specular top-left */
    rgba(190, 140, 255, 0.75) 18%,   /* soft purple */
    rgba(0, 200, 255, 0.65)  35%,    /* cyan sweep */
    rgba(255, 255, 255, 0.85) 48%,   /* mid-reflection white */
    rgba(140, 60, 255, 0.70) 65%,    /* deep purple */
    rgba(255, 255, 255, 0.55) 80%,   /* bottom catch-light */
    rgba(80, 20, 180, 0.45)  100%    /* dark violet base */
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  /* Slight blur on the rim itself — gives the "liquid" diffusion */
  filter: blur(0.4px);
}

/* Inner light sheen — diagonal wash across the card face */
.slide-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(160, 100, 255, 0.05) 40%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
}

.slide-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.slide-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-card:hover .slide-img-box img {
  transform: scale(1.04);
}

.card-price-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(3, 1, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  z-index: 10;
}

.slide-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(5, 3, 15, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 2;
}

.card-category {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-body h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.slide-body p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Show/hide layouts */
.desktop-only-layout {
  display: block;
}
.mobile-only-layout {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only-layout {
    display: none !important;
  }
  .mobile-only-layout {
    display: block !important;
  }
  
  /* MOBILE WORKS CONTAINER STYLES (SECRET LEVEL STYLE) */
  .mobile-works-container {
    padding: 60px 20px 40px;
    background-color: #03010a;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .works-tabs-list {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 4px;
    border-radius: 9999px;
    gap: 4px;
    margin: 0 auto 36px;
  }
  
  .works-tab-btn {
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    padding: 8px 18px;
    border-radius: 9999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
  }
  
  .works-tab-btn.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #baff39;
    text-shadow: 0 0 8px rgba(186, 255, 57, 0.35);
  }
  
  .works-tab-panel {
    display: none;
    animation: fadeInTab 0.5s ease-out;
  }
  
  @keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .works-tab-panel.active {
    display: block;
  }
  
  /* Carousel View */
  .mobile-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 24px;
  }
  
  .mobile-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-carousel-item {
    position: absolute;
    width: 65%;
    aspect-ratio: 5/4;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
    pointer-events: none;
  }
  
  .mobile-carousel-item.dragging {
    transition: none !important;
  }
  
  .mobile-carousel-card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }
  
  .mobile-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Carousel Pos States */
  .mobile-carousel-item.active {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
  }
  
  .mobile-carousel-item.left {
    transform: translate3d(-52%, 5px, 0) scale(0.8) rotate(-12deg);
    opacity: 0.3;
    z-index: 1;
  }
  
  .mobile-carousel-item.right {
    transform: translate3d(52%, 5px, 0) scale(0.8) rotate(12deg);
    opacity: 0.3;
    z-index: 1;
  }
  
  /* Details & Buttons */
  .mobile-carousel-info {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .m-carousel-category {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
  }
  
  .m-carousel-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
  }
  
  .m-carousel-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 20px;
  }
  
  .btn-project-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-project-view:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .btn-project-view .arrow-box {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Carousel Controls */
  .mobile-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 10px;
  }
  
  .m-carousel-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
  }
  
  .m-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Curved Dots Indicators */
  .m-carousel-dial-container {
    position: relative;
    width: 160px;
    height: 38px;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  
  .m-carousel-dial-wheel {
    position: relative;
    width: 160px;
    height: 160px;
    margin-top: 6px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: rotate(0deg);
  }
  
  .dial-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    left: 50%;
    top: 50%;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    transform: translate(-50%, -50%) rotate(var(--rot)) translateY(-64px);
    padding: 0;
  }
  
  .dial-dot[data-index="0"] {
    --rot: -24deg;
  }
  
  .dial-dot[data-index="1"] {
    --rot: 0deg;
  }
  
  .dial-dot[data-index="2"] {
    --rot: 24deg;
  }
  
  .dial-dot.active {
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    transform: translate(-50%, -50%) rotate(var(--rot)) translateY(-64px) scale(1.3);
    opacity: 1;
  }
  
  /* Grid Layout */
  .mobile-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px 0;
  }
  
  .mobile-grid-card {
    background: rgba(10, 8, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .m-grid-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  
  .m-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .m-grid-price {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(3, 1, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    z-index: 2;
  }
  
  .m-grid-body {
    padding: 20px;
  }
  
  .m-grid-cat {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--pink);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  
  .mobile-grid-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .m-grid-body p {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
  }
  
  /* List Layout */
  .mobile-list-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
  }
  
  .mobile-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 8, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .list-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--blue);
    width: 24px;
  }
  
  .list-info {
    flex-grow: 1;
    padding: 0 16px;
  }
  
  .list-cat {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--pink);
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
  }
  
  .mobile-list-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
  }
  
  .list-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
  }
}

/* =====================================================
   NEW ENHANCEMENTS — BOLD AI VIDEO AGENCY UPGRADE
   ===================================================== */

/* --- Navbar logo image --- */
.navbar-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.navbar-logo-img:hover {
  opacity: 0.85;
}

/* --- Preloader logo image --- */
.preloader-logo-img {
  width: clamp(180px, 30vw, 320px);
  height: auto;
  display: block;
}

/* --- Font: Bebas Neue for display headings --- */
.hero-massive-title,
.hero-gradient-word {
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.02em;
}

/* --- Film Grain Overlay --- */
.film-grain-svg {
  position: fixed;
  width: 0;
  height: 0;
  pointer-events: none;
}

.film-grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  filter: url(#grain);
  background: transparent;
  mix-blend-mode: overlay;
  animation: grain-shift 0.5s steps(2) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2px, 1px); }
  50%  { transform: translate(1px, -2px); }
  75%  { transform: translate(2px, 1px); }
  100% { transform: translate(-1px, 2px); }
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #03010a;
  overflow: hidden;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
}

.pre-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
}

.pre-sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  letter-spacing: 0.35em;
  color: var(--purple);
  text-transform: uppercase;
  font-weight: 600;
}

.preloader-curtain {
  position: absolute;
  inset: 0;
  background: var(--purple);
  transform: translateY(100%);
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(127, 0, 255, 0.7);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, transform 0.08s linear;
}

.cursor-ring.hovered {
  width: 52px;
  height: 52px;
  border-color: var(--pink);
  background: rgba(127, 0, 255, 0.08);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* --- Hero Eyebrow --- */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 6px 14px;
  border: 1px solid rgba(127, 0, 255, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* --- Hero gradient word --- */
.hero-gradient-word {
  background: linear-gradient(135deg, #fff 0%, #a78bfa 40%, #ff0055 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero title size boost --- */
.hero-massive-title {
  font-size: clamp(3.5rem, 9vw, 8rem) !important;
  line-height: 1.0 !important;
  margin-bottom: 1.2rem;
}

/* --- Btn glow pulse --- */
.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-glow:hover::after {
  opacity: 0.5;
  animation: glow-pulse 1.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* --- Stats Bar --- */
.stats-bar-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(127,0,255,0.08) 0%, rgba(255,0,85,0.06) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-item .stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1;
}
.stat-item .stat-suffix {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
/* number + suffix on same line */
.stat-item:first-child,
.stat-item:not(:first-child) {
  position: relative;
}
.stat-item .stat-number,
.stat-item .stat-suffix {
  display: inline;
}
/* wrap number+suffix together */
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }
  .stat-item {
    background: var(--dark);
    padding: 20px 12px;
  }
  .stat-divider { display: none; }
}

/* --- Gradient Section Headings --- */
.ai-tools-section h2,
.how-it-works h2,
.testimonials-section h2,
#faq h2,
.works-pin-section h2 {
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 60%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section heading accent line --- */
.section-subtitle {
  position: relative;
  padding-left: 18px;
}
.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
}
.text-center .section-subtitle {
  padding-left: 0;
}
.text-center .section-subtitle::before {
  display: none;
}

/* --- AI Tools Section --- */
.ai-tools-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.ai-tools-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(127,0,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 3rem;
}

.ai-tool-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 16px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}

.ai-tool-card:hover {
  border-color: rgba(127,0,255,0.4);
  background: rgba(127,0,255,0.07);
  transform: translateY(-4px);
}

.ai-tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(127,0,255,0.2), rgba(255,0,85,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.ai-tool-icon i {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-tool-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.ai-tool-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .ai-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-cards-container {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 2rem;
  }
}
@media (max-width: 500px) {
  .ai-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Works section horizontal progress bar --- */
.works-scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--blue));
  z-index: 10;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(127,0,255,0.6);
}

/* --- Scroll progress ring on scroll-to-top --- */
.scroll-top-btn {
  position: relative;
}

.scroll-progress-ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
  border-radius: 50%;
}

.scroll-ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 2.5;
}

.scroll-ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  transition: stroke-dashoffset 0.1s linear;
}

/* SVG gradient defined inline via JS — fallback color */
.scroll-ring-fill {
  stroke: var(--purple);
}

/* --- How It Works flow gradient lines --- */
.flow-line svg {
  filter: drop-shadow(0 0 4px rgba(127,0,255,0.3));
}

/* --- Card 3D tilt (CSS perspective layer) --- */
.slide-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.slide-card:hover {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 120px rgba(127, 0, 255, 0.35),
    0 0 200px rgba(0, 180, 255, 0.12);
}
.slide-card:hover::before {
  filter: blur(0px); /* sharpen rim on hover — crisper chrome */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1.0)   0%,
    rgba(200, 150, 255, 0.9)  18%,
    rgba(0,  220, 255, 0.8)   35%,
    rgba(255, 255, 255, 1.0)  48%,
    rgba(160,  80, 255, 0.85) 65%,
    rgba(255, 255, 255, 0.75) 80%,
    rgba(100,  30, 200, 0.6)  100%
  );
}

/* Mission overlay */
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 1, 10, 0.75);
  z-index: 0;
}
.mission-section .container {
  position: relative;
  z-index: 1;
}

/* --- Mission heading gradient --- */
.mission-section .reveal-text {
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 50%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Pricing heading gradient --- */
.pricing h2 {
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 60%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Footer heading gradient --- */
.footer-banner h2 {
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 60%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   MOBILE LAYOUT OPTIMISATION (≤768px)
   ===================================================== */
@media (max-width: 768px) {

  /* Fix iOS background-attachment: fixed bug — causes huge blank sections */
  .mission-section,
  .how-it-works {
    background-attachment: scroll;
  }

  /* Tighten all section vertical padding */
  .section-padding {
    padding: 44px 0 !important;
  }

  /* Navbar logo — bigger so it's actually readable */
  .navbar-logo-img {
    height: 34px !important;
  }

  /* Hero — tighten content spacing */
  .hero-overlay-content {
    padding: 0 20px;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 5px 10px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2em;
  }

  /* Hero title — smaller, not overwhelming */
  .hero-massive-title {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
    margin-bottom: 0.9rem;
  }

  .hero-cinematic-desc {
    font-size: 0.88rem !important;
    margin-bottom: 1.4rem;
    padding: 0 4px;
  }

  /* Hero buttons — compact, side by side, normal size */
  .hero-cta-group {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-cta-group .btn-lg {
    padding: 11px 20px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  /* Stats bar — tighter grid cells */
  .stats-bar-section {
    padding: 28px 0;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .stat-item .stat-suffix {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  /* Mission section — reduce min-height */
  .mission-section {
    min-height: auto;
    padding: 56px 0;
  }

  /* AI Tools — tighter grid and cards */
  .ai-tools-grid {
    gap: 10px;
    margin-top: 2rem;
  }

  .ai-tool-card {
    padding: 18px 10px 14px;
  }

  .ai-tool-icon {
    width: 38px;
    height: 38px;
  }

  .ai-tool-icon i {
    font-size: 1.1rem;
  }

  .ai-tool-name {
    font-size: 0.75rem;
  }

  .ai-tool-desc {
    font-size: 0.62rem;
  }

  /* How It Works — tighten steps flow */
  .steps-flow {
    gap: 16px !important;
  }

  .step-node {
    padding: 16px !important;
  }

  .step-icon-box i {
    font-size: 1.4rem !important;
  }

  /* Pricing — compact card inner padding */
  .price-card-inner {
    padding: 22px 18px;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .price-tagline {
    font-size: 0.78rem;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .price-features {
    gap: 9px;
    margin-bottom: 20px;
  }

  .price-features li {
    font-size: 0.78rem;
  }

  .pricing-audience-tags {
    gap: 7px;
    margin-bottom: 2rem;
  }

  .pricing-audience-tags span {
    font-size: 0.68rem;
    padding: 5px 10px;
  }

  /* Testimonials — tighter card */
  .testi-card {
    padding: 22px 18px !important;
  }

  .testi-text {
    font-size: 0.88rem !important;
  }

  /* FAQ — tighter */
  .accordion-trigger {
    padding: 14px 16px !important;
    font-size: 0.88rem !important;
  }

  .accordion-panel p {
    font-size: 0.82rem !important;
    padding: 12px 16px !important;
  }

  /* Footer banner — reduce padding */
  .footer-banner {
    padding: 28px 20px !important;
  }

  .footer-banner h2 {
    font-size: 1.5rem !important;
  }

  .footer-banner-sub {
    font-size: 0.82rem !important;
    margin-bottom: 16px !important;
  }

  /* Scroll to top — don't overlap footer on mobile */
  .scroll-top-btn {
    bottom: 16px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

