
:root {
  /* Colors */
  --color-bg-main: #020617; /* Very deep dark blue/black */
  --color-bg-card: rgba(15, 23, 42, 0.6);
  --color-bg-card-highlight: rgba(14, 22, 43, 0.5);
  --color-bg-footer: #020617;
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-tertiary: #64748b;
  --color-text-light: #e2e8f0;
  --color-text-dark: #020617;
  
  --color-primary: #00b8da;
  --color-primary-light: #54e4ff;
  --color-accent: #00da07;
  --color-danger: #fa2b36;

  /* Gradients */
  --gradient-primary: linear-gradient(90deg, rgba(0, 184, 218, 0.92) 0%, rgba(84, 228, 255, 0.92) 100%);
  --gradient-card: linear-gradient(180deg, rgba(14, 22, 43, 0.8) 0%, rgba(2, 6, 23, 0.9) 100%);
  --gradient-trusted: linear-gradient(180deg, rgba(0, 184, 218, 0.05) 0%, transparent 100%);
  
  /* Hero Background Glow Colors */
  --hero-glow-left: rgba(0, 184, 218, 0.35);
  --hero-glow-right: rgba(0, 184, 218, 0.25);
  --hero-glow-fade: rgba(0, 184, 218, 0.0);

  /* Spacing (8px system) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;
  --space-20: 160px;

  /* Typography */
  --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 10px;
  --font-size-sm: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;
  --font-size-5xl: 48px;
  --font-size-6xl: 56px;
  --font-size-7xl: 72px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0px 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0px 8px 24px rgba(0, 184, 218, 0.15);
  --shadow-lg: 0px 25px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0px 0px 20px rgba(0, 184, 218, 0.3);
  --shadow-glow-hover: 0px 0px 30px rgba(0, 184, 218, 0.5);
  
  /* Borders */
  --border-cyan: 1px solid rgba(0, 184, 218, 0.3);
  --border-light: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-main);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease-out, background 0.3s ease, border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* Hover State */
.cursor.active {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-follower.active {
  width: 50px;
  height: 50px;
  background: rgba(0, 184, 218, 0.1);
  border-color: var(--color-primary-light);
  opacity: 1;
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
  .cursor, .cursor-follower {
    display: none;
  }
  body, a, button, .video-card, .faq-item__question {
    cursor: auto !important;
  }
}


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

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

input, textarea, select {
  font-family: inherit;
  width: 100%;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
}

.text-highlight {
  color: var(--color-primary);
}

/* ==========================================================================
   4. Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  padding-left: var(--space-2);
  padding-right: var(--space-2);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
}

.section {
  padding: var(--space-8) var(--space-2);
}

@media (min-width: 768px) {
  .section {
    padding: 64px var(--space-3);
  }
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section__title {
  font-size: var(--font-size-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.title-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .section__title { font-size: var(--font-size-5xl); }
}

.section__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section__subtitle { font-size: var(--font-size-lg); }
}

/* ==========================================================================
   Header (Pill Shape)
   ========================================================================== */
.header {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 860px;
  margin: 0;
  padding: 0 var(--space-2);
}

@media (min-width: 1024px) {
  .header { max-width: 960px; }
}

.header__content {
  display: flex;
  flex-direction: column;
  background: rgba(4, 15, 26, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 184, 218, 0.4);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.header__content.is-open {
  border-radius: 20px;
}

/* The always-visible top bar inside the pill */
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 12px var(--space-3);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header__logo img {
  width: 40px;
  height: 40px;
  /* border-radius: 0x; */
}

.header__logo h2 {
  font-size: var(--font-size-sm);
  font-weight: 500;
  display: block;
}

@media (min-width: 640px) {
  .header__logo h2 { font-size: var(--font-size-lg); }
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .header__nav { display: flex; gap: var(--space-5); }
}

.header__nav a {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

@media (min-width: 1024px) {
  .header__nav a { font-size: var(--font-size-md); }
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__cta {
  display: none !important;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: #020617;
  white-space: nowrap;
  text-shadow: 0 0 0.5px #020617; /* Subtle thickness boost */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .header__cta { font-size: var(--font-size-md); }
}

@media (min-width: 768px) {
  .header__cta {
    display: block !important;
  }
}

/* Hamburger Button */
.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-text-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.header__hamburger .lucide {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-primary);
}

@media (min-width: 768px) {
  .header__hamburger { display: none; }
}

/* Mobile Dropdown (inside the pill) */
.header__mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              padding 0.3s ease;
  padding: 0 20px;
  border-top: 0px solid rgba(0, 184, 218, 0.2);
}

.header__content.is-open .header__mobile-dropdown {
  max-height: 400px;
  opacity: 1;
  padding: 16px 20px 20px;
  border-top-width: 1px;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.header__mobile-link {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
}

.header__mobile-link:last-child {
  border-bottom: none;
}

.header__mobile-cta {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 800;
  padding: 10px;
  border-radius: 12px;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .header__mobile-dropdown { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */



   
.hero {
  position: relative;
  width: 100%;
  padding-top: 140px; /* Increased to account for fixed header */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020813;
  background-image: 
    radial-gradient(ellipse 70% 90% at -5% 30%, rgba(0, 184, 218, 0.45) 0%, rgba(0, 184, 218, 0.1) 40%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 105% 20%, rgba(0, 184, 218, 0.3) 0%, rgba(0, 184, 218, 0.05) 50%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding-top: 160px; }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: 0 var(--space-3);
  max-width: 1000px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 184, 218, 0.05);
  border: 1px solid rgba(0, 184, 218, 0.3);
  border-radius: var(--radius-pill);
  padding: 10px 21px;
}

.hero__title {
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

@media (min-width: 768px) { .hero__title { font-size: var(--font-size-6xl); letter-spacing: -2px; } }
@media (min-width: 1024px) { .hero__title { font-size: 60px; } }

.hero__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero__desc br {
  display: none;
}

@media (min-width: 768px) {
  .hero__desc { font-size: var(--font-size-lg); }
  .hero__desc br { display: block; }
}
@media (min-width: 1024px) { .hero__desc { font-size: var(--font-size-xl); } }

/* ==========================================================================
   Trusted Section
   ========================================================================== */
.trusted {
  padding: var(--space-2) 0;
  background-color: #050B1D;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  margin-bottom: var(--space-4);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .trusted { padding: var(--space-3) 0; margin-bottom: var(--space-6); }
}

.trusted__title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.trusted__list {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 20s linear infinite;
  padding: 0;
}

.trusted__item {
  flex-shrink: 0;
}

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

.trusted__list:hover {
  animation-play-state: paused;
}

.trusted__item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.trusted__item img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .trusted__item img {
    width: 56px;
    height: 56px;
  }
  .trusted__item { gap: var(--space-2); }
}

.trusted__info h3 {
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.trusted__info p {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio__category {
  margin-bottom: var(--space-8);
}

.portfolio__category-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: var(--border-light);
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-4);
}

.portfolio__category-title {
  font-size: var(--font-size-xl);
}

.portfolio__category-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }
}

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

@media (min-width: 640px) {
  .video-grid--short {
    grid-template-columns: repeat(4, 1fr);
  }
}


.portfolio-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.is-hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}


/* ==========================================================================
   Process Section
   ========================================================================== */
#process {
  background-color: #050B1D;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 640px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .process__steps { 
    grid-template-columns: repeat(4, 1fr); 
    gap: var(--space-4); 
  }
  
  /* Connecting Line */
  .process__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(0, 184, 218, 0.3);
    z-index: 0;
  }
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__icon-wrapper {
  width: 80px;
  height: 80px;
  background: #101827; /* Dark background from image */
  border: none;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-3);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); */
}

.process__icon-wrapper .lucide {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  stroke-width: 1.5px;
}

.process__step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.process__step p {
  font-size: 13px;
  color: var(--color-text-tertiary);
  line-height: 1.6;
  max-width: 220px;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 480px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
#testimonials {
  background-color: #050B1D;
  overflow: hidden;
  position: relative;
  padding: var(--space-6) 0;
}

.testimonials__grid {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee-testimonials 35s linear infinite;
  padding: var(--space-4) 0;
}

.testimonials__grid .card {
  width: 320px;
  flex-shrink: 0;
}

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

.testimonials__grid:hover {
  animation-play-state: paused;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0 var(--space-1);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact__form {
  max-width: 560px;
  margin: var(--space-5) auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 var(--space-1);
}

/* Footer */
.footer {
  border-top: var(--border-light);
  padding: var(--space-4) var(--space-3);
  margin-top: var(--space-4);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: 1296px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a .social-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-secondary);
  fill: none; /* Default for stroke-based icons */
  transition: transform 0.3s ease, stroke 0.3s ease, fill 0.3s ease;
}

/* For icons that use fill instead of stroke (like the new WhatsApp) */
.footer__social a .social-icon[fill="currentColor"] {
  fill: var(--color-text-secondary);
  stroke: none;
}

.footer__social a:hover .social-icon {
  stroke: var(--color-primary);
  transform: translateY(-2px);
}

.footer__social a:hover .social-icon[fill="currentColor"] {
  fill: var(--color-primary);
  stroke: none;
}

/* ==========================================================================
   5. Components
   ========================================================================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  color: var(--color-text-dark);
  background: var(--gradient-primary);
  padding: 14px 28px;
  box-shadow: var(--shadow-glow);
  font-size: 18px; /* Increased font size */
  border-radius: 10px; /* Specific radius requested: 10px */
  font-weight: 900; /* Bold/Extra-bold */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-hover);
}

/* Hero Button specific style */
.btn--hero {
  color: var(--color-text-dark);
  background: var(--gradient-primary);
  padding: 12px 28px;
  box-shadow: var(--shadow-glow);
  font-size: 14px; /* Small font size as requested */
  border-radius: 16px; /* 16px radius as requested */
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn--hero:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-hover);
}


/* Animated Button with Star Border */
.btn--animated {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  padding: 1px !important;
  background: transparent !important;
  border: none !important;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  text-decoration: none;
}

.btn--animated::before {
  content: '';
  position: absolute;
  width: 300%;
  height: 50%;
  opacity: 1;
  bottom: -20%;
  right: -250%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, var(--color-primary), transparent 25%);
  animation: star-movement-bottom 4s linear infinite alternate;
  z-index: 0;
}

.btn--animated::after {
  content: '';
  position: absolute;
  opacity: 1;
  width: 300%;
  height: 50%;
  top: -20%;
  left: -250%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, var(--color-primary), transparent 25%);
  animation: star-movement-top 4s linear infinite alternate;
  z-index: 0;
}

.btn--animated .btn__content {
  position: relative;
  background: var(--gradient-primary);
  color: var(--color-text-dark);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  letter-spacing: 0.5px;
  height: 100%;
  font-weight: 800;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.btn--animated:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-hover);
}

.btn--animated:hover .btn__content {
  opacity: 0.9;
}



@keyframes star-movement-bottom {
  0% { transform: translate(0%, 0%); opacity: 1; }
  100% { transform: translate(-100%, 0%); opacity: 0.5; }
}

@keyframes star-movement-top {
  0% { transform: translate(0%, 0%); opacity: 1; }
  100% { transform: translate(100%, 0%); opacity: 0.5; }
}


.btn--full { width: 100%; }

/* Badges */
.badge__dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  position: relative;
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulse-dot 2s infinite;
}

.badge__dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}


.badge__text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 1px;
}

/* Benefits Cards */
/*.benefit-card {
  position: relative;
  background: linear-gradient(145deg, rgba(0, 184, 218, 0.08) 0%, rgba(0, 184, 218, 0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 218, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: left; 
}*/

.benefit-card {
    position: relative;
    background: linear-gradient(180deg, rgba(16, 24, 44, 0.35) 54%, rgba(0, 184, 219, 0.45) 100%);
    border: 1px solid #54e4ff9c;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

/* Original Card Style (Used for Testimonials, etc.) */
.card {
  position: relative;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
  opacity: 0.5;
}
.card__icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(0, 184, 218, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.card__icon-wrapper .lucide {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  stroke-width: 1.5px;
}

.card__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card__desc {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

/* Video Component */
.video-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 119, 143, 0.7) 0%, rgba(0, 184, 219, 0.7) 100%); /* 70% opacity */
  padding: 2px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 184, 219, 0.2); /* Subtle glow from all sides */
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}


.video-card--hero {
  max-width: 896px;
  margin: 0 auto;
}

.video-card__thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 2px); /* Ensures content doesn't bleed through the border */
}

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

.video-card:hover .video-card__thumbnail {
  transform: scale(1.05);
}

.video-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}


.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 184, 218, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
  border: none;
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-primary-light);
}

.video-card__play i {
  width: 24px;
  height: 24px;
  color: #000;
  margin-left: 4px;
}

.video-card__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  border: none;
}

.video-card.is-playing .video-card__overlay,
.video-card.is-playing .video-card__thumbnail { display: none; }
.video-card.is-playing .video-card__iframe { display: block; }

/* FAQ Item */
.faq-item {
  background: rgba(14, 22, 43, 0.4);
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.is-active {
  border-color: rgba(0, 184, 218, 0.3);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, stroke 0.3s ease;
  stroke: var(--color-text-secondary);
}

.faq-item.is-active .faq-item__icon {
  transform: rotate(45deg);
  stroke: var(--color-primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-active .faq-item__answer {
  max-height: 300px;
  padding: 0 var(--space-3) var(--space-3);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.input {
  width: 100%;
  background: rgba(14, 22, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus {
  border-color: var(--color-primary);
  box-shadow: inset 0px 0px 10px rgba(0, 184, 218, 0.1);
}

textarea.input {
  min-height: 100px;
  resize: vertical;
}

.label {
  display: block;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

/* ==========================================================================
   6. Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }

/* Success Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  background: #050B1D;
  border: 1px solid rgba(0, 184, 218, 0.3);
  border-radius: 24px;
  padding: 40px 32px;
  width: 90%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.is-visible .modal__content {
  transform: scale(1);
}

.modal__icon-box {
  width: 64px;
  height: 64px;
  background: rgba(0, 184, 218, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal__icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.modal__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.modal__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.modal__btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}
/* .mt-4 { margin-top: var(--space-4); } */
