/* Color Strategy & Token Architecture Config Settings (Sky & Ocean Blue Palette) */
:root {
    --primary-blue: #0066ff;       /* Vibrant blue for primary buttons and focus states */
    --ocean-gradient-start: #0052cc; /* Rich deep blue for headers and banners */
    --ocean-gradient-end: #0080ff;   /* Bright sky blue for gradient blends */
    --sky-bg-light: #eef4fa;        /* Clean, ultra-light ice blue background tint */
    --card-white: #ffffff;          /* Pure white for prominent floating cards */
    
    --text-primary: #0f2942;        /* Dark slate navy for maximum readability */
    --text-muted: #697b8c;          /* Soft slate gray for secondary labels */
    
    --status-green: #2ecc71;
    --border-soft: rgba(0, 102, 255, 0.08);
    --shadow-premium: 0 12px 40px rgba(0, 82, 204, 0.06);
}

html {
    scroll-behavior: smooth;
    background-color: var(--sky-bg-light);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: var(--sky-bg-light);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Subtle architectural mesh grid pattern */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 102, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 102, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Clean White Header Navigation Component */
header {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    clip-path: circle(42% at 50% 50%); 
    transition: transform 0.3s ease;
}

.logo-container a:hover .brand-logo-img {
    transform: scale(1.08);
}

.brand-name-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text-primary);
}

/* Desktop Navigation Styling */
nav.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav.nav-links a:hover {
    color: var(--primary-blue);
}

.admin-tag {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.btn-contact {
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.mobile-only-btn { display: none; }
.desktop-only-btn { display: inline-block; }

/* Hero Section Modules */
.hero-container {
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.launching-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn-secondary {
    background: var(--card-white);
    color: var(--text-primary);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: var(--shadow-premium);
    transition: background 0.2s, transform 0.2s;
    text-align: center;
}

/* Reference Image Travel Card Monitor Interface Widget */
.tracker-card {
    background: var(--card-white);
    border-radius: 32px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 50%;
    opacity: 0.3;
}

.live-url {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-banner {
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    border-radius: 20px;
    padding: 25px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    margin-bottom: 35px;
    text-align: center;
}

.route-slider-container {
    margin-bottom: 35px;
    padding: 0 10px;
}

.slider-track {
    height: 6px;
    background: #e2ecf5;
    border-radius: 3px;
    position: relative;
    margin-bottom: 15px;
}

.slider-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-handle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
}

.route-labels {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.route-label {
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    font-weight: 800;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.route-label.active {
    color: var(--primary-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-box {
    background: #f4f8fc;
    border-radius: 16px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid var(--border-soft);
}

.stat-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
}

.status-green {
    color: var(--status-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--status-green);
    border-radius: 50%;
}

/* System Metric Counters */
.stats-counter-section {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 40px 0 60px 0;
    flex-wrap: wrap;
}

.stat-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.counter-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Infinite Loop Marquee System Block */
.ticker-wrapper {
    position: relative;
    background: linear-gradient(90deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    border-radius: 50px;
    padding: 16px 0;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.12);
}

.ticker-container {
    display: flex;
    width: max-content;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: scrollMarquee 30s linear infinite;
}

.ticker-track span {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.ticker-track span.dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
}

.ticker-fade-left, .ticker-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.ticker-fade-left { left: 0; background: linear-gradient(90deg, var(--ocean-gradient-start) 0%, transparent 100%); }
.ticker-fade-right { right: 0; background: linear-gradient(-90deg, var(--ocean-gradient-end) 0%, transparent 100%); }

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Core Value Props Section */
.difference-section {
    background: var(--card-white);
    border-radius: 32px;
    padding: clamp(30px, 5vw, 60px);
    color: var(--text-primary);
    margin-bottom: 60px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.diff-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.diff-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 35px;
}

.diff-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.diff-pill {
    background: #f4f8fc;
    border: 1px solid var(--border-soft);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Split Bifurcated User Profile Layout Panels */
.dual-target-container {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    background: var(--card-white);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-premium);
    margin-bottom: 60px;
}

.split-panel {
    padding: clamp(30px, 5vw, 60px);
}

.panel-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    background: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}

.panel-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.panel-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.panel-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.split-divider-bar {
    background: #f0f4f8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-plus-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    border: 3px solid #ffffff;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

/* ==========================================================================
   Fleet Commercial Plans Grid (Updated 3-Column Configuration)
   ========================================================================== */
.plans-section {
    padding: 60px 0;
    text-align: center;
}

.plans-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.plans-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.plans-subheading {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.plan-card {
    background: var(--card-white);
    border: 1px solid var(--border-soft);
    border-radius: 32px;
    padding: clamp(25px, 4vw, 45px) clamp(20px, 3vw, 35px);
    text-align: left;
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover { 
    transform: translateY(-5px); 
}

/* Plan 1: Featured Blue Style */
.plan-card.featured {
    border: 2px solid var(--primary-blue);
    background: #f7faff;
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.12);
}

/* Plan 2: Modern Deep Ocean Blue Background Highlight */
.plan-card.featured-blue {
    background: linear-gradient(145deg, #003fa8 0%, #0066ff 100%);
    border: 2px solid #3399ff;
    box-shadow: 0 22px 50px rgba(0, 82, 204, 0.28);
    color: #ffffff;
}

.plan-card.featured-blue:hover {
    box-shadow: 0 28px 55px rgba(0, 82, 204, 0.38);
}

.plan-card.featured-blue .plan-number {
    color: rgba(255, 255, 255, 0.7);
}

.plan-card.featured-blue .plan-title {
    color: #ffffff;
}

.plan-card.featured-blue .plan-desc {
    color: rgba(255, 255, 255, 0.88);
}

.plan-card.featured-blue .plan-features li {
    color: #ffffff;
}

.plan-card.featured-blue .plan-features li::before {
    color: #5ce1e6; /* Vibrant cyan checkmarks for high contrast */
}

.plan-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.15);
}

/* White & Cyan badge for Card 2 over dark blue */
.plan-badge.badge-blue {
    background: #ffffff;
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.plan-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.plan-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.plan-features li {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 1rem;
}

/* Operational Safeguards Guarantee Layout Banner */
.promise-container {
    background: linear-gradient(135deg, var(--ocean-gradient-start) 0%, #002e80 100%);
    border-radius: 40px;
    padding: clamp(30px, 5vw, 60px);
    color: white;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 20px 45px rgba(0, 82, 204, 0.15);
}

.promise-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.promise-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.promise-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.promise-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promise-row-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 24px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.promise-icon-box {
    background: #ffffff;
    color: var(--primary-blue);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.promise-item-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.promise-item-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Service Experience Architecture Blocks */
.experience-section {
    margin-bottom: 60px;
}

.experience-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    background: var(--card-white);
    border-radius: 36px;
    padding: 24px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.exp-main-hero-block {
    background: linear-gradient(135deg, #003399, #0052cc);
    border-radius: 28px;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 45px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exp-main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.exp-main-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.exp-main-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.exp-stat-metric-value {
    font-size: 2rem;
    font-weight: 800;
}

.exp-stat-metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.exp-features-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.exp-feature-item-card {
    background: #f8fbfe;
    border-radius: 24px;
    padding: 30px 25px;
    border: 1px solid var(--border-soft);
    transition: transform 0.3s;
}

.exp-feature-item-card:hover { transform: translateY(-4px); }

.exp-feature-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.exp-feature-icon-wrapper svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.exp-feature-card-heading {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.exp-feature-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Mapping System & Terminal Dashboard Layout */
.network-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 34px;
    margin-bottom: 60px;
}

.network-left-panel {
    background: var(--card-white);
    border-radius: 36px;
    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.network-region-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    width: fit-content;
}

.network-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.network-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.network-pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.network-city-pill {
    background: #f4f8fc;
    color: var(--text-primary);
    border: 1px solid var(--border-soft);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.network-city-pill:hover, .network-city-pill.glow-active {
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.network-right-map-panel {
    background: #0a1931;
    border-radius: 36px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    box-shadow: 0 20px 45px rgba(0, 59, 153, 0.12);
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 102, 255, 0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 102, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.terminal-radar-pulse {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    animation: radarPulseScan 4s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes radarPulseScan {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: scale(3.5); opacity: 0; }
}

.map-central-bus-icon-node {
    width: 54px;
    height: 38px;
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
    z-index: 4;
    border: 2px solid #ffffff;
}

.map-central-bus-icon-node::after {
    content: '∿';
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.hub-status-ring {
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    animation: spinHubRing 12s infinite linear;
}

@keyframes spinHubRing {
    100% { transform: rotate(360deg); }
}

.terminal-vector-track {
    position: absolute;
    background: rgba(0, 102, 255, 0.12);
    pointer-events: none;
    z-index: 2;
}

.terminal-vector-track.vertical { top: 0; bottom: 0; width: 2px; left: 50%; }
.terminal-vector-track.horizontal { left: 0; right: 0; height: 2px; top: 50%; }
.terminal-vector-track.diagonal-left { width: 150%; height: 2px; transform: rotate(22deg); }
.terminal-vector-track.diagonal-right { width: 150%; height: 2px; transform: rotate(-22deg); }

.map-city-node-badge {
    position: absolute;
    background: #112240;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
    white-space: nowrap;
}

.node-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-blue);
}

.node-status-tag {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Scaled Coordinates Positioning Arrays */
.node-delhi     { top: 8%;  left: 38%; }
.node-manali    { top: 10%; right: 8%; }
.node-lucknow   { top: 25%; left: 8%; }
.node-ujjain    { top: 28%; right: 12%; }
.node-nagpur    { top: 42%; right: 6%; }
.node-mumbai    { top: 48%; left: 6%; }
.node-pune      { top: 62%; left: 14%; }
.node-hyderabad { top: 60%; right: 10%; }
.node-kolhapur  { top: 76%; left: 6%; }
.node-goa       { top: 88%; left: 20%; }
.node-bengaluru { top: 78%; right: 24%; }
.node-chennai   { top: 86%; right: 4%; }

/* Timeline Product Strategy Infrastructure */
.roadmap-section {
    padding: 60px 0;
    text-align: center;
}

.roadmap-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
    display: inline-block;
}

.roadmap-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
}

.roadmap-timeline-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roadmap-timeline-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: #e2ecf5;
}

.roadmap-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.roadmap-dot-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    border: 2px solid rgba(0, 102, 255, 0.2);
    margin-bottom: 30px;
}

.roadmap-step-node.active-now .roadmap-dot-indicator {
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.25);
}

.roadmap-card-box {
    background: var(--card-white);
    border-radius: 28px;
    padding: 35px 25px;
    text-align: left;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 100%;
}

.roadmap-step-node.active-now .roadmap-card-box {
    border: 1px solid var(--primary-blue);
    background: #f7faff;
}

.roadmap-card-phase-label {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: block;
    color: var(--primary-blue);
}

.roadmap-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.roadmap-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Operational Communications Intake block */
.contact-section-wrapper {
    background: linear-gradient(135deg, #003b99 0%, #001f52 100%);
    border-radius: 40px;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 50px);
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 45px rgba(0, 59, 153, 0.15);
}

.contact-pill-tag {
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.contact-main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.contact-sub-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.company-email-badge-box {
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 24px;
    word-break: break-all;
}

.badge-title-label { font-size: 0.65rem; color: var(--ocean-gradient-end); display: block; }
.badge-value-text { font-size: clamp(0.95rem, 2vw, 1.15rem); font-weight: 700; }

.contact-profile-card-panel {
    background: var(--card-white);
    border-radius: 32px;
    padding: clamp(25px, 4vw, 40px);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.profile-business-tag {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    width: fit-content;
}

/* Contact & Inquiry Form Styling */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f8fbfe;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%230066ff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--card-white);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.profile-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 24px;
}

.profile-avatar-initials {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--ocean-gradient-start), var(--ocean-gradient-end));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.profile-name-text { font-size: 1.35rem; font-weight: 800; }
.profile-role-text { color: var(--text-muted); font-size: 0.9rem; }

.contact-communication-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.communication-icon-container {
    width: 44px;
    height: 44px;
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.communication-icon-container svg { width: 20px; height: 20px; fill: currentColor; }
.communication-label { font-size: 0.65rem; color: var(--text-muted); display: block; }
.communication-value-link { font-size: clamp(0.9rem, 2vw, 1.05rem); font-weight: 700; color: var(--text-primary); text-decoration: none; word-break: break-all; }

/* Footer Framework Config */
footer {
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==========================================================================
   Fluid Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container,
    .network-section,
    .dual-target-container,
    .promise-container,
    .contact-section-wrapper,
    .experience-grid-layout {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .split-divider-bar {
        height: 50px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding-top: 70px;
    }

    header {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        margin: 0;
        padding: 12px 20px;
        border-radius: 28px;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-only-btn {
        display: none;
    }

    /* Dropdown nav menu collapsed by default */
    nav.nav-links {
        display: none !important;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 20px;
        margin-top: 10px;
        border-top: 1px solid rgba(0, 102, 255, 0.1);
    }

    /* Shown when user clicks hamburger menu */
    header.nav-open nav.nav-links {
        display: flex !important;
    }

    .mobile-only-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }

    .brand-name-text {
        font-size: 0.95rem;
    }

    .brand-logo-img {
        height: 38px;
        width: 38px;
    }

    .exp-features-subgrid,
    .roadmap-timeline-container {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline-container::before {
        display: none;
    }

    .network-right-map-panel {
        min-height: 480px;
    }

    .map-city-node-badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .node-status-tag {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-counter-section {
        flex-direction: column;
        gap: 20px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}