/* =========================================================
   FRIDEX SOLUTIONS — Premium Landing Page Stylesheet
   Enterprise, Trustworthy, Custom-Coded Aesthetic
   ========================================================= */

/* ─── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Inter:wght@400;500&display=swap');

/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS — Fridex Enterprise Color System
══════════════════════════════════════════════════════════ */
:root {
  /* ── Backgrounds ────────────────────────── */
  --bg-primary:     #F8F9FA;       /* Crisp Off-White */
  --bg-secondary:   #0B192C;       /* Deep Navy / Midnight Blue */
  --bg-card:        #FFFFFF;       /* Pure White for cards */
  --bg-glass:       rgba(255, 255, 255, 0.95);
  --bg-glass-hover: #FFFFFF;

  /* ── Brand Colors (WCAG Compliant) ───────────────────── */
  --blue-primary:   #25D366;       /* Primary CTA / Active Links (WhatsApp Green) */
  --blue-hover:     #20ba5a;       /* Hover state green */
  --red-accent:     #c8202e;       /* Accent / Badges */
  
  /* ── Text Colors ─────────────────────────────────────── */
  --text-primary:   #1A1A1A;       /* Deep Charcoal for body text on light bg */
  --text-secondary: #4A5568;       /* Muted text on light bg (accessible) */
  --text-on-dark:   #FFFFFF;       /* Stark white on dark bg */
  --text-on-dark-sub:#E2E8F0;      /* Slightly muted white on dark bg */

  /* ── Borders ─────────────────────────────────────────── */
  --border-subtle:  #E2E8F0;
  --border-card:    #E2E8F0;
  --border-blue:    var(--blue-primary);

  /* ── Shadows (Realistic & Subtle) ───────────────────── */
  --shadow-sm:      0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:      0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:      0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-card:    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);

  /* ── Spacing — strict 8px grid ───────────────────────── */
  --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-16: 128px;

  /* ── Typography ──────────────────────────────────────── */
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Radii (Slightly sharper for enterprise look) ────── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* ── Transitions ─────────────────────────────────────── */
  --transition:      0.2s ease-in-out;
  --transition-slow: 0.4s ease-in-out;

  /* ── Layout tokens ───────────────────────────────────── */
  --navbar-h:  80px;
  --marquee-h: 46px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  min-height: 48px;
}

ul { list-style: none; }

/* ─── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Utility ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section-padding { padding: 4.5rem 0; }
.section-padding-sm { padding: 3rem 0; }

.text-blue { color: var(--blue-primary); }
.text-red  { color: var(--red-accent); }
.text-center { text-align: center; }

h1, h2, h3, h4, h5, h6,
.section-title, .hero-headline, .hero-title, .cta-banner-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(61, 184, 232, 0.1);
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

/* Logo image constraints */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 140px; /* Small, refined logo size for header */
  height: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  position: relative;
}

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

.btn-nav-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: #fff;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── Mobile WhatsApp Button & Hamburger (3 Parallel Lines) ── */
.mobile-wa-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  min-height: auto;
  flex-shrink: 0;
}

.mobile-wa-icon-btn:hover {
  background: #20ba5a;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  color: #FFFFFF !important;
}

/* ── Compact Luxury Mobile Menu Hamburger Button ────────── */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(11, 25, 44, 0.04);
  border: 1px solid rgba(11, 25, 44, 0.12);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hamburger:hover,
.hamburger.active {
  background: rgba(61, 184, 232, 0.12);
  border-color: var(--blue-primary);
  box-shadow: 0 4px 12px rgba(61, 184, 232, 0.2);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) { width: 18px; }
.hamburger span:nth-child(2) { width: 13px; margin-left: 0; align-self: flex-start; margin-left: 11px; }
.hamburger span:nth-child(3) { width: 18px; }

.hamburger:hover span,
.hamburger.active span {
  background: var(--blue-primary);
}

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

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

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

/* ── Ultra-Premium Executive Mobile Menu Drawer ────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #0B192C 0%, #060D17 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
  padding: 4.5rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000 !important;
  overflow-y: auto;
  color: #FFFFFF;
}

.mobile-menu.open { right: 0 !important; }

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #FFFFFF;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001 !important;
  cursor: pointer;
}

.mobile-menu-close:hover {
  color: var(--blue-primary);
  background: rgba(61, 184, 232, 0.2);
  border-color: var(--blue-primary);
  transform: rotate(90deg);
}

.mobile-menu-brand-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-brand-header img {
  max-width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  transition: all 0.25s ease;
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
}

.mobile-menu a i.nav-arrow {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active { 
  color: #FFFFFF;
  background: rgba(61, 184, 232, 0.12);
  border-color: rgba(61, 184, 232, 0.3);
  padding-left: 1.25rem;
}

.mobile-menu a:hover i.nav-arrow,
.mobile-menu a.active i.nav-arrow {
  color: var(--blue-primary);
  transform: translateX(4px);
}

.mobile-menu-footer-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu .btn-nav-cta {
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 24px !important;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, var(--blue-primary), var(--red-accent)) !important;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(61, 184, 232, 0.35);
  transition: all 0.3s ease;
}

.mobile-menu .btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 32, 46, 0.5);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999 !important;
}
.overlay.show { display: block !important; }

/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-section {
  border-bottom: 1px solid var(--border-subtle);
  background: #FFFFFF;
  overflow: hidden;
  padding: 12px 0;
  margin-top: var(--navbar-h);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-5);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   HERO (Luxury Parallax & Glassmorphism)
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-secondary);
  background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: var(--space-10) var(--space-4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 25, 44, 0.7);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 6;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-accent);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: #FFFFFF;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-primary);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--space-3);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  width: 100%;
}

/* ══════════════════════════════════════════════════════════
   TRUSTED BY MARQUEE
══════════════════════════════════════════════════════════ */
.trusted-by {
  background: var(--bg-secondary);
  padding: var(--space-6) 0 var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trusted-heading {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-sub);
  margin-bottom: var(--space-5);
  text-align: center;
  opacity: 0.6;
}

.trusted-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trusted-marquee::before, .trusted-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  align-items: center;
  gap: 6rem;
}

.trusted-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  opacity: 0.3;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  white-space: nowrap;
  user-select: none;
}

.trusted-logo:hover {
  opacity: 1;
  color: var(--blue-primary);
  transform: scale(1.05);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: var(--blue-primary);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.hero-headline .highlight {
  color: var(--blue-primary);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

/* ── Shared buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--blue-primary);
  color: #fff;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-3px);
  box-shadow: 0px 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-3px);
  box-shadow: 0px 10px 20px rgba(37, 211, 102, 0.3);
}

/* ── Hero stats ─────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-stat { text-align: left; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── Hero Image / Form Area ─────────────────────────────── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 500px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features {
  background: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: 2.5rem;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 184, 232, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-primary);
  margin-bottom: var(--space-3);
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about {
  background: var(--bg-primary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 5;
  max-height: 600px;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  margin-top: var(--space-4);
}

.about-point {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.about-point-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(61, 184, 232, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 0.875rem;
  margin-top: 4px;
}

.about-point-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-point-text span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════
   SERVICES (Alternate Background)
══════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-secondary);
  color: var(--text-on-dark);
}

.services .section-title {
  color: var(--text-on-dark);
}
.services .section-subtitle {
  color: var(--text-on-dark-sub);
}
.services .section-label {
  background: rgba(61, 184, 232, 0.15);
  color: var(--blue-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: 2.5rem;
}

.service-card {
  background: #11223A; /* Slightly lighter navy for contrast */
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.service-card-body {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--text-on-dark);
  margin-bottom: var(--space-2);
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-on-dark-sub);
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.service-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-on-dark-sub);
}

.service-card-feature i {
  color: var(--blue-primary);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   STATS (Pure White Section)
══════════════════════════════════════════════════════════ */
.stats {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-10) 0;
}

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

.stat-item {
  text-align: center;
  padding: var(--space-4);
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: 2.5rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.testimonial-stars i {
  color: var(--red-accent);
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-3);
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(61, 184, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial-author-info span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════
   FAQ (Modern Executive Cards)
══════════════════════════════════════════════════════════ */
.faq {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--blue-primary);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--blue-primary);
}

.faq-item.active .faq-question {
  color: var(--text-primary);
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--blue-primary);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #FFFFFF;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer { 
  max-height: 500px; 
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER (Deep Navy)
══════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--bg-secondary);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  color: var(--text-on-dark);
  margin-bottom: var(--space-3);
}

.cta-banner-sub {
  color: var(--text-on-dark-sub);
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

/* ══════════════════════════════════════════════════════════
   FOOTER (Sleek Compact Deep Navy)
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  padding: 2.25rem 0 0;
  color: var(--text-on-dark-sub);
  border-top: 3px solid var(--red-accent);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  min-width: 160px;
  max-width: 180px;
  height: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 10px;
  border-left: 3px solid var(--red-accent);
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  transition: all 0.25s ease;
  word-break: break-word;
  white-space: normal;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--red-accent);
  transform: translateX(4px);
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-accent);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 32, 46, 0.35);
  min-height: auto;
}

.btn-footer-cta:hover {
  background: #a81c27;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 32, 46, 0.5);
  color: #FFFFFF !important;
}

/* Footer Bottom Auto-Sliding Marquee Strip */
.footer-marquee-strip {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.footer-marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.footer-marquee-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-marquee-item a:hover {
  color: #25D366;
  text-decoration: underline;
}

.footer-marquee-dot {
  color: var(--red-accent);
  font-size: 0.9rem;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 32, 46, 0.12);
  border: 1px solid rgba(200, 32, 46, 0.25);
  color: var(--red-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: auto;
}

.footer-socials a:hover {
  background: var(--red-accent);
  color: #FFFFFF;
  border-color: var(--red-accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200, 32, 46, 0.4);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL (Cinematic Cubic-Bezier)
══════════════════════════════════════════════════════════ */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-loaded .reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════
   BOXICONS INSPIRED ANIMATIONS (Hero Section)
══════════════════════════════════════════════════════════ */
@keyframes bx-fade-up {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes bx-tada {
  from { transform: scale3d(1,1,1); }
  10%,20% { transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg); }
  30%,50%,70%,90% { transform: scale3d(1,1,1) rotate3d(0,0,1,10deg); }
  40%,60%,80% { transform: scale3d(1,1,1) rotate3d(0,0,1,-10deg); }
  to { transform: scale3d(1,1,1); }
}

.animate-fade-up {
  animation: bx-fade-up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}
.animate-tada {
  animation: bx-tada 1.5s ease forwards;
  animation-delay: 0.8s; /* wait for fade-ups to finish before bouncing */
}
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════
   WHY US LIST
══════════════════════════════════════════════════════════ */
.why-us-inner {
  max-width: 800px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding: var(--space-4);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 184, 232, 0.1);
  color: var(--blue-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-item-content strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.why-item-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════ */
.newsletter {
  background: #FFFFFF;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border-subtle);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.newsletter-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(61, 184, 232, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}

.newsletter-form {
  background: var(--bg-primary);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.form-row {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-3);
}

.form-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
}

.form-input:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(61, 184, 232, 0.2);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── ≤ 1100px ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-main        { grid-template-columns: 1fr 1fr; }
}

/* ── ≤ 768px (Tablet) ─────────────────────────────────── */
@media (max-width: 768px) {
  :root { --navbar-h: 70px; }
  .section-padding { padding: 2rem 1rem; margin-bottom: 4rem; }
  .section-padding-sm { padding: 2rem 1rem; margin-bottom: 4rem; }
  .container { padding: 0 16px; }
  
  .glass-card { padding: var(--space-5) var(--space-4); width: 95%; }
  
  .nav-logo-img { min-width: 140px; }
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .hero-inner { flex-direction: column; text-align: left; gap: var(--space-6); }
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; }
  
  .hero-stats { justify-content: flex-start; }
  .hero-visual { width: 100%; justify-content: center; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 16/9; max-height: 400px; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-bottom: 1px solid var(--border-subtle);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  
  .footer-main { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
}

/* ── ≤ 480px (Mobile) ─────────────────────────────────── */
@media (max-width: 480px) {
  .section-padding { padding: var(--space-8) 0; }
  
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; }
  
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  
  .stat-item { border-right: none; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--border-subtle); }
  
  .cta-buttons { flex-direction: column; }
}

/* ==========================================================================
   SHADCN-STYLE HERO & HEADER (OVERRIDE)
   ========================================================================== */

/* Header Override */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: 999;
}

.header-inner {
  width: 100%;
  max-width: 1152px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 1rem 1.25rem;
  background: transparent;
}

.header.scrolled .header-inner {
  padding: 0.625rem 1.25rem;
  background: rgba(11, 25, 44, 0.6); /* var(--bg-secondary) with opacity */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(61, 184, 232, 0.2); /* var(--blue-primary) with opacity */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nav-desktop { display: block; }
@media (max-width: 1024px) { .nav-desktop { display: none; } }

.nav-list {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
  border-radius: 9999px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  color: var(--text-on-dark-sub);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-on-dark);
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* Button overrides for Header / Hero */
.btn-collab, .btn-primary.group {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  width: fit-content;
}

.btn-collab {
  height: 40px;
  padding: 0.25rem 3rem 0.25rem 1.5rem;
  background-color: #25D366;
  color: #fff;
}
.btn-collab:hover { padding: 0.25rem 1.5rem 0.25rem 3rem; background-color: #20ba5a; color: #fff;}

.btn-collab .btn-text {
  position: relative;
  z-index: 10;
  transition: all 0.5s ease;
}

.btn-collab .btn-icon {
  position: absolute;
  right: 4px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.btn-collab:hover .btn-icon {
  right: calc(100% - 36px);
  transform: rotate(45deg);
}

.btn-primary.group {
  height: 48px;
  padding: 0.25rem 3.5rem 0.25rem 1.5rem;
  background-color: var(--red-accent);
  color: #fff;
  border: none;
}
.btn-primary.group:hover { padding: 0.25rem 1.5rem 0.25rem 3.5rem; background-color: #a81c27; color: #fff; }
.btn-primary.group .btn-icon {
  position: absolute;
  right: 4px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--red-accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.btn-primary.group:hover .btn-icon {
  right: calc(100% - 44px);
  transform: rotate(45deg);
}

.hero-cta-block .btn-secondary {
  height: 48px;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.hero-cta-block .btn-secondary:hover {
  background-color: rgba(255,255,255,0.2);
  border-color: #fff;
  color: #fff;
}

/* Hero Modifications */
#hero {
  position: relative;
  width: 100%;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background-image: url('../images/hero-bg.jpg'); /* Restore dark background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 25, 44, 0.85); /* Deep Navy Overlay */
  z-index: 1;
}

.hero-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: linear-gradient(to right, transparent, rgba(61, 184, 232, 0.3), transparent);
  border-radius: 9999px;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.text-serif {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.025em;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 48rem;
  margin: 1.5rem auto 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero-cta-block { flex-direction: row; justify-content: center; }
}

.hero-trusted {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trusted-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-align: left;
}
.trusted-meta .stars { display: flex; gap: 0.25rem; font-size: 14px; color: #FFD700; }
.trusted-meta .stars i { color: #FFD700; }
.trusted-meta p { font-size: 0.875rem; font-weight: 500; color: #fff; }

/* Brands Marquee overrides */
.brands {
  padding: 3.5rem 0;
  background-color: var(--red-accent); 
  border-top: none;
}

.brands-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brands-header .line {
  height: 1px;
  width: 160px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5));
}
.brands-header .line:last-child {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.5));
}

.brands-header p {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brands-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}
.brands-marquee::before, .brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--red-accent), transparent);
}
.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--red-accent), transparent);
}

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

.trusted-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.7;
  margin-right: 4rem;
  transition: opacity 0.3s, color 0.3s;
}
.trusted-logo:hover { opacity: 1; color: #fff; }

.pause-on-hover:hover { animation-play-state: paused; }

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
}

/* ==========================================================================
   RED ACCENT VARIATIONS
   ========================================================================== */
.feature-icon,
.why-item-icon {
  background: rgba(200, 32, 46, 0.1) !important;
  color: var(--red-accent) !important;
}

.stat-number {
  color: var(--red-accent) !important;
}

.service-card-tag {
  background: rgba(200, 32, 46, 0.15) !important;
  color: var(--red-accent) !important;
}

.card-highlight {
  background: var(--red-accent) !important;
  color: #FFFFFF !important;
  border-color: var(--red-accent) !important;
}

.card-highlight .feature-title,
.card-highlight .feature-desc,
.card-highlight i {
  color: #FFFFFF !important;
}

.card-highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================================================
   TESTIMONIAL CARD COLOR VARIATIONS
   ========================================================================== */
.testimonial-card.card-red {
  background: var(--red-accent) !important;
  border-color: var(--red-accent) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 25px rgba(200, 32, 46, 0.25) !important;
}
.testimonial-card.card-red .testimonial-text,
.testimonial-card.card-red .testimonial-author-info strong {
  color: #FFFFFF !important;
}
.testimonial-card.card-red .testimonial-author-info span {
  color: rgba(255, 255, 255, 0.85) !important;
}
.testimonial-card.card-red .testimonial-stars i {
  color: #FFD700 !important;
}
.testimonial-card.card-red .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.25) !important;
}

.testimonial-card.card-blue {
  background: var(--blue-primary) !important;
  border-color: var(--blue-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 25px rgba(61, 184, 232, 0.25) !important;
}
.testimonial-card.card-blue .testimonial-text,
.testimonial-card.card-blue .testimonial-author-info strong {
  color: #FFFFFF !important;
}
.testimonial-card.card-blue .testimonial-author-info span {
  color: rgba(255, 255, 255, 0.85) !important;
}
.testimonial-card.card-blue .testimonial-stars i {
  color: #FFD700 !important;
}
.testimonial-card.card-blue .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.25) !important;
}

/* ==========================================================================
   CTA URGENCY RED STRIP BADGE
   ========================================================================== */
.cta-urgency {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--red-accent) !important;
  color: #FFFFFF !important;
  padding: 8px 24px !important;
  border-radius: 9999px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 0 4px 15px rgba(200, 32, 46, 0.4) !important;
  width: fit-content !important;
  max-width: 100% !important;
}

.cta-urgency i {
  color: #FFFFFF !important;
  font-size: 0.55rem !important;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   PRICING TABLE STYLES
   ========================================================================== */
.pricing-section {
  padding: 5rem 0 6rem;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.pricing-table {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.pricing-table .card {
  width: 270px;
  height: 420px;
  padding: 30px;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 46px -4px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFFFFF;
}

/* Specific styling for 1st Card */
.pricing-table .card:nth-child(1) {
  background: #7f7fd5;
  background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
}

/* Specific styling for 2nd Card */
.pricing-table .card:nth-child(2) {
  width: 290px;
  height: 450px;
  background: #ff416c;
  background: linear-gradient(to right, #ff4b2b, #ff416c);
  z-index: 2;
}

/* Specific styling for 3rd Card */
.pricing-table .card:nth-child(3) {
  background: #00b09b;
  background: linear-gradient(to right, #96c93d, #00b09b);
}

.pricing-table .card .type {
  margin-top: 20px;
  letter-spacing: 0.15rem;
  font-size: 1.1rem;
}

.pricing-table .card .price {
  font-size: 5rem;
  position: relative;
  margin: 10px 0px 20px;
  z-index: 2;
  line-height: 1;
}

.pricing-table .card .price span {
  font-size: 1.8rem;
  position: absolute;
  left: -25px;
  top: 10px;
}

.pricing-table .card:nth-child(1) .price::before {
  content: "$0";
}

.pricing-table .card:nth-child(2) .price::before {
  content: "$499";
  font-size: 5.5rem;
}

.pricing-table .card:nth-child(3) .price::before {
  content: "$999";
  font-size: 5.5rem;
}

.pricing-table .card .price::before {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 7rem;
  z-index: -1;
  right: -30%;
  bottom: 0;
  text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  transition: all 1s ease-in-out;
}

.pricing-table .card .plan {
  font-size: 1.3rem;
  position: relative;
  margin-bottom: 15px;
}

.pricing-table .card .plan::before,
.pricing-table .card .plan::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background: #FFFFFF;
  bottom: 50%;
  transition: all 0.2s ease-out;
}

.pricing-table .card .plan::before {
  right: 100%;
  transform: translate(-10px, 50%);
}

.pricing-table .card .plan::after {
  left: 100%;
  transform: translate(10px, 50%);
}

.pricing-table .card .details {
  text-transform: capitalize;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.pricing-table .card .details li {
  margin: 12px 0px;
  font-size: 0.95rem;
}

.pricing-table .card .buy-button {
  cursor: pointer;
  position: absolute;
  width: 250px;
  height: 180px;
  background: #FFFFFF;
  border-radius: 15%;
  right: -34%;
  bottom: -27%;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.pricing-table .card .buy-button .btn {
  text-shadow: none;
  text-decoration: none;
  color: #333745;
  position: absolute;
  left: 10%;
  top: 10%;
  font-size: 1.1rem;
  transition: all 0.4s ease-in-out;
  margin: 0;
}

.pricing-table .card:hover {
  transform: scale(1.03);
}

.pricing-table .card:hover .price::before {
  animation: text-hover 1s ease-in-out infinite normal;
}

.pricing-table .card:hover .plan::before {
  right: 90%;
}

.pricing-table .card:hover .plan::after {
  left: 90%;
}

.pricing-table .card:hover .buy-button {
  width: 100%;
  right: 0%;
  bottom: 0%;
  height: 60px;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-table .card:hover .buy-button .btn {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes text-hover {
  0% { right: -30%; }
  50% { right: -37%; }
  100% { right: -30%; }
}

/* ==========================================================================
   CONTACT PAGE STYLES & ANIMATIONS
   ========================================================================== */
.contact-section {
  padding: 8.5rem 0 6rem;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 2;
}

.contact-svg {
  height: 22rem;
  max-width: 100%;
  flex-shrink: 0;
}

#envelope {
  animation: float 2s ease-in-out infinite;
}

#star1, #star2, #star3, #star4, #star5, #star6 {
  animation: blink 1s ease-in-out infinite;
}
#star2 { animation-delay: 100ms; }
#star3 { animation-delay: 500ms; }
#star4 { animation-delay: 700ms; }
#star5 { animation-delay: 300ms; }
#star6 { animation-delay: 200ms; }

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

@keyframes blink {
  0% { opacity: 0; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.contact-form-wrap {
  min-width: 20rem;
  max-width: 28rem;
  width: 100%;
}

.contact-form-wrap .title {
  font-family: var(--font-display), sans-serif;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form-wrap .form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.contact-form-wrap .form-control {
  width: 100%;
  background-color: #f2f6f8;
  border-radius: 2rem;
  border: 1px solid transparent;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.08);
  font-family: var(--font-body), sans-serif;
  color: #212529;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-wrap .form-control.thick {
  height: 3.3rem;
  padding: 0.5rem 1.25rem 0.5rem 3.2rem;
}

.contact-form-wrap textarea.form-control {
  border-radius: 1.5rem;
  padding: 1rem 1.5rem;
  resize: vertical;
}

.contact-form-wrap .form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--blue-primary);
  box-shadow: 0px 7px 15px rgba(61, 184, 232, 0.2);
}

.contact-form-wrap ::placeholder {
  font-family: var(--font-body), sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #838788;
}

.contact-form-wrap .icon {
  color: #57565c;
  font-size: 1.1rem;
  position: absolute;
  left: 1.3rem;
  top: 1.05rem;
}

.contact-form-wrap .btn-send {
  font-family: var(--font-body), sans-serif;
  font-weight: bold;
  height: 3rem;
  line-height: 3rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image: linear-gradient(131deg, #25D366, #20ba5a, #128C7E);
  background-size: 300% 100%;
  color: #FFFFFF;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form-wrap .btn-send:hover {
  box-shadow: 0 0.5em 0.8em -0.4em rgba(37, 211, 102, 0.5);
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS & PREMIUM LAYOUT SYSTEM
   ========================================================================== */

/* 1. Global Overflow & Text Protection */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

img, svg, video, iframe {
  max-width: 100% !important;
  height: auto;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .cta-banner-title {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

/* 2. Responsive Containers */
.container {
  width: 100% !important;
  max-width: 1200px;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box !important;
}

/* 3. Header & Navigation Refinements (< 1024px) */
@media (max-width: 1024px) {
  .header-inner {
    width: 95% !important;
    max-width: 95% !important;
    padding: 0.6rem 1rem !important;
  }

  .nav-logo-img {
    max-width: 135px !important;
    height: auto !important;
  }

  .hamburger {
    display: flex !important;
  }

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

/* 4. Grid & Card Layout Responsiveness (< 992px) */
@media (max-width: 992px) {
  .features-grid,
  .services-grid,
  .about-grid,
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .about-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .pricing-table {
    gap: 1.5rem !important;
  }

  .contact-container {
    gap: 2.5rem !important;
  }
}

/* 5. Mobile Layout & Stack Controls (< 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0 !important;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 3.25rem) !important;
  }

  .hero-cta-block {
    flex-direction: column !important;
    width: 100% !important;
    gap: 1rem !important;
  }

  .hero-cta-block .btn-primary,
  .hero-cta-block .btn-secondary,
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-trusted {
    justify-content: center !important;
    width: 100% !important;
  }

  .trusted-meta {
    align-items: center !important;
    text-align: center !important;
  }

  /* Pricing Table Mobile Cards */
  .pricing-table {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .pricing-table .card,
  .pricing-table .card:nth-child(2) {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    min-height: 410px !important;
    padding: 24px 20px !important;
  }

  /* Contact Page Mobile */
  .contact-section {
    padding-top: 7.5rem !important;
    padding-bottom: 4rem !important;
  }

  .contact-container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .contact-svg {
    height: auto !important;
    max-height: 200px !important;
    width: 100% !important;
    margin-right: 0 !important;
  }

  .contact-form-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }

  /* Footer Mobile */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
}

/* 6. Small Phone Screen Layout (< 480px) */
@media (max-width: 480px) {
  .features-grid,
  .services-grid,
  .about-grid,
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .hero-headline {
    font-size: 2rem !important;
  }

  .cta-banner-content {
    padding: 2rem 1.25rem !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ==========================================================================
   reCAPTCHA "I'M NOT A ROBOT" ANIMATED SPINNER & CHECKMARK WIDGET
   ========================================================================== */
.captcha-box {
  background: #F9F9F9 !important;
  border: 1px solid #D3D3D3 !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.2s ease !important;
}

.captcha-label {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  cursor: pointer !important;
  user-select: none !important;
  margin: 0 !important;
}

.captcha-square {
  width: 28px !important;
  height: 28px !important;
  background: #FFFFFF !important;
  border: 2px solid #C1C1C1 !important;
  border-radius: 3px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color 0.2s ease !important;
  flex-shrink: 0 !important;
}

/* Spinner Circle Animation */
.captcha-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(66, 133, 244, 0.2);
  border-top-color: #4285F4;
  border-radius: 50%;
  animation: captcha-spin 0.8s linear infinite;
}

@keyframes captcha-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Checkmark Animation */
.captcha-checkmark {
  display: none;
  color: #09B04B;
  font-size: 1.25rem;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Active Loading State */
.captcha-box.loading .captcha-square {
  border-color: transparent !important;
  background: transparent !important;
}
.captcha-box.loading .captcha-spinner {
  display: block !important;
}

/* Verified Checked State */
.captcha-box.verified .captcha-square {
  border-color: transparent !important;
  background: transparent !important;
}
.captcha-box.verified .captcha-spinner {
  display: none !important;
}
.captcha-box.verified .captcha-checkmark {
  display: block !important;
  transform: scale(1) !important;
}

.captcha-text {
  font-family: var(--font-body), sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #222222 !important;
}

.captcha-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* ==========================================================================
   CONTACT FORM ROTATING FAVICON LOADER & SUCCESS POPUP
   ========================================================================== */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-modal-overlay.active {
  display: flex !important;
  opacity: 1 !important;
}

/* Loading Card */
.contact-loader-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 380px;
  width: 90%;
}

.favicon-spinner-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  transform: rotate(0deg);
}

.contact-loader-card.rotating .favicon-spinner-img {
  animation: rotate-180-deg 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rotate-180-deg {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(180deg); }
}

.contact-loader-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Success Popup Card */
.contact-success-card {
  display: none;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  max-width: 440px;
  width: 90%;
}

.contact-success-card.active {
  display: block !important;
  animation: popup-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popup-bounce {
  0%   { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.success-popup-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0B192C;
  margin-bottom: 0.75rem;
}

.success-popup-desc {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.btn-popup-close {
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-popup-close:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   HIGH-PERFORMANCE RENDERING ENGINE (ULTRA-FAST LOAD TIMES)
   ========================================================================== */
.about, .services, .testimonials, .pricing-section, .contact-section, .footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.marquee-track, .brands-marquee, .trusted-track {
  will-change: transform;
}

/* Enhanced Visibility Drop Shadows for Dark Background Headings */
.hero-title, 
.hero-headline, 
.cta-banner-title, 
.footer-col-title, 
.contact-section .title,
.card-highlight .feature-title {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4) !important;
}

/* ══════════════════════════════════════════════════════════
   CONTACT FORM MULTI-SELECT SERVICE CHIPS
══════════════════════════════════════════════════════════ */
.services-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-primary) transparent;
}

.service-chip {
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.service-chip input[type="checkbox"] {
  display: none;
}

.service-chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.825rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.service-chip span i {
  display: none;
  font-size: 0.75rem;
}

.service-chip input[type="checkbox"]:checked + span {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(61, 184, 232, 0.4);
}

.service-chip input[type="checkbox"]:checked + span i {
  display: inline-block;
}



