/* ==========================================================================
   GLOBAL THEME & UTILITIES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-void: #080c14;
  --bg-deep: #0d1220;
  --bg-card: #111827;
  --bg-glass: rgba(17, 24, 39, 0.72);
  --accent: #2b7fff;
  --accent-2: #00c9a7;
  --accent-red: #ff3d57;
  --text-1: #f0f6ff;
  --text-2: #8a9bbb;
  --text-3: #4e607a;
  --border: rgba(255, 255, 255, 0.07);
  --border-hi: rgba(43, 127, 255, 0.35);
  --font-head: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --glow-blue: 0 0 32px rgba(43, 127, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(43, 127, 255, 0.1);
  border: 1px solid rgba(43, 127, 255, 0.22);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.eyebrow-teal {
  color: var(--accent-2);
  background: rgba(0, 201, 167, 0.1);
  border-color: rgba(0, 201, 167, 0.22);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
p {
  color: var(--text-2);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 40px;
  background: rgba(43, 127, 255, 0.14);
  color: #6ba4ff;
  border: 1px solid rgba(43, 127, 255, 0.22);
}
.tag-red {
  background: rgba(255, 61, 87, 0.14);
  color: #ff7a8a;
  border-color: rgba(255, 61, 87, 0.25);
}
.tag-teal {
  background: rgba(0, 201, 167, 0.14);
  color: #00c9a7;
  border-color: rgba(0, 201, 167, 0.25);
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.22s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(43, 127, 255, 0.35);
}
.btn-primary:hover {
  background: #4490ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 127, 255, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--border-hi);
}
.btn-outline:hover {
  background: rgba(43, 127, 255, 0.08);
  border-color: var(--accent);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-1);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.nav-logo span em {
  color: var(--accent);
  font-style: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-1);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
}

/* ==========================================================================
   HERO HEADER HERO SECTION
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 65% 45%,
      rgba(43, 127, 255, 0.09) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 20%,
      rgba(0, 201, 167, 0.05) 0%,
      transparent 60%
    ),
    var(--bg-void);
}
.grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 75%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 24px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.2);
  padding: 6px 14px;
  border-radius: 40px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hero-title {
  margin-bottom: 24px;
}
.hero-title .line-accent {
  color: var(--accent);
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
}
.stat-item .stat-num span {
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shield-wrapper {
  position: relative;
  width: 420px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation: rotate-ring linear infinite;
}
.ring-1 {
  width: 340px;
  height: 340px;
  border-width: 1px;
  border-color: rgba(43, 127, 255, 0.18) transparent rgba(43, 127, 255, 0.18)
    transparent;
  animation-duration: 12s;
}
.ring-2 {
  width: 270px;
  height: 270px;
  border-width: 1px;
  border-color: transparent rgba(0, 201, 167, 0.22) transparent
    rgba(0, 201, 167, 0.22);
  animation-duration: 8s;
  animation-direction: reverse;
}
.ring-3 {
  width: 400px;
  height: 400px;
  border-width: 1px;
  border-color: rgba(43, 127, 255, 0.08) transparent rgba(43, 127, 255, 0.08)
    transparent;
  animation-duration: 18s;
}
@keyframes rotate-ring {
  to {
    transform: rotate(360deg);
  }
}

.shield-svg-wrap {
  position: relative;
  z-index: 2;
  animation: shield-float 3s ease-in-out infinite;
}
@keyframes shield-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.shield-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(43, 127, 255, 0.28) 0%,
    transparent 70%
  );
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
.scan-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 340px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(43, 127, 255, 0.6) 50%,
    transparent 100%
  );
  transform: translateX(-50%);
  animation: scan 3s ease-in-out infinite;
}
@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 340px;
    opacity: 0;
  }
}
.floating-badge {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  box-shadow: var(--shadow-card);
  animation: badge-float 4s ease-in-out infinite;
}
.fb-1 {
  top: 60px;
  right: -10px;
  animation-delay: 0s;
}
.fb-2 {
  bottom: 90px;
  left: -20px;
  animation-delay: 1.5s;
}
.fb-3 {
  top: 180px;
  right: -30px;
  animation-delay: 0.8s;
}
@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.dot-blue {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(43, 127, 255, 0.6);
}
.dot-amber {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

/* ==========================================================================
   TRUST LOGO BAR
   ========================================================================== */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.trust-logo:hover {
  color: var(--text-2);
}
.trust-logo svg {
  opacity: 0.5;
}
.cert-badges {
  display: flex;
  gap: 14px;
}
.cert {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}
.cert-1 {
  background: rgba(43, 127, 255, 0.12);
  color: #6ba4ff;
  border: 1px solid rgba(43, 127, 255, 0.2);
}
.cert-2 {
  background: rgba(0, 201, 167, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(0, 201, 167, 0.2);
}
.cert-3 {
  background: rgba(245, 158, 11, 0.12);
  color: #fbc26b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   PRODUCTS CARD GRID
   ========================================================================== */
#products {
  background: var(--bg-deep);
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head p {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 17px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 127, 255, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 127, 255, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(43, 127, 255, 0.1);
}
.product-card:hover::before {
  opacity: 1;
}
.product-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.product-img-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  opacity: 0.9;
}
.product-img-icon {
  position: relative;
  z-index: 1;
}
.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.product-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-1);
}
.product-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.55;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
}
.product-price span {
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 400;
  font-family: var(--font-body);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #fbc26b;
}
.product-rating i {
  font-style: normal;
}
.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
  font-size: 18px;
}
.add-btn:hover {
  background: #4490ff;
  transform: scale(1.1);
}
.badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* ==========================================================================
   FEATURES (BENTO GRID)
   ========================================================================== */
#features {
  background: var(--bg-void);
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  border-color: rgba(43, 127, 255, 0.28);
  transform: translateY(-3px);
}
.bc-1 {
  grid-column: span 5;
  grid-row: span 3;
}
.bc-2 {
  grid-column: span 7;
  grid-row: span 2;
}
.bc-3 {
  grid-column: span 4;
  grid-row: span 2;
}
.bc-4 {
  grid-column: span 3;
  grid-row: span 2;
}
.bc-5 {
  grid-column: span 5;
  grid-row: span 2;
}
.bc-6 {
  grid-column: span 4;
  grid-row: span 2;
}
.bc-7 {
  grid-column: span 3;
  grid-row: span 2;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.bi-blue {
  background: rgba(43, 127, 255, 0.12);
}
.bi-teal {
  background: rgba(0, 201, 167, 0.12);
}
.bi-red {
  background: rgba(255, 61, 87, 0.12);
}
.bi-amber {
  background: rgba(245, 158, 11, 0.12);
}
.bi-purple {
  background: rgba(139, 92, 246, 0.12);
}
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 14px;
  color: var(--text-2);
}

.live-monitor {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 16px;
}
.monitor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.monitor-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.monitor-label {
  font-size: 12px;
  color: var(--text-3);
}
.monitor-status {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}
.ms-active {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}
.ms-idle {
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
}
.ms-alert {
  color: #ff3d57;
  background: rgba(255, 61, 87, 0.1);
}

.big-stat {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 8px 0 4px;
}
.big-stat-label {
  font-size: 13px;
  color: var(--text-2);
}
.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-top: 12px;
}
.progress-fill {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.feature-list {
  list-style: none;
  margin-top: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 0;
}
.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

.coverage-map {
  position: relative;
  background: rgba(43, 127, 255, 0.04);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  height: 80px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  padding: 8px;
}
.cm-cell {
  border-radius: 3px;
  background: rgba(43, 127, 255, 0.06);
}
.cm-on {
  background: rgba(43, 127, 255, 0.28);
}
.cm-hi {
  background: rgba(0, 201, 167, 0.35);
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */
#how-it-works {
  background: var(--bg-deep);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-2) 50%,
    var(--accent) 100%
  );
  opacity: 0.25;
  z-index: 1;
}
.step-card {
  padding: 32px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(43, 127, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-card);
  margin: 0 auto 20px;
}
.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(43, 127, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-2);
}

/* ==========================================================================
   TESTIMONIAL REVIEWS
   ========================================================================== */
#testimonials {
  background: var(--bg-void);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-stars {
  color: #fbc26b;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14.5px;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.a1 {
  background: linear-gradient(135deg, #2b7fff, #5e5bff);
}
.a2 {
  background: linear-gradient(135deg, #00c9a7, #0f8c7e);
}
.a3 {
  background: linear-gradient(135deg, #ff3d57, #b91c4a);
}
.a4 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.a5 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.a6 {
  background: linear-gradient(135deg, #ec4899, #9d174d);
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
}
.author-loc {
  font-size: 12px;
  color: var(--text-3);
}
.testi-card.featured {
  border-color: rgba(43, 127, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(43, 127, 255, 0.06) 0%,
    var(--bg-card) 100%
  );
}

/* ==========================================================================
   PRICING TABLE
   ========================================================================== */
#pricing {
  background: var(--bg-deep);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: rgba(43, 127, 255, 0.4);
  box-shadow:
    var(--shadow-card),
    0 0 40px rgba(43, 127, 255, 0.1);
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.popular-tag {
  position: absolute;
  top: 14px;
  right: -34px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 34px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}
.plan-price .amount {
  line-height: 1;
}
.plan-price .per {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-3);
  font-weight: 400;
  margin-left: 4px;
}
.plan-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 28px;
  min-height: 44px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
}
.plan-features li.disabled {
  color: var(--text-3);
}
.plan-features .check {
  color: var(--accent);
  font-weight: bold;
  width: 14px;
}
.plan-features .cross {
  color: var(--text-3);
  font-weight: bold;
  width: 14px;
  font-size: 15px;
}

/* ==========================================================================
   CALL-TO-ACTION (CTA) & FOOTER
   ========================================================================== */
#cta-banner {
  background: var(--bg-void);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(43, 127, 255, 0.12) 0%,
    transparent 70%
  );
}
#cta-banner h2 {
  color: var(--text-1);
  margin-bottom: 16px;
}
#cta-banner p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent-2);
  margin-top: 20px;
  justify-content: center;
}
.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 1.5s infinite;
}

footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  max-width: 280px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--text-1);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--text-1);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--text-2);
}

/* ==========================================================================
   TOAST BOX NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-1);
  max-width: 300px;
  box-shadow: var(--shadow-card);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show {
  transform: none;
}
.toast-icon {
  font-size: 18px;
}
.toast-close {
  margin-left: auto;
  cursor: pointer;
  color: var(--text-3);
  font-size: 16px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin: 0 auto;
  }
  .hero-desc {
    margin: 0 auto 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }
  .bc-1 {
    grid-column: span 6;
    grid-row: span 2;
  }
  .bc-2 {
    grid-column: span 6;
    grid-row: span 2;
  }
  .bc-3,
  .bc-4,
  .bc-5,
  .bc-6,
  .bc-7 {
    grid-column: span 3;
    grid-row: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── CUSTOM HIGH-TECH MODALS ───────────────────── */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 20, 0.85); /* Matches --bg-void with opacity */
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000; /* Ensure it stays above navigation layers */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Class added via JS to display popups smoothly */
.custom-modal-overlay.modal-visible {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(43, 127, 255, 0.1);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-modal-overlay.modal-visible .custom-modal-box {
  transform: scale(1);
}

.custom-modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text-1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.custom-modal-close {
  background: transparent;
  border: none;
  color: var(--text-2);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.custom-modal-close:hover {
  color: var(--accent-red);
}

.custom-modal-body {
  padding: 24px;
  overflow-y: auto;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.custom-modal-body h4 {
  color: var(--text-1);
  font-family: var(--font-head);
  margin: 20px 0 8px;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.custom-modal-body p {
  margin-bottom: 12px;
}
