/* =========================================
   VISAKIX — GLOBAL STYLESHEET
   visakix.ai | Premium Visa SaaS Platform
   ========================================= */

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

/* ─── CSS VARIABLES ─── */
:root {
  /* Colors */
  --primary: #00D2FF;
  --primary-dark: #0077b6;
  --primary-light: #90e0ef;
  --secondary: #003B73;
  --accent: #88D930;
  --bg-dark: #050A15;
  --bg-card: #0D1526;
  --bg-card-hover: #152238;
  --bg-glass: rgba(0, 210, 255, 0.05);
  --bg-glass-strong: rgba(0, 210, 255, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #B0C4DE;
  --text-muted: #8AA1B9; /* Boosted for better contrast on dark bg */
  --border: rgba(0, 210, 255, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Spacing Scale (8px based) */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem;  /* 8px */
  --space-md: 1rem;    /* 16px */
  --space-lg: 1.5rem;  /* 24px */
  --space-xl: 2rem;    /* 32px */
  --space-2xl: 3rem;   /* 48px */
  --space-3xl: 4rem;   /* 64px */
  --space-4xl: 6rem;   /* 96px */

  /* Containers & Layout */
  --container-max: 1240px;
  --section-padding: clamp(var(--space-2xl), 10vh, var(--space-4xl));

  /* Typography (Fluid) */
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --h2: clamp(2rem, 4vw + 1rem, 3rem);
  --h3: clamp(1.5rem, 3vw + 1rem, 2.25rem);
  --h4: clamp(1.25rem, 2vw + 1rem, 1.75rem);
  --body-text: 1rem;
  --small-text: 0.875rem;

  /* Effects */
  --glow: 0 0 40px rgba(0, 210, 255, 0.2);
  --glow-sm: 0 0 20px rgba(0, 210, 255, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ─── SELECTION ─── */
::selection {
  background: rgba(0, 210, 255, 0.2);
  color: #fff;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--body-text);
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── UTILITY CLASSES ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.section-header {
  margin-bottom: 64px;
}

.section-header p {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 210, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 6px 32px rgba(0, 210, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(0, 210, 255, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(0, 210, 255, 0.08);
  color: var(--primary-light);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(0, 210, 255, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.card-glass:hover {
  background: var(--bg-glass-strong);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

/* ─── ICON BOXES ─── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-box-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 16px rgba(0, 210, 255, 0.25);
}

/* ─── MAP SECTION ─── */
.map-wrapper {
  height: 60vh;
  min-height: 300px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.dark-map {
  opacity: 0.8;
  filter: brightness(0.8) contrast(1.1);
  transition: var(--transition);
}

.dark-map:hover {
  opacity: 1;
}

.map-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(15px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  pointer-events: none;
  z-index: 10;
}

.icon-box-glass {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

/* ─── DIVIDERS ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 8px 0;
}

/* ─── GLOW DECORATIONS ─── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-primary {
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25), transparent 70%);
}

.glow-orb-accent {
  background: radial-gradient(circle, rgba(136, 217, 48, 0.15), transparent 70%);
}

/* ─── GRID NOISE OVERLAY ─── */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 210, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-subtle);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(0, 210, 255, 0.08);
  border-color: var(--border);
}

.mobile-menu-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* ─── FOOTER ─── */
footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-logo img {
  height: 48px;
}

.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
}

@keyframes float-wa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.whatsapp-btn:hover {
  animation: none;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(0, 59, 115, 0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

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

.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--space-xl);
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(13, 21, 38, 0.95));
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.15);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 210, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: var(--space-xs) var(--space-lg);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: var(--space-xs) 0 var(--space-xl);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-feature .check {
  color: var(--primary);
  font-size: 1rem;
}

.pricing-feature .cross {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── TESTIMONIAL CARDS ─── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question .icon {
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(13, 21, 38, 0.6);
  padding: 0 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 16px 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─── FORM ELEMENTS ─── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(0, 210, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.compare-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table th.popular-head {
  color: var(--primary-light);
}

.check-icon {
  color: var(--primary);
  font-size: 1.1rem;
}

.cross-icon {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── BREADCRUMBS ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.breadcrumb span {
  color: var(--primary);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero p {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

/* ─── TRUST BADGES ─── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badge .icon {
  color: var(--primary);
  font-size: 1rem;
}

/* ─── FEATURE HIGHLIGHT ─── */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 992px) {
  .feature-highlight {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }

  .feature-highlight.reverse {
    direction: rtl;
  }

  .feature-highlight.reverse > * {
    direction: ltr;
  }
}

.feature-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 32px;
  position: relative;
}

.feature-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.08), transparent);
  pointer-events: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: var(--glow);
  }

  50% {
    box-shadow: 0 0 60px rgba(255, 93, 0, 0.5);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s ease forwards;
}

.animate-fade-in {
  animation: fade-in 0.5s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-delay-5 {
  animation-delay: 0.5s;
  opacity: 0;
}

/* ─── INTERSECTION OBSERVER CLASSES ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE BREAKPOINTS (Mobile-First) ─── */

/* Mobile Navigation (Default) */
.nav-links,
.nav-actions .btn {
  display: none;
}

@media (min-width: 540px) {
  .nav-actions .btn:last-of-type {
    display: flex;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }
}

.nav-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Tablet & Desktop Layouts */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: var(--space-lg);
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 var(--space-sm);
  }
  
  .nav-actions .btn:first-child {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .section {
    padding: var(--section-padding) 0;
  }
}

.mobile-menu-inner a {
  min-height: 48px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================================
   HOME PAGE & COMPONENTS STYLES
   ========================================= */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,210,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb-1 {
  width: min(90vw, 600px);
  aspect-ratio: 1;
  top: -10%;
  right: -5%;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(0,210,255,0.25), transparent 70%);
}

.hero-orb-2 {
  width: min(70vw, 400px);
  aspect-ratio: 1;
  bottom: -5%;
  left: -5%;
  opacity: 0.3;
  background: radial-gradient(circle, rgba(136,217,48,0.15), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--small-text);
  color: var(--text-muted);
}

.hero-proof-item .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Dashboard Mockup */
.dash-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 80px rgba(0,210,255,0.1);
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.dash-bar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-url {
  margin-left: var(--space-lg);
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-content {
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .dash-content {
    padding: var(--space-xl);
  }
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.dash-metric {
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid rgba(0, 210, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  transition: var(--transition);
}

.dash-metric:hover {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.2);
}

.dash-metric-val {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: #fff;
  line-height: 1.1;
}

.dash-metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: calc(var(--space-xs) / 2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.dash-metric-change {
  font-size: 0.8rem;
  color: #28C940;
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.dash-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
}

.dash-panel h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.app-row:last-child {
  border-bottom: none;
}

.app-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.app-status {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-green { background: rgba(40, 201, 64, 0.12); color: #28C940; }
.status-yellow { background: rgba(255, 189, 46, 0.12); color: #FFBD2E; }
.status-orange { background: rgba(0, 210, 255, 0.1); color: var(--primary-light); }

.ai-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.ai-item-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.ai-item-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ai-item-text b {
  color: #fff;
  font-weight: 600;
}

.ai-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-top: var(--space-xs);
  overflow: hidden;
}

.ai-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  animation: pfill 2.5s ease-in-out infinite alternate;
}

@keyframes pfill {
  from { width: 30%; }
  to { width: 95%; }
}

/* Grids */
.features-grid, 
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--space-lg);
}


/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    opacity: 0.6;
    border-radius: 100px;
  }
}

.step-card {
  text-align: center;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto var(--space-md);
  box-shadow: 0 0 32px rgba(0, 210, 255, 0.4);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: var(--space-3xl);
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
}

.benefit-icon {
  width: 44px;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .benefit-icon {
    width: 52px;
    font-size: 1.25rem;
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(255, 93, 0, 0.12), rgba(255, 140, 66, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: var(--space-4xl) var(--space-xl);
  }
}


@media (min-width: 768px) {
  .cta-banner {
    padding: 72px 48px;
  }
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 500px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,93,0,0.2), transparent 70%);
  pointer-events: none;
}

/* Mobile Specific CTA Adjustments */
@media (max-width: 767px) {
  .cta-banner .flex {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cta-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    gap: var(--space-sm);
  }
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: var(--space-md) 0;
}
.marquee-track {
  display: flex;
  gap: var(--space-lg);
  animation: mslide 40s linear infinite;
  width: max-content;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

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

.m-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--small-text);
  color: var(--text-secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
  transition: var(--transition);
}

.m-item:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

/* Pricing Toggle */
.ptoggle-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

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

.save-badge {
  background: rgba(40, 201, 64, 0.12);
  color: #28C940;
  border: 1px solid rgba(40, 201, 64, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.toggle-sw {
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.toggle-sw:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.toggle-sw::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 4px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-sw:checked::after {
  transform: translateX(24px);
}

/* =========================================
   UTILITIES & OVERRIDES
   ========================================= */

.w-full { width: 100%; }
.justify-center { justify-content: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.85rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.pt-24 { padding-top: 24px; }
.py-24 { padding-top: 24px; padding-bottom: 24px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

/* Backgrounds & specific overrides */
.bg-dark-accent {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.06), rgba(5, 10, 21, 0.8));
  border-color: var(--border);
}

.bg-light-accent {
  background: rgba(0, 210, 255, 0.015);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bg-black-trans { background: rgba(0, 0, 0, 0.3); }
.bg-black-trans-alt { background: rgba(0, 0, 0, 0.2); }

.max-w-860 { max-width: 860px; margin-left: auto; margin-right: auto; }
.max-w-520 { max-width: 520px; margin-left: auto; margin-right: auto; }

.section-trusted {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.progress-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}
/* =========================================
   FEATURES PAGE STYLES
   ========================================= */

.feature-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.12) 0%, transparent 70%);
}

.feature-section {
  padding: var(--space-4xl) 0;
}

.feature-grid-alt {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

@media (min-width: 992px) {
  .feature-grid-alt {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }

  .feature-grid-alt:nth-child(even) {
    direction: rtl;
  }

  .feature-grid-alt:nth-child(even) > * {
    direction: ltr;
  }
}

.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-content h2 {
  margin-bottom: var(--space-md);
}

.feature-content p {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.feature-list-item span {
  color: var(--primary);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .feature-list-item {
    justify-content: center;
  }
}

@keyframes scan-line {
  0% { top: 0; }
  100% { top: 100%; }
}

/* ─── FEATURE MOCKUPS ─── */
.feature-mockup-box {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.feature-mockup-scan {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
}

.scan-window {
  height: 120px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
  animation: scan-line 2s infinite linear;
}

.brand-placeholder {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.5rem;
}

.builder-mockup {
  display: flex;
  gap: var(--space-sm);
}

.builder-pane {
  flex: 1;
  height: 150px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
}

.builder-pane.active {
  border-color: var(--primary);
}

.builder-bar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: var(--radius-xs);
}

.builder-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

/* =========================================
   PRICING PAGE STYLES
   ========================================= */

.pricing-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.pricing-toggle-container .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.pricing-toggle-container .label.active {
  color: #fff;
}

/* Toggle Switch Component */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(25px);
}

.discount-badge {
  background: rgba(40, 201, 64, 0.15);
  color: #28C940;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(40, 201, 64, 0.3);
}

/* Comparison Table */
.comparison-section {
  padding: var(--space-4xl) 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th, 
.comparison-table td {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.comparison-table th {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td:first-child, 
.comparison-table th:first-child {
  text-align: left;
  width: 300px;
  color: var(--text-secondary);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table tr:hover {
  background: rgba(0, 210, 255, 0.02);
}

.check-icon {
  color: var(--primary);
  font-weight: 800;
}

.cross-icon {
  color: var(--text-muted);
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-hero {
  padding: 180px 0 100px;
  text-align: center;
}

.mission-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), transparent);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

.vision-image {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 210, 255, 0.05);
}

.vision-image h2 {
  font-size: 5rem;
  opacity: 0.1;
  margin-bottom: -40px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

@media (min-width: 900px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: var(--space-2xl);
  border-radius: var(--radius);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

/* Leader Cards */
.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.leader-card:hover {
  border-color: var(--primary) !important;
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
}

.leader-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
  font-size: 0.8rem;
}

.leader-name {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.leader-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-hero {
  padding: 180px 0 60px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 210, 255, 0.08);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-info-item h4 {
  margin-bottom: 5px;
  color: #fff;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .contact-form-container {
    padding: var(--space-3xl);
  }
}

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

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

/* Map Section */
.map-section {
  padding-bottom: 100px;
  margin-top: -40px;
}

.map-wrapper {
  height: 350px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .map-wrapper {
    height: 450px;
  }
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}



.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 21, 38, 0.9);
  backdrop-filter: blur(8px);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

@keyframes pulse-marker {
  0% { transform: scale(1) rotate(-45deg); }
  50% { transform: scale(1.1) rotate(-45deg); }
  100% { transform: scale(1) rotate(-45deg); }
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */

.faq-hero {
  padding: 180px 0 60px;
  text-align: center;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-category-btn:hover, 
.faq-category-btn.active {
  background: rgba(0, 210, 255, 0.08);
  border-color: var(--primary);
  color: #fff;
}

.faq-content-wrapper {
  max-width: 900px;
  margin: 0 auto var(--space-4xl);
}

.faq-group {
  margin-bottom: var(--space-3xl);
}

.faq-group h3 {
  margin-bottom: var(--space-lg);
  padding-left: 10px;
  border-left: 3px solid var(--primary);
}

@media (max-width: 900px) {
  .faq-hero {
    padding: 140px 0 50px;
  }
}

/* =========================================
   LEGAL PAGES STYLES
   ========================================= */

.legal-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: rgba(0, 210, 255, 0.03);
}

.legal-content {
  max-width: 800px;
  margin: var(--space-3xl) auto var(--space-4xl);
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  color: #fff;
}

.legal-content p {
  margin-bottom: var(--space-lg);
}

.legal-content ul {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 0 40px;
  }
  .legal-content {
    margin-top: var(--space-2xl);
    padding: 0 var(--space-md);
  }
}

/* =========================================
   BLOG PAGE STYLES
   ========================================= */

.blog-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--glow-sm);
}

.blog-image {
  height: 220px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-content {
  padding: var(--space-xl);
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.author-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

/* =========================================
   CAREERS PAGE STYLES
   ========================================= */

.careers-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 100% 0%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-4xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  box-shadow: var(--glow-sm);
}

.job-info h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.job-tags {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: 12px;
}

.tag {
  font-size: 0.75rem;
  background: rgba(0, 210, 255, 0.1);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.culture-card {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
}

.culture-card .icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: block;
}

@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-card .btn {
    width: 100%;
    justify-content: center;
  }
  .culture-grid {
    grid-template-columns: 1fr;
  }
}
