

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Blue Palette System */
  --primary: #2563eb;
  --primary-rgb: 37, 99, 235;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-subtle: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.35);

  --accent-cyan: #06b6d4;
  --accent-sky: #38bdf8;
  --accent-indigo: #4f46e5;
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-blue-alt: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  --gradient-dark: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);

  /* Status Colors */
  --signal-green: #10b981;
  --signal-green-rgb: 16, 185, 129;
  --signal-green-soft: rgba(16, 185, 129, 0.12);
  --signal-amber: #f59e0b;
  --signal-red: #ef4444;

  /* Dark Theme Tokens */
  --dark-bg: #0b1120;
  --dark-surface: #0f172a;
  --dark-surface-2: #1e293b;
  --dark-card: #141f36;
  --dark-border: rgba(59, 130, 246, 0.16);
  --dark-border-hover: rgba(56, 189, 248, 0.4);
  --dark-text: #f8fafc;
  --dark-text-muted: #94a3b8;
  --dark-text-dim: #64748b;

  /* Light Theme Tokens */
  --light-bg: #f8fafc;
  --light-surface: #ffffff;
  --light-surface-2: #f1f5f9;
  --light-border: #e2e8f0;
  --light-border-strong: #cbd5e1;
  --light-border-hover: rgba(37, 99, 235, 0.35);
  --light-text: #0f172a;
  --light-text-muted: #475569;
  --light-text-dim: #64748b;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 12px 32px -4px rgba(37, 99, 235, 0.3);
  --shadow-dark: 0 20px 40px -10px rgba(0, 0, 0, 0.5);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--light-text);
  background-color: var(--light-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mono {
  font-family: var(--font-mono);
}

/* ==========================================================================
   TOP NOTIFICATION BAR
   ========================================================================== */
.top-bar {
  background-color: #060913;
  color: #94a3b8;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1040;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-status-indicator .ping-dot {
  width: 8px;
  height: 8px;
  background-color: var(--signal-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(11, 17, 32, 0.96);
  border-bottom-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  padding: 0.9rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: #ffffff;
  text-decoration: none;
}

.brand-logo:hover {
  color: #ffffff;
}

.brand-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.brand-text-accent {
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: #cbd5e1 !important;
  font-size: 0.925rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-sky);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-nav-login {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-nav-cta {
  background: var(--gradient-blue);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
}

.btn-nav-cta:hover {
  background: var(--gradient-blue-alt);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.65rem;
  color: #ffffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   BUTTONS & GENERAL UI COMPONENTS
   ========================================================================== */
.btn-primary-custom {
  background: var(--gradient-blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-blue);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: var(--gradient-blue-alt);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.4);
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-outline-blue:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Status Badges & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  /* padding: 0.45rem 1rem;
  border-radius: var(--radius-full); */
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pill-badge-dark {
  /* background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3); */
  color: #38bdf8;
}

.pill-badge-light {
  /* background: var(--primary-subtle);
  border: 1px solid rgba(37, 99, 235, 0.2); */
  color: var(--primary);
}

.pill-badge-success {
  background: var(--signal-green-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}

.status-dot {
  width: 16px;
  height: 2px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot-green {
  background-color: var(--signal-green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  /* animation: pulse-green 2s infinite; */
}

.status-dot-blue {
  background-color: var(--accent-sky);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  /* animation: pulse-blue 2s infinite; */
}

/* Section Titles */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.section-title span.highlight-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span.highlight-sky {
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1rem;
}

.dark-section .section-title {
  color: #ffffff;
}

.dark-section .section-description {
  color: var(--dark-text-muted);
}

.light-section .section-title {
  color: var(--light-text);
}

.light-section .section-description {
  color: var(--light-text-muted);
}

/* ==========================================================================
   HERO / BANNER SECTION (DARK MODE)
   ========================================================================== */
.hero-section {
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(circle at 50% 15%, rgba(37, 99, 235, 0.22) 0%, rgba(11, 17, 32, 0) 65%),
    linear-gradient(to bottom, rgba(11, 17, 32, 0.8), #0b1120);
  color: var(--dark-text);
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.25), rgba(6, 182, 212, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--dark-text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--dark-text-muted);
}

/* ==========================================================================
   HERO VISUAL CARD (3-Pill Composition with Floating Badges)
   ========================================================================== */
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  /* padding: 22px 14px; */
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 2;
}

/* Ambient glow behind capsules */
.hero-visual-ambient-glow {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(56, 189, 248, 0.12) 45%, transparent 70%);
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
}

/* 3-Pill Flex Layout */
.hero-pills-layout {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 440px;
  position: relative;
  z-index: 1;
}

.hero-pill-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #091322;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-pill-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(56, 189, 248, 0.22);
}

/* 1st Card: Main rounded rectangle (52% width) */
.hero-pill-main {
  flex: 1.55;
  height: 100%;
  border-radius: 28px;
}

.hero-pill-main .hero-pill-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-pill-main:hover .hero-pill-img {
  transform: scale(1.08);
}

/* 2nd Card: Middle tall capsule */
.hero-pill-mid {
  flex: 0.95;
  /* height: 100%; */
  border-radius: 46px;
}

.hero-pill-mid .hero-pill-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-pill-mid:hover .hero-pill-img {
  transform: scale(1.08);
}

/* 3rd Card: Right slender capsule */
.hero-pill-end {
  flex: 0.68;
  height: 80%;
  border-radius: 46px;
}

.hero-pill-end .hero-pill-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-pill-end:hover .hero-pill-img {
  transform: scale(1.08);
}

/* Gloss overlay on image */
.hero-pill-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 35%, rgba(6, 14, 28, 0.3) 100%);
  pointer-events: none;
}

/* ==========================================================================
   FLOATING PILL BADGES
   ========================================================================== */
.hero-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #01374d;
  border: 1px solid rgba(56, 189, 248, 0.38);
  border-radius: 14px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.52), 0 0 16px rgba(56, 189, 248, 0.15);
  z-index: 10;
  backdrop-filter: blur(12px);
  cursor: default;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-float-badge:hover {
  /* transform: translateY(-3px) !important; */
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.65), 0 0 24px rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.6);
}

/* Top-Left Badge */
.hero-float-badge-top {
  top: 8px;
  left: 0px;
  animation: float-badge-top 4.5s ease-in-out infinite;
}

/* Bottom-Left Badge */
.hero-float-badge-bottom {
  bottom: 20px;
  left: 30px;
  animation: float-badge-bottom 5s ease-in-out infinite 0.8s;
}

/* Middle-Right Badge (Overlapping pills 2 and 3) */
.hero-float-badge-right {
  top: 10%;
  right: 0px;
  transform: translateY(-50%);
  /* animation: float-badge-right 4.2s ease-in-out infinite 0.4s; */
}

/* Icon Box inside Badge */
.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #38bdf8;
  flex-shrink: 0;
}

/* Text inside Badge */
.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
  white-space: nowrap;
}

/* Badge Float Animations */
@keyframes float-badge-top {

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

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

@keyframes float-badge-bottom {

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

  50% {
    transform: translateY(5px);
  }
}

@keyframes float-badge-right {

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

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

/* ==========================================================================
   TRUST MARQUEE BAR (DARK MODE)
   ========================================================================== */
.trust-marquee-section {
  background-color: #070d18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.trust-marquee-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trust-marquee-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.trust-item i {
  color: var(--accent-sky);
  font-size: 1.15rem;
}

.trust-item:hover {
  color: #ffffff;
}

.trust-marquee-wrapper:hover .trust-marquee-content {
  animation-play-state: paused;
}

/* ==========================================================================
   ABOUT US SECTION (LIGHT MODE)
   ========================================================================== */
.about-section {
  background-color: var(--light-bg);
  padding: 6.5rem 0;
  position: relative;
}

.about-card-media {
  position: relative;
}

.about-main-box {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-img {
  padding: 16px 16px 0 16px;
}

.about-img img {
  border-radius: var(--radius-md);
  height: 300px;
  width: 100%;
  object-fit: cover;

}

.about-map-simulation {
  background: #0b1120;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  min-height: 180px;
}

.map-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: #ffffff;
  font-family: var(--font-mono);
}

.map-node-1 {
  top: 25%;
  left: 15%;
}

.map-node-2 {
  top: 38%;
  left: 55%;
}

.map-node-3 {
  top: 65%;
  left: 30%;
}

.map-node-4 {
  top: 28%;
  right: 12%;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 16px;
}

.about-metric-card {
  background: var(--light-surface-2);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform var(--transition-fast);
}

.about-metric-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.about-metric-card .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-metric-card .label {
  font-size: 0.825rem;
  color: var(--light-text-dim);
  font-weight: 500;
}

.about-checklist {
  margin: 1.75rem 0 2rem 0;
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.check-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2eeff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-check-content h5 {
  font-size: 15px;
  margin-bottom: 0.2rem;
  color: var(--light-text);
}

.about-check-content p {
  font-size: 0.9rem;
  color: var(--light-text-muted);
  margin-bottom: 0;
}

.about-phone-box {
  background: var(--primary-dark);
  border-left: 6px solid var(--primary);
  border-radius: 24px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.phone-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-icon-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.phone-details span {
  font-size: 0.8rem;
  color: var(--light-border-strong);
  display: block;
}

.phone-details a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-surface);
  font-family: var(--font-heading);
}

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

/* ==========================================================================
   OUR SERVICES SECTION (INVERTED CARD STATES)
   Normal State = Dark Cybernetic Theme with Background Image
   Hover State = Crisp Light Theme with Primary Accents
   ========================================================================== */
.services-section {
  background-color: var(--light-surface);
  padding: 6.5rem 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  position: relative;
}

.service-card {
  position: relative;
  background: var(--dark-surface);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -5px rgba(11, 17, 32, 0.25), 0 0 25px rgba(37, 99, 235, 0.18);
  z-index: 1;
}

/* Background Image Layer (Active by default in normal state) */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/service-card-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: scale(1.04);
  filter: brightness(1.15) contrast(1.1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, filter 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

/* Gradient Overlay (Visible by default in normal state) */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.94) 0%, rgba(30, 58, 138, 0.92) 55%, rgba(14, 116, 144, 0.88) 100%);
  opacity: 1;
  transform: translateY(0) scale(1);
  border-radius: var(--radius-lg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

/* Top gradient accent line (Active by default in normal state) */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* ==========================================================================
   HOVER STATE: Transition to Light Theme
   ========================================================================== */
.service-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.15), 0 0 25px rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
  opacity: 0;
  transform: translateY(100%) scale(0.96);
}

.service-card:hover::after {
  opacity: 0;
}

.service-card:hover .service-card-bg {
  opacity: 0.04;
  transform: scale(1);
  filter: none;
}

/* Content Container Layers */
.service-card-header,
.service-card-body,
.service-card-footer {
  position: relative;
  z-index: 2;
}

/* Header with Icon Box & Round Arrow Button */
.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.4s ease;
}

.service-card:hover .service-card-header {
  border-color: var(--light-border);
}

/* Icon Box */
.service-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--gradient-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transform: scale(1.04) rotate(4deg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-wrapper {
  background: #cfe2fb;
  color: var(--primary);
  transform: scale(1) rotate(0deg);
  box-shadow: none;
}

/* Circular Action Arrow Button */
.service-card-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-arrow-btn i {
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-arrow-btn {
  background: var(--light-surface-2);
  border-color: var(--light-border);
  color: var(--primary);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.service-card:hover .service-card-arrow-btn i {
  transform: rotate(0deg);
}

/* Card Body Content */
.service-card-body {
  flex-grow: 1;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #ffffff;
  transition: color 0.4s ease;
}

.service-card:hover .service-title {
  color: var(--light-text);
}

.service-desc {
  font-size: 0.935rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  transition: color 0.4s ease;
}

.service-card:hover .service-desc {
  color: var(--light-text-muted);
}

/* Feature Tag */
.service-card-footer {
  margin-top: auto;
}

.service-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.825rem;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.18);
  color: var(--accent-sky);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  transition: all 0.4s ease;
}

.service-card:hover .service-feature-tag {
  background: var(--primary-subtle);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Large Decorative Watermark Icon */
.service-watermark-icon {
  position: absolute;
  right: -20px;
  bottom: -25px;
  font-size: 8.5rem;
  line-height: 1;
  color: var(--accent-sky);
  opacity: 0.16;
  transform: scale(1.12) rotate(-6deg) translate(-8px, -8px);
  filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.45));
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover .service-watermark-icon {
  color: var(--primary);
  opacity: 0.05;
  transform: scale(1) rotate(10deg) translate(0, 0);
  filter: none;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (LIGHT/MODERN SPLIT)
   ========================================================================== */
.why-choose-section {
  background-color: var(--light-bg);
  padding: 6.5rem 0;
  position: relative;
}

.why-choose-section .choose-us-img {
  border-radius: var(--radius-md);
  height: 370px;
  width: 100%;
  object-fit: cover;
}

.why-choose-item {
  display: flex;
  gap: 1.35rem;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.why-choose-item:hover {
  transform: translateX(6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.num-badge-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.why-choose-item:hover .num-badge-box {
  background: var(--primary);
  color: #ffffff;
}

.why-choose-item-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--light-text);
}

.why-choose-item-content p {
  font-size: 0.9rem;
  color: var(--light-text-muted);
  margin-bottom: 0;
}

/* Process Timeline Card */
.process-box-visual {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 17px;
  bottom: 0;
  width: 2px;
  background: var(--light-border);
}

.process-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 1;
}

.process-step-info h5 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--light-text);
}

.process-step-info p {
  font-size: 0.85rem;
  color: var(--light-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   CORE FEATURES / SMART MONITORING SUITE (DEEP DARK MODE)
   ========================================================================== */
.features-section {
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
  color: var(--dark-text);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.dark-feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
}

.dark-feature-card:hover {
  border-color: var(--dark-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 99, 235, 0.15);
}

.dark-feature-card .card-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-sky);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.dark-feature-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.dark-feature-card p {
  font-size: 0.925rem;
  color: var(--dark-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Dashboard Card specifics */
.monitoring-mock-screen {
  background: rgba(11, 17, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.mock-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.progress-track-custom {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill-green {
  background: linear-gradient(90deg, #10b981, #34d399);
  height: 100%;
  width: 99.98%;
  border-radius: 4px;
}

.pill-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-screen-pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-screen-pill.online {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-screen-pill.ssl {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.badge-screen-pill.speed {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Alert channels list */
.alert-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.channel-badge-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 500;
}

.channel-badge-item i {
  color: var(--accent-sky);
  font-size: 1rem;
}

/* Recovery Workflow Timeline */
.recovery-timeline-compact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.recovery-node {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
}

.recovery-node-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red-solid {
  background: #ef4444;
}

.dot-yellow-solid {
  background: #f59e0b;
}

.dot-blue-solid {
  background: #3b82f6;
}

.dot-green-solid {
  background: #10b981;
}

.recovery-node span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* Performance mini-chart */
.analytics-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.chart-col {
  flex: 1;
  background: linear-gradient(to top, rgba(37, 99, 235, 0.3), var(--primary-light));
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: all var(--transition-fast);
}

.chart-col:hover {
  background: linear-gradient(to top, var(--primary), var(--accent-cyan));
}

/* ==========================================================================
   PRICING SECTION (LIGHT MODE WITH FEATURED TIER)
   ========================================================================== */
.pricing-section {
  background-color: var(--light-surface);
  padding: 6.5rem 0;
  position: relative;
}

.billing-switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.billing-switch-wrapper span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-text);
}

.switch-toggle-btn {
  position: relative;
  width: 52px;
  height: 28px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  padding: 2px;
  transition: background-color var(--transition-fast);
}

.switch-toggle-knob {
  display: block;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.switch-toggle-btn.annual .switch-toggle-knob {
  transform: translateX(24px);
}

.discount-tag {
  background: var(--signal-green-soft);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.pricing-card {
  background: var(--light-bg);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.65rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.2);
}

/* Featured Card (Gold Plan) */
.pricing-card.featured {
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--light-text-dim);
  min-height: 40px;
  margin-bottom: 1.25rem;
}

.plan-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-border);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text);
  vertical-align: top;
}

.price-val {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--light-text);
  line-height: 1;
}

.pricing-card.featured .price-val {
  color: var(--primary);
}

.price-period {
  font-size: 0.85rem;
  color: var(--light-text-dim);
}

.plan-features-list {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--light-text-muted);
  margin-bottom: 0.75rem;
}

.plan-feature-item i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-card.featured .plan-feature-item i {
  color: var(--signal-green);
}

.btn-plan-action {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  display: inline-block;
}

.btn-plan-action:hover {
  background: var(--primary);
  color: #ffffff;
}

.pricing-card.featured .btn-plan-action {
  background: var(--gradient-blue);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.pricing-card.featured .btn-plan-action:hover {
  background: var(--gradient-blue-alt);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

/* ==========================================================================
   CORE FEATURES SECTION (REF DESIGN SPOTLIGHT)
   ========================================================================== */
.core-features-section {
  background-color: #f7f9fb;
  padding: 6rem 0;
  scroll-margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.core-features-intro {
  padding-right: 1rem;
}

.core-features-heading {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.22;
  color: #0f172a;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.core-features-heading .highlight-navy {
  font-weight: 800;
  color: #00374e;
  display: block;
}

.core-features-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 380px;
}

.btn-feature-expert {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #00374e;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 55, 78, 0.22);
  transition: all var(--transition-normal);
}

.btn-feature-expert:hover {
  background-color: #024f70;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 55, 78, 0.35);
}

.btn-feature-expert i {
  transition: transform 0.2s ease;
}

.btn-feature-expert:hover i {
  transform: translateX(4px);
}

/* Right Grid Layout (3-Cards) */
.core-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.core-feature-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 55, 78, 0.08);
  background-color: #00374e;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.core-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 55, 78, 0.32);
}

.core-feature-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.core-feature-card:hover .core-feature-card-bg {
  transform: scale(1.08);
}

.core-feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 48, 70, 0.45) 0%, rgba(0, 52, 75, 0.72) 42%, rgba(0, 42, 62, 0.94) 75%, #00283b 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}

.core-feature-card:hover .core-feature-card-overlay {
  background: linear-gradient(180deg, rgba(0, 48, 70, 0.35) 0%, rgba(0, 52, 75, 0.66) 42%, rgba(0, 42, 62, 0.95) 75%, #002334 100%);
}

.core-feature-card-body {
  position: relative;
  z-index: 2;
  padding: 1.65rem 1.4rem;
}

.core-feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  color: #00374e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.core-feature-card:hover .core-feature-icon-box {
  transform: scale(1.08);
}

.core-feature-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.core-feature-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   CTA SECTION (HIGH CONVERSION BANNER)
   ========================================================================== */
.cta-section {
  background-color: var(--dark-bg);
  padding: 5.5rem 0;
  position: relative;
}

.cta-banner-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(37, 99, 235, 0.2);
}

.cta-banner-card-topDiv {
  width: 65%;
  margin: 0 auto;
}

.cta-description-full {
  max-width: 100%;
}

.cta-banner-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner-glow-top {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #06b6d466, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-title {
  font-size: 2.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.cta-contact-strip {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-contact-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cta-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cta-contact-text span {
  font-size: 0.8rem;
  color: #94a3b8;
  display: block;
}

.cta-contact-text a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.cta-contact-text a:hover {
  color: var(--accent-sky);
}

/* ==========================================================================
   FOOTER (DEEP DARK MODE)
   ========================================================================== */
.main-footer {
  background-color: #060913;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-brand-desc {
  font-size: 0.925rem;
  line-height: 1.7;
  color: #64748b;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  max-width: 340px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.35rem;
  letter-spacing: 0.02em;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--accent-sky);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #94a3b8;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #64748b;
}

.footer-bottom-links a:hover {
  color: #94a3b8;
}

/* ==========================================================================
   HELPER & COMPONENT CLASSES (NO INLINE STYLES)
   ========================================================================== */
.floating-badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.floating-badge-subtitle {
  font-size: 0.75rem;
  color: var(--dark-text-muted);
}

.hero-probe-meta {
  font-size: 0.8rem;
}

.ping-bar-1 {
  height: 45%;
}

.ping-bar-2 {
  height: 52%;
}

.ping-bar-3 {
  height: 40%;
}

.ping-bar-4 {
  height: 60%;
}

.ping-bar-5 {
  height: 38%;
}

.ping-bar-6 {
  height: 48%;
}

.ping-bar-7 {
  height: 70%;
}

.ping-bar-8 {
  height: 55%;
}

.ping-bar-9 {
  height: 42%;
}

.ping-bar-10 {
  height: 65%;
}

.ping-bar-11 {
  height: 49%;
}

.ping-bar-12 {
  height: 58%;
}

.ping-bar-13 {
  height: 44%;
}

.ping-bar-14 {
  height: 50%;
}

.ping-bar-15 {
  height: 62%;
}

.about-map-icon {
  font-size: 3rem;
  opacity: 0.4;
  color: var(--primary);
}

.about-map-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.chart-col-1 {
  height: 60%;
}

.chart-col-2 {
  height: 75%;
}

.chart-col-3 {
  height: 50%;
}

.chart-col-4 {
  height: 85%;
}

.chart-col-5 {
  height: 90%;
}

.chart-col-6 {
  height: 65%;
}

.chart-col-7 {
  height: 95%;
}

.chart-col-8 {
  height: 80%;
}

.chart-labels-meta {
  font-size: 0.75rem;
  color: var(--dark-text-muted);
}

.support-card-icon {
  width: 56px;
  height: 56px;
  font-size: 1.75rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-call-specialists {
  background: var(--accent-sky);
  color: var(--dark-bg);
  border-color: transparent;
}

.btn-call-specialists:hover {
  background: transparent;
  color: var(--accent-sky);
  border-color: var(--accent-sky);

}

.cta-visual-preview-box {
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
}

.cta-shield-icon {
  font-size: 4.5rem;
  color: var(--primary);
}

.footer-node-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--signal-green);
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

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

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

@keyframes float-gentle {

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

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

/* ==========================================================================
   SUB-PAGE HERO / BANNER SECTION (DARK THEME)
   ========================================================================== */
.page-hero-section {
  background-color: var(--dark-bg);
  padding: 5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  margin-bottom: 1.5rem;
}

.page-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--accent-sky);
}

.page-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.page-breadcrumb .current {
  color: #ffffff;
  font-weight: 600;
}

.page-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.page-hero-desc {
  font-size: 1.15rem;
  color: var(--dark-text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   ABOUT US EXPANDED PAGE COMPONENTS
   ========================================================================== */
.about-story-section {
  background-color: var(--light-surface);
  padding: 6rem 0;
}

.about-story-card {
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.about-purpose-card {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.about-purpose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.35) !important;
}

.about-value-box {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--transition-normal);
}

.about-value-box:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.about-value-box:hover .value-icon-box {
  background: var(--primary);
  color: #ffffff;
}

.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tech-spec-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.tech-spec-item .spec-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-sky);
  font-family: var(--font-heading);
  margin-bottom: 0.35rem;
}

.tech-spec-item .spec-label {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   PACKAGES COMPARISON MATRIX TABLE & FAQ
   ========================================================================== */
.comparison-section {
  background-color: var(--light-surface);
  padding: 5.5rem 0;
  border-top: 1px solid var(--light-border);
}

.comparison-table-wrapper {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  margin-bottom: 0;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.15rem 1.25rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--light-border);
  font-size: 0.95rem;
}

.comparison-table thead th {
  background: #0b1120;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid rgba(56, 189, 248, 0.3);
}

.comparison-table thead th:first-child {
  text-align: left;
  background: #080d19;
}

.comparison-table tbody tr:hover {
  background-color: #f8fafc;
}

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

.table-check-icon {
  color: #10b981;
  font-size: 1.25rem;
}

.table-cross-icon {
  color: #94a3b8;
  font-size: 1.1rem;
}

.table-badge-highlight {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--light-bg);
  padding: 5.5rem 0;
}

.faq-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  background: #ffffff;
  color: var(--light-text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-subtle);
  color: var(--primary);
}

.faq-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  color: var(--light-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  background: #ffffff;
}

/* ==========================================================================
   CONTACT PAGE COMPONENTS
   ========================================================================== */
.contact-page-section {
  background-color: var(--light-bg);
  padding: 6rem 0;
}

.contact-channel-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.contact-channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-channel-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--primary-subtle);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.contact-channel-card:hover .contact-channel-icon {
  background: var(--gradient-blue);
  color: #ffffff;
}

.contact-channel-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.contact-channel-card p {
  font-size: 0.9rem;
  color: var(--light-text-muted);
  margin-bottom: 1rem;
}

.contact-channel-card a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-channel-card a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-custom-group {
  margin-bottom: 12px;
}

.form-custom-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 0.45rem;
}

.form-custom-input,
.form-custom-select,
.form-custom-textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: #f8fafc;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  color: var(--light-text);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-custom-input:focus,
.form-custom-select:focus,
.form-custom-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

/* NOC Operations Side Box */
.noc-operations-box {
  background: #0b1120;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  height: 100%;
}

.progress-thin {
  height: 6px;
}

/* ==========================================================================
   CHECKOUT PAGE COMPONENTS
   ========================================================================== */
.checkout-section {
  background-color: var(--light-bg);
  padding: 4rem 0 4rem 0;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.checkout-step-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--light-border);
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.checkout-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0;
  font-family: var(--font-heading);
}

/* Payment Method Tile Selector */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.payment-method-tile {
  background: #f8fafc;
  border: 2px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-method-tile:hover {
  border-color: #93c5fd;
  background: #ffffff;
}

.payment-method-tile.active {
  border-color: var(--primary);
  background: #eff6ff;
}

.payment-method-icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.payment-method-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--light-text);
  display: block;
}

/* Sticky Order Summary Box */
.order-summary-box {
  background: #ffffff;
  border: 2px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.summary-plan-badge {
  background: var(--gradient-blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.summary-price-display {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 1rem 0;
}

.summary-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.925rem;
  color: var(--light-text-muted);
  border-bottom: 1px solid var(--light-border);
}

.summary-breakdown-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--light-text);
  border-bottom: none;
  border-top: 2px solid var(--light-border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.security-assurance-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

/* ==========================================================================
   THANK YOU / CONFIRMATION PAGE COMPONENTS
   ========================================================================== */
.thankyou-section {
  background-color: var(--light-bg);
  padding: 5rem 0 6rem 0;
}

.thankyou-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}

.success-check-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 3px solid #10b981;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.75rem;
  animation: pulse-success 2.5s infinite;
}

@keyframes pulse-success {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.order-receipt-summary {
  background: #f8fafc;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.25rem 0;
  text-align: left;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.receipt-item span {
  display: block;
  font-size: 0.775rem;
  color: var(--light-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.receipt-item strong {
  font-size: 1rem;
  color: var(--light-text);
  font-family: var(--font-heading);
}

.next-steps-container {
  text-align: left;
  margin: 2.5rem 0;
}

.next-step-tile {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.next-step-tile:hover {
  border-color: var(--primary);
  background: #fbfdff;
}

.step-number-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.85rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .core-features-heading {
    font-size: 2.35rem;
  }

  .core-feature-card {
    height: 440px;
  }

  .core-feature-card-body {
    padding: 1.25rem 1.1rem;
  }

  .core-feature-card-title {
    font-size: 1.05rem;
  }

  .core-feature-card-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 991.98px) {

  /* Mobile & Tablet Glassmorphic Navigation Drawer */
  .navbar-collapse.main-menu {
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    margin-top: 0.85rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(56, 189, 248, 0.1);
  }

  .nav-link {
    padding: 0.65rem 1rem !important;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-sky) !important;
  }

  .nav-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .btn-nav-login,
  .btn-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.25rem;
  }

  /* Section Spacing on Tablet */
  .hero-section {
    padding: 4.5rem 0 3.5rem 0;
  }

  .about-section,
  .services-section,
  .why-choose-section,
  .features-section,
  .pricing-section,
  .core-features-section,
  .cta-section {
    padding: 4.5rem 0;
  }

  .section-title {
    font-size: 2.15rem;
  }

  /* Hero Section */
  .hero-title {
    font-size: 2.45rem;
  }

  .hero-visual-card {
    max-width: 520px;
    margin: 2.5rem auto 0;
  }

  .hero-pills-layout {
    height: 390px;
    gap: 10px;
  }

  .hero-float-badge {
    padding: 6px 14px 6px 6px;
    gap: 10px;
  }

  .badge-icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .badge-text {
    font-size: 0.85rem;
  }

  .hero-float-badge-bottom {
    left: 14px;
  }

  /* About Us */
  .about-phone-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  /* Core Features */
  .core-features-intro {
    text-align: center;
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  .core-features-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .core-features-heading {
    font-size: 2.2rem;
  }

  .core-features-grid {
    gap: 1rem;
  }

  .core-feature-card {
    height: 420px;
  }

  /* CTA Section on Tablet */
  .cta-banner-card {
    padding: 2.5rem 1.75rem;
  }

  .cta-banner-card-topDiv {
    width: 100%;
  }

  .cta-title {
    font-size: 2.15rem;
  }

  /* Sub-page adjustments on Tablet */
  .page-hero-title {
    font-size: 2.25rem;
  }

  .order-summary-box {
    position: static;
    margin-top: 2.5rem;
  }

  .noc-operations-box {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .top-bar-links {
    display: none;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-title br {
    display: none;
  }

  /* Hero Section Mobile */
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-metric-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary-custom,
  .hero-actions .btn-secondary-custom {
    width: 100%;
  }

  .hero-stats-row {
    gap: 1.5rem;
  }

  .alert-channels-grid {
    grid-template-columns: 1fr;
  }

  /* Core Features Mobile */
  .core-features-heading {
    font-size: 1.95rem;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .core-feature-card {
    height: 390px;
  }

  /* CTA Section Mobile Contact Strip */
  .cta-contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cta-contact-box {
    width: 100%;
  }

  .cta-contact-text a {
    font-size: 1rem;
    word-break: break-all;
  }

  /* Footer Mobile */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Sub-page Mobile Adjustments */
  .page-hero-title {
    font-size: 1.95rem;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-card {
    padding: 2.25rem 1.25rem;
  }

  .about-story-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 575.98px) {

  /* Brand Logo on Small Screens */
  .brand-logo {
    font-size: 1.28rem;
  }

  .brand-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  /* Section Spacing & Typography */
  .about-section,
  .services-section,
  .why-choose-section,
  .features-section,
  .pricing-section,
  .core-features-section,
  .cta-section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .section-description {
    font-size: 0.95rem;
  }

  /* Hero Visual Card Small Mobile */
  .hero-visual-card {
    max-width: 100%;
    overflow: visible;
  }

  .hero-pills-layout {
    height: 300px;
    gap: 8px;
  }

  .hero-pill-main {
    border-radius: 18px;
  }

  .hero-pill-mid,
  .hero-pill-end {
    border-radius: 32px;
  }

  .hero-float-badge {
    padding: 5px 10px 5px 5px;
    gap: 8px;
    border-radius: 10px;
  }

  .badge-icon-box {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .badge-text {
    font-size: 0.74rem;
  }

  .hero-float-badge-top {
    top: -4px;
    left: 0px;
  }

  .hero-float-badge-bottom {
    bottom: -4px;
    left: 6px;
  }

  .hero-float-badge-right {
    right: 0px;
  }

  /* About Us Mobile */
  .about-img img {
    height: 220px;
  }

  .about-phone-box {
    padding: 1.35rem 1.15rem;
    border-radius: 18px;
  }

  .phone-details a {
    font-size: 1.25rem;
  }

  .about-phone-box .btn-primary-custom {
    width: 100%;
  }

  /* Our Services Mobile */
  .service-card {
    padding: 1.75rem 1.25rem;
    min-height: auto;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }

  .service-card-arrow-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* Why Choose Us Mobile */
  .why-choose-section .choose-us-img {
    height: 250px;
  }

  .why-choose-item {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .num-badge-box {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .process-box-visual {
    padding: 1.5rem 1.15rem;
  }

  /* Smart Monitoring Suite Mobile */
  .dark-feature-card {
    padding: 1.5rem 1.25rem;
  }

  /* Pricing Mobile */
  .pricing-card {
    padding: 2rem 1.25rem;
  }

  .billing-switch-wrapper {
    margin-bottom: 2.25rem;
  }

  /* Core Features Mobile */
  .core-features-intro .btn-primary-custom {
    width: 100%;
  }

  .core-feature-card-body {
    padding: 1.25rem 1.15rem;
  }

  /* CTA Banner Mobile */
  .cta-banner-card {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .cta-banner-card-topDiv .btn-primary-custom,
  .cta-banner-card-topDiv .btn-secondary-custom {
    width: 100%;
  }

  /* Sub-page Small Mobile Adjustments */
  .page-hero-title {
    font-size: 1.65rem;
  }

  .page-hero-section {
    padding: 3.5rem 0 2.5rem 0;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  .checkout-card {
    padding: 1.75rem 1.25rem;
  }

  .order-summary-box {
    padding: 1.75rem 1.25rem;
  }

  .noc-operations-box {
    padding: 1.75rem 1.25rem;
  }
}

.ug-thankyou{

    background:linear-gradient(180deg,#ffffff 0%,#f8fcfd 100%);

    min-height:100vh;

    display:flex;

    align-items:center;

}



.ug-thankyou-card{

    max-width:680px;

    margin:0 auto;

    background:#ffffff;

    border:1px solid rgba(1,136,186,.08);

    border-radius:32px;

    padding:60px 50px;

    text-align:center;

    box-shadow:0 25px 60px rgba(1,68,118,.08);

    position:relative;

    overflow:hidden;

}



.ug-thankyou-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:radial-gradient(circle,

        rgba(148,202,220,.35),

        transparent 70%);

    top:-120px;

    right:-80px;

}



.success-icon{

    width:90px;

    height:90px;

    margin:0 auto 24px;

    border-radius:50%;

    background:linear-gradient(135deg,#0188ba,#40a3c6);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:42px;

}



.ug-thankyou-card h1{

    font-size:42px;

    color:#014476;

    margin:18px 0;

}



.ug-thankyou-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:36px;

}



.order-box{

    background:linear-gradient(135deg,#d1e5ec,#94cadc);

    border-radius:24px;

    padding:28px;

    margin-bottom:36px;

}



.order-box span{

    display:block;

    color:#014476;

    font-weight:600;

    margin-bottom:8px;

}



.order-box h2{

    font-size:34px;

    color:#014476;

    margin:0;

    letter-spacing:1px;

}



.order-info{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-bottom:36px;

}



.info-item{

    flex:1;

    min-width:0;

    background:#f8fcfd;

    border:1px solid rgba(1,136,186,.08);

    border-radius:18px;

    padding:20px;

    overflow-wrap:break-word;

}



.info-item span{

    display:block;

    color:#64748b;

    font-size:14px;

    margin-bottom:8px;

}



.info-item strong{

    color:#014476;

    font-size:18px;

}



.status-success{

    color:#0188ba;

}



.ug-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:16px;

    background:linear-gradient(135deg,#0188ba,#40a3c6);

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.ug-btn-primary:hover{

    background:linear-gradient(135deg,#014476,#0188ba);

}



.thankyou-actions{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:16px;

}



.ug-btn-outline-light{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:16px;

    border:1px solid rgba(1,136,186,.3);

    color:#014476;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.ug-btn-outline-light:hover{

    background:rgba(1,136,186,.08);

}



@media (max-width:768px){



    .ug-thankyou{

        padding:80px 0;

    }



    .ug-thankyou-card{

        padding:40px 28px;

    }



    .ug-thankyou-card h1{

        font-size:32px;

    }



    .order-info{

        flex-direction:column;

    }



    .order-box h2{

        font-size:28px;

    }



}



#my-widget-popup {

    top: auto !important;

    bottom: 20px !important;

}



#widget-content {

    bottom: 0px !important;

    top: auto !important;

}