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

/* Fonts: load via <link> in HTML (preconnect + subset weights) — avoid @import (render-blocking). */

/* ─── 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: 'Outfit', 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,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -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-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

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

.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;
  justify-content: 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;
}

@media (min-width: 768px) {
  .navbar {
    padding: 0 24px;
  }
}

.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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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-md);
  min-width: 0;
}

.dash-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

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

@media (max-width: 479px) {
  .dash-bar {
    padding: 10px 12px;
    gap: var(--space-sm);
  }

  .dash-url {
    font-size: 0.7rem;
    padding: var(--space-xs) 10px;
    max-width: min(100%, 200px);
  }
}

.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);
}

.table-scroll-hint {
  display: none;
}

.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;
}

/* ─── JOURNEY / TIMELINE STYLES ─── */
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 60px);
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
  top: 30px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  min-height: 120px;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  width: 100px;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4), 0 0 0 4px var(--bg-dark), 0 0 0 6px var(--primary);
}

.timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin: 0 var(--space-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.5;
}

.timeline-content:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 210, 255, 0.1);
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Timeline Icons */
.timeline-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

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

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

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: var(--transition);
}

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

.stat-number {
  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;
  line-height: 1;
}

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

/* Mobile Timeline Adjustments */
@media (max-width: 767px) {
  .journey-timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    width: 60px;
    font-size: 1rem;
  }

  .timeline-year::after {
    width: 40px;
    height: 40px;
  }

  .timeline-content {
    margin: 0;
    width: 100%;
  }
}

@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: 170px 0 92px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 210, 255, 0.2), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(124, 77, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(8, 18, 34, 0.95), rgba(6, 13, 26, 0.84));
  border-bottom: 1px solid var(--border-subtle);
}
.blog-hero .hero-sub { max-width: 760px; margin: 18px auto 0; }
.blog-listing-section {
  padding-top: 28px;
}
.blog-topbar { display:flex; justify-content:space-between; align-items:center; gap:var(--space-lg); margin-bottom:var(--space-xl); padding:14px 18px; border:1px solid var(--border-subtle); border-radius:var(--radius-md); background:rgba(255,255,255,0.02); }
.blog-pill-group { display:flex; gap:10px; flex-wrap:wrap; }
.blog-pill { display:inline-flex; align-items:center; justify-content:center; padding:7px 14px; border-radius:100px; border:1px solid var(--border-subtle); color:var(--text-muted); font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; }
.blog-pill.active { border-color:rgba(0,210,255,0.45); color:var(--primary-light); background:rgba(0,210,255,0.1); }
.blog-topbar-note { color:var(--text-muted); font-size:0.9rem; margin:0; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:var(--space-xl); margin-bottom:var(--space-4xl); }
.blog-card { background:linear-gradient(180deg, rgba(13,24,43,0.92), rgba(9,17,31,0.95)); border:1px solid rgba(255,255,255,0.08); border-radius:22px; overflow:hidden; transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease; display:flex; flex-direction:column; }
.blog-card:hover { border-color:rgba(0,210,255,0.42); transform:translateY(-8px); box-shadow:0 24px 50px rgba(0,0,0,0.35); }
.blog-image { height:230px; border-bottom:1px solid var(--border-subtle); overflow:hidden; }
.blog-image img { width:100%; height:100%; object-fit:cover; transition:transform .42s ease; }
.blog-card:hover .blog-image img { transform:scale(1.05); }
.blog-post-page { padding-top:140px; }
.post-hero-media { margin:0; border-radius:16px; overflow:hidden; border:1px solid var(--border-subtle); background:rgba(0,0,0,0.35); }
.post-hero-media img { width:100%; height:auto; display:block; }
.post-hero-media figcaption { padding:10px 14px; font-size:0.82rem; color:var(--text-muted); background:rgba(255,255,255,0.02); border-top:1px solid var(--border-subtle); }
.post-content { color:var(--text-secondary); line-height:1.86; font-size:1.02rem; }
.post-content .lead-text { font-size:1.14rem; color:var(--text-primary); }
.post-content h3 { margin-top:36px; margin-bottom:12px; font-size:clamp(1.2rem, 2.2vw, 1.5rem); }
.post-content p { margin-bottom:14px; }
/* Blog articles: tables stay within the column (no min-width / horizontal scroll) */
.post-content .comparison-table-wrapper {
  overflow-x: visible;
  max-width: 100%;
}
.post-content .comparison-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}
.post-content .comparison-table th,
.post-content .comparison-table td {
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.post-content .comparison-table td:first-child,
.post-content .comparison-table th:first-child {
  width: 34%;
  max-width: 40%;
}
.blog-content { padding:24px; flex:1; }
.blog-meta { font-size:.76rem; color:var(--primary-light); text-transform:uppercase; letter-spacing:.11em; margin-bottom:10px; display:block; }
.blog-meta-row { display:flex; gap:10px; color:var(--text-muted); font-size:.84rem; margin-bottom:12px; }
.blog-title { font-size:1.35rem; margin-bottom:12px; line-height:1.3; }
.blog-title a {
  color: inherit;
  text-decoration: none;
}
.blog-title a:hover {
  color: var(--primary-light);
}
.blog-excerpt { color:var(--text-secondary); font-size:.95rem; margin-bottom:22px; line-height:1.65; }
.blog-footer { display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:18px; border-top:1px solid var(--border-subtle); }
.blog-author { display:flex; align-items:center; gap:10px; font-size:.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:.7rem; }
.blog-newsletter { position:relative; overflow:hidden; border-radius:22px; border:1px solid rgba(0,210,255,.22); background:linear-gradient(135deg, rgba(10,22,42,.98), rgba(8,16,30,.95)); box-shadow:0 20px 60px rgba(0,0,0,.35); padding:46px 28px; text-align:center; }
.blog-newsletter-glow { position:absolute; inset:-35% auto auto -10%; width:340px; height:220px; background:radial-gradient(circle, rgba(0,210,255,.22), transparent 70%); pointer-events:none; }
.blog-newsletter-badge { display:inline-flex; align-items:center; justify-content:center; padding:7px 14px; border-radius:100px; margin-bottom:14px; font-size:.74rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--primary-light); background:rgba(0,210,255,.12); border:1px solid rgba(0,210,255,.22); }
.blog-newsletter-title { margin-bottom:10px; }
.blog-newsletter-sub { color:var(--text-secondary); max-width:620px; margin:0 auto 26px; }
.blog-newsletter-form { display:flex; align-items:center; gap:10px; max-width:620px; margin:0 auto; }
.blog-newsletter-input { flex:1; min-width:220px; height:52px; padding:0 18px; border-radius:12px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); color:#fff; font-size:.95rem; }
.blog-newsletter-input::placeholder { color:rgba(255,255,255,.55); }
.blog-newsletter-input:focus { outline:none; border-color:rgba(0,210,255,.5); box-shadow:0 0 0 3px rgba(0,210,255,.16); }
.blog-newsletter-btn { height:52px; padding:0 26px; white-space:nowrap; }
@media (max-width:900px) { .blog-topbar { flex-direction:column; align-items:flex-start; } }
@media (max-width:767px) {
  .blog-hero { padding:140px 0 72px; }
  .blog-listing-section { padding-top: 14px; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-content { padding:20px; }
  .blog-newsletter { padding:34px 18px 24px; }
  .blog-newsletter-form { flex-direction:column; }
  .blog-newsletter-input, .blog-newsletter-btn { width:100%; }
}


.blog-post-shell {
  max-width: 1140px;
}

.post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}

.post-header-copy {
  min-width: 0;
}

/* Blog posts: white type scale, bold links in body, hero meta aligned with article */
.blog-post-page .post-header-copy h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.18;
}
.blog-post-page .post-header-copy h1 strong {
  font-weight: 800;
  color: inherit;
}
.blog-post-page .post-header-copy h1 strong .gradient-text {
  font-weight: 800;
}
.blog-post-page .post-header-copy .post-meta,
.blog-post-page .post-header-copy .post-meta span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.blog-post-page .post-header-copy .badge {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.blog-post-page .post-header-copy .btn-ghost {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.blog-post-page .post-header-copy .btn-ghost:hover {
  color: #fff;
  background: rgba(0, 210, 255, 0.12);
  border-color: rgba(0, 210, 255, 0.45);
}
.blog-post-page .post-hero-media figcaption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}
.blog-post-page .post-content {
  color: #fff;
}
.blog-post-page .post-content .lead-text {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.75;
}
.blog-post-page .post-content h3 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.14rem, 2.1vw, 1.45rem);
  line-height: 1.28;
}
.blog-post-page .post-content h3 strong {
  font-weight: 800;
  font-size: inherit;
  color: inherit;
}
.blog-post-page .post-content h4 {
  color: #fff;
  font-weight: 800;
  font-size: 1.06rem;
}
.blog-post-page .post-content h4 strong {
  font-weight: 800;
  font-size: inherit;
  color: inherit;
}
.blog-post-page .post-content a:not(.btn):not([class*="btn-"]) {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post-page .post-content a:not(.btn):not([class*="btn-"]):hover {
  color: var(--primary-light);
}
.blog-post-page .post-content strong,
.blog-post-page .post-content b {
  color: #fff;
  font-weight: 800;
  font-size: 1.06em;
}
.blog-post-page .post-content p {
  color: #fff;
}
.blog-post-page .post-content ul,
.blog-post-page .post-content li {
  color: #fff;
}
.blog-post-page .post-content .dash-panel,
.blog-post-page .post-content .dash-panel h4,
.blog-post-page .post-content .dash-panel li {
  color: #fff;
}
.blog-post-page .post-content .comparison-table th {
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}
.blog-post-page .post-content .comparison-table td {
  color: #fff;
  font-size: 0.95rem;
}
.blog-post-page .post-content .cta-banner h3,
.blog-post-page .post-content .cta-banner p {
  color: #fff;
}
.blog-post-page .post-sidebar .services-sticky-list li a {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
}
.blog-post-page .post-sidebar .services-sticky-list li a span {
  color: rgba(255, 255, 255, 0.72);
}

.post-hero-media-compact {
  margin: 0;
}

.post-hero-media-compact img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-body-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.post-main {
  min-width: 0;
}

.post-sidebar {
  position: sticky;
  top: 120px;
}

.services-sticky-card {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--bg-card);
  padding: 14px;
}

.services-sticky-card h3 {
  margin: 0 0 12px;
  background: linear-gradient(90deg, #1f6cff, #1562e6);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 1.4rem;
}

.services-sticky-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.services-sticky-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px;
  color: var(--text-primary);
  font-size: 0.98rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
}

.services-sticky-list li a:hover {
  border-color: var(--primary);
  background: rgba(0, 210, 255, 0.08);
}

.services-sticky-list li a span {
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .post-hero-grid {
    grid-template-columns: 1fr;
  }

  .post-body-grid {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }
}
/* =========================================
   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;
  }
}

/* =========================================
   HOMEPAGE CONVERSION OVERHAUL — NEW SECTIONS
   ========================================= */

/* ─── HERO TRUST BAR ─── */
.hero-trust-bar {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

/* ─── EMAIL CAPTURE SECTION ─── */
.email-capture-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.04), rgba(136, 217, 48, 0.02));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.email-capture-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.email-capture-text {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--text-secondary);
}

.email-capture-icon {
  font-size: 1.3rem;
}

.email-capture-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex: 1;
  max-width: 480px;
}

.email-capture-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.email-capture-input::placeholder {
  color: var(--text-muted);
}

.email-capture-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.15);
  background: rgba(0, 210, 255, 0.03);
}

.email-capture-btn {
  white-space: nowrap;
}

/* CTA Lead Form */
.cta-lead-form {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.cta-lead-form .email-capture-input {
  max-width: 320px;
}

/* ─── LOGO STRIP ─── */
.logo-strip-section {
  padding: var(--space-2xl) 0;
}

.logo-strip-label {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.logo-strip {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logo-strip-track {
  display: flex;
  gap: var(--space-3xl);
  animation: logoScroll 25s linear infinite;
  width: max-content;
  align-items: center;
}

.client-logo {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7) invert(0.8);
  opacity: 0.5;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── PAIN SECTION ─── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

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

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

.pain-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: var(--transition);
}

.pain-item:hover {
  border-color: rgba(255, 93, 0, 0.2);
  background: rgba(255, 93, 0, 0.03);
}

.pain-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.pain-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.pain-callout {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.pain-callout strong {
  color: var(--primary-light);
}

/* Pain Stat Card */
.pain-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.pain-stat-header {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.pain-stat-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pain-stat-row.highlight {
  color: #e74c3c;
  font-weight: 600;
  background: rgba(231, 76, 60, 0.06);
  padding: 12px var(--space-md);
  border-radius: var(--radius-sm);
  border: none;
}

.pain-stat-row.visakix-row {
  color: var(--accent);
  font-weight: 600;
  background: rgba(136, 217, 48, 0.06);
  padding: 14px var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(136, 217, 48, 0.15);
}

.pain-stat-time {
  font-weight: 700;
  font-size: 0.78rem;
  min-width: 90px;
  color: var(--text-muted);
  font-family: var(--font-head);
}

.pain-stat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: var(--space-md) 0;
}

/* ─── BEFORE/AFTER TABLE ─── */
.ba-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.ba-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.ba-table th,
.ba-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.ba-table th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
}

.ba-table th.ba-before {
  color: #e74c3c;
}

.ba-table th.ba-after {
  color: var(--accent);
}

.ba-table td:first-child {
  font-weight: 600;
  color: #fff;
}

.ba-before-cell {
  color: var(--text-muted);
  position: relative;
}

.ba-after-cell {
  color: var(--accent);
  font-weight: 600;
  background: rgba(136, 217, 48, 0.04);
}

.ba-table tbody tr {
  transition: var(--transition);
}

.ba-table tbody tr:hover {
  background: rgba(0, 210, 255, 0.03);
}

/* ─── FEATURE SHOWCASE ─── */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-showcase:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

@media (min-width: 992px) {
  .feature-showcase {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-2xl);
  }

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

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

.feature-showcase-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.feature-showcase-content h3 {
  margin-bottom: var(--space-sm);
}

.feature-showcase-tagline {
  font-style: italic;
  color: var(--primary-light) !important;
  font-size: 1rem !important;
  margin-bottom: var(--space-md) !important;
}

.feature-showcase-content>p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-showcase-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.fs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-stat-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
}

.fs-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* White-Label Mockup */
.whitelabel-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.wl-browser-bar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wl-url {
  margin-left: var(--space-md);
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.wl-content {
  padding: var(--space-xl);
}

.wl-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.wl-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.wl-form-mock {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.wl-field {
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
}

.wl-field-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.wl-submit {
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

/* CRM Mockup */
.crm-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.crm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  gap: var(--space-sm);
}

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

.crm-row:hover {
  background: rgba(0, 210, 255, 0.03);
}

.crm-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  flex: 1;
}

.crm-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 80px;
  text-align: right;
}

/* ─── INLINE COMPARISON TABLE ─── */
.comparison-card {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

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

.comparison-table-inline th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table-inline td:first-child,
.comparison-table-inline th:first-child {
  text-align: left;
  color: #fff;
  font-weight: 600;
}

.comparison-table-inline td {
  color: var(--text-secondary);
}

.comparison-highlight {
  background: rgba(0, 210, 255, 0.04) !important;
  color: var(--primary-light) !important;
  font-weight: 600 !important;
  border-left: 1px solid rgba(0, 210, 255, 0.1);
  border-right: 1px solid rgba(0, 210, 255, 0.1);
}

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

/* ─── TESTIMONIAL METRIC ─── */
.testimonial-metric {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(0, 210, 255, 0.06);
  border-radius: 100px;
  display: inline-block;
}

/* ─── PRICING GRID 2 COL ─── */
.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

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

/* ─── STEPS GRID 3 COL ─── */
.steps-grid-3 {
  grid-template-columns: 1fr;
}

/* ─── VIDEO MODAL ─── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-modal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.video-modal-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


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

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

  .steps-grid-3::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    opacity: 0.6;
    border-radius: 100px;
  }
}

.step-visual {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

/* ─── ENTERPRISE STRIP ─── */
.enterprise-strip {
  padding: var(--space-lg);
  background: rgba(0, 210, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 767px) {
  .email-capture-bar {
    flex-direction: column;
    text-align: center;
  }

  .email-capture-form {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }

  .email-capture-btn {
    width: 100%;
    justify-content: center;
  }

  .feature-showcase-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .fs-stat {
    min-width: 80px;
  }

  .pain-stat-card {
    padding: var(--space-md);
  }

  .cta-lead-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-lead-form .email-capture-input {
    max-width: 100%;
    width: 100%;
  }

  .comparison-table-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .table-scroll-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
  }
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1010;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

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

/* ─── WHATSAPP CHAT HINT (timed popup, anchored above FAB) ─── */
.whatsapp-chat-hint {
  position: fixed;
  left: auto;
  right: max(20px, env(safe-area-inset-right, 0px));
  bottom: 100px;
  max-width: min(300px, calc(100vw - 48px));
  z-index: 1020;
  padding: 0 14px 14px;
  background: #e5ddd5;
  border: 1px solid rgba(7, 94, 84, 0.26);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(7, 17, 32, 0.25);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
  overflow: visible;
}

/* Tail points at the green WhatsApp circle (FAB center ~30px from card’s right edge) */
.whatsapp-chat-hint::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #e5ddd5;
  filter: drop-shadow(0 1px 0 rgba(7, 94, 84, 0.3));
}

.whatsapp-chat-hint.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-chat-hint>* {
  position: relative;
  z-index: 1;
}

.whatsapp-chat-hint-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 -14px 12px;
  padding: 10px 12px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #075e54 0%, #0a6c60 100%);
}

.whatsapp-chat-hint-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-chat-hint-meta {
  min-width: 0;
  flex: 1;
}

.whatsapp-chat-hint-close {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.whatsapp-chat-hint-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

.whatsapp-chat-hint-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}

.whatsapp-chat-hint-status {
  margin: 2px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}

.whatsapp-chat-hint-text {
  margin: 0 0 10px;
  font-size: 0.83rem;
  line-height: 1.4;
  color: #43525b;
}

.whatsapp-chat-hint-form {
  display: grid;
  gap: 10px;
}

.whatsapp-chat-hint-input {
  width: 100%;
  border: 1px solid #cfd8dc;
  background: #ffffff;
  color: #102a43;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-family: inherit;
}

.whatsapp-chat-hint-input::placeholder {
  color: #64748b;
}

.whatsapp-chat-hint-input:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.whatsapp-chat-hint-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
  color: #fff !important;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

.whatsapp-chat-hint-cta:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.whatsapp-chat-hint-cta:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

@media (max-width: 767px) {
  .whatsapp-chat-hint {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: 100px;
    max-width: calc(100vw - 32px);
  }

  /* Homepage: sticky trial bar pushes FAB up — lift hint above both */
  .sticky-cta-bar.is-visible ~ .whatsapp-chat-hint {
    bottom: 188px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-chat-hint {
    transition: none;
  }

  .whatsapp-chat-hint.is-visible {
    transform: translateY(0) scale(1);
  }
}

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 21, 38, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-bar.is-visible {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .sticky-cta-bar {
    display: flex;
  }

  .sticky-cta-bar .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
    width: 100%;
    max-width: 460px;
    /* Sized for standard mobile viewport minus padding */
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-cta-bar.is-visible~.whatsapp-btn {
    bottom: 104px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 20px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }

  footer {
    padding-bottom: 80px;
  }
}

/* ─── ALIGNMENT FIXES ─── */
.hero-inner,
.section-header {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

.max-w-860,
.max-w-520 {
  width: 100% !important;
  max-width: 100% !important;
}

.feature-showcase {
  max-width: 100%;
}

@media (max-width: 767px) {
  .feature-showcase {
    padding: var(--space-lg);
  }
}


/* ─── NEW ENHANCEMENTS ─── */

.wl-interactive-input {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  text-align: left;
}

.wl-interactive-input label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

#wlAgencyInput {
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  transition: var(--transition);
}

#wlAgencyInput:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

/* Policy Verification Styles */
.policy-check-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.policy-country-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid var(--border-subtle);
}

.policy-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0.4;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}

.policy-check-item:last-child {
  border-bottom: none;
}

.policy-check-item.is-checked {
  opacity: 1;
  transform: translateX(0);
}

.policy-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.policy-status {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.3s ease 0.2s;
}

.policy-check-item.is-checked .policy-status {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.policy-check-item.is-checked .policy-label {
  color: #fff;
}

/* B2C Tourist Portal Showcase */
.b2c-showcase {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), transparent);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #000;
  border: 8px solid #1a1a1a;
  border-radius: 36px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  color: #111;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}

.phone-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.phone-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-form-step {
  width: 100%;
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
}

.phone-form-step::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 65%;
  background: var(--primary);
  border-radius: 5px;
}

.phone-field {
  height: 35px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 12px;
}

.phone-btn {
  margin-top: auto;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── SECURITY & TRUST ENHANCEMENTS ─── */

.security-section {
  background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.05) 0%, transparent 80%);
  position: relative;
  overflow: hidden;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.security-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.security-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  transition: var(--transition);
}

.security-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.3));
}

.security-card:hover .security-icon-wrap {
  background: transparent;
  transform: scale(1.1) rotate(5deg);
}

.security-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.security-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Trust Seals Row */
.trust-seals-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  opacity: 0.8;
}

.trust-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.trust-seal i {
  color: var(--primary);
  font-size: 1.2rem;
}

.secure-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(136, 217, 48, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(136, 217, 48, 0.2);
  margin-top: 16px;
}
/* ─── DEMO GIF INTEGRATION ─── */
.demo-gif-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #0d1526;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

.demo-gif-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1611 / 935;
  object-fit: contain;
  display: block;
}

.video-modal-gif-wrap {
  display: none;
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 210, 255, 0.3);
}

.video-modal-gif-wrap img {
  width: 100%;
  display: block;
}

.video-modal-overlay.show-gif .video-modal-iframe-wrap {
  display: none;
}

.video-modal-overlay.show-gif .video-modal-gif-wrap {
  display: block;
}

/* ─── FREE TRIAL / SALES LEAD MODAL ─── */
.trial-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(12px);
}

.trial-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.trial-modal-dialog {
  width: 100%;
  max-width: 440px;
  max-height: none;
  overflow: visible;
  position: relative;
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.98), rgba(8, 12, 22, 0.99));
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius-lg, 20px);
  padding: 28px 24px 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 212, 255, 0.06);
}

.trial-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition, 0.2s ease);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trial-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.trial-modal-header h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.trial-modal-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.65));
  line-height: 1.5;
}

.trial-modal-form {
  position: relative;
  margin-top: 20px;
}

.trial-modal-field {
  margin-bottom: 14px;
}

.trial-modal-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.85));
}

.trial-modal-field .req {
  color: var(--accent, #00d4ff);
}

.trial-modal-field input,
.trial-modal-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trial-modal-field input::placeholder,
.trial-modal-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.trial-modal-field input:focus,
.trial-modal-field textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.trial-modal-field textarea {
  resize: vertical;
  min-height: 72px;
}

.trial-modal-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trial-modal-submit {
  margin-top: 8px;
}

.trial-modal-foot {
  margin: 16px 0 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted, rgba(255, 255, 255, 0.55));
  line-height: 1.45;
}

.trial-modal-foot a {
  color: var(--primary-light, #5eb8ff);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trial-modal-foot a:hover {
  color: #fff;
}
