/* Core Structural Tokens */
:root {
    --bg-canvas: #090f1c; /* Deep rich modern navy canvas */
    --primary-navy: #0e2240;
    --navy-light: #18335c;
    --gold-bright: #f0ab24;
    --text-dark: #f3f4f6;
    --text-light-card: #111827;
    --text-muted: #9ca3af;
    --card-border: rgba(255, 255, 255, 0.08);
    --transition-apple: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

body {
    overflow-x: hidden;
    background-color: var(--bg-canvas);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(14, 34, 64, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(240, 171, 36, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Fluid Mesh Backdrop Glow Effects */
.mesh-gradient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}
.glow-1 {
    top: -10%;
    right: 10%;
    background: var(--gold-bright);
}
.glow-2 {
    top: 40%;
    left: -10%;
    background: #3b82f6;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Simple Card Style */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   UPDATED HIGH-LEGIBILITY DUAL-BUBBLE STYLING
   ========================================== */
.navbar-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    position: fixed;
    top: 24px;
    left: 5%;
    right: 5%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1000;
    background: transparent;        
    pointer-events: none;           
}

/* Base Pill Bubble Token Styles */
.logo-bubble,
.nav-bubble {
    display: flex;
    align-items: center;
    height: 72px;
    background: rgba(13, 20, 38, 0.85); /* High-end dark glass translucency */
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    pointer-events: auto;           
}

/* Left Bubble: Sleek Fitted Shield for Logo Contrast[cite: 5] */
.logo-bubble {
    padding: 0 1.75rem;
    border-radius: 20px;
    display: inline-flex;
}

.logo-bubble a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 30px;
    width: auto;                   
    object-fit: contain;
    display: block;
    /* Soft ambient illumination highlights logo tracking paths[cite: 5] */
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.658)); 
    transition: transform 0.2s ease;
}

.logo-container a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.07); /* Very soft glass white overlay */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.2s ease;
}

.logo-container a:hover {
    background: rgba(255, 255, 255, 0.12); /* Interactive hover effect */
}

.nav-logo:hover {
    transform: scale(1.02);
}

/* Right Bubble: Links Navigation */
.nav-bubble {
    padding: 0 0.8rem 0 1.5rem;
    gap: 0.5rem;
    position: relative;
    border-radius: 20px;
}

.global-sliding-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
}

.nav-bubble a.nav-item-target {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: color 0.2s ease;
}

.nav-bubble a.nav-item-target:hover {
    color: #fff;
}

/* Navbar Actions Alignment Configs */
.nav-bubble .nav-action-btn.nav-item-target {
    margin-left: 0.4rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 50px;
    height: 40px;
}

/* Custom Login Button Styling override */
.nav-btn-login {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
}

.nav-btn-login:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Custom Register Button Styling override */
.nav-btn-register {
    background: #ffffff !important;
    color: #0b0f19 !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1) !important;
}

.nav-btn-register:hover {
    background: #e2e8f0 !important;
    transform: translateY(-1px) !important;
}

/* ==========================================
   NEW AUTOMATED INFINITE MARQUEE ENGINE 
   ========================================== */
.partners-section {
    padding: 4rem 0 6rem 0;
    overflow: hidden; /* Clips elements spilling outside screen boundaries */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

/* Left & Right Edge Vignette Fades to hide sudden transitions */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-canvas) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-canvas) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: scrollMarquee 35s linear infinite; /* Smooth hardware-accelerated glide loop */
}

/* Pauses scroll timeline instantly on hover to interact with cards */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Halfway point jumps cleanly to duplicate start */
}

/* Marquee Card Override overrides static grids */
.marquee-track .partner-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0 2.5rem;
    height: 90px;
    width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents text blocks from compressing items */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.marquee-track .partner-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}

/* ==========================================
   REST OF PRE-EXISTING STYLING
   ========================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-apple);
}

.pill-btn {
    padding: 0.85rem 2.4rem;
    border-radius: 50px;
}

.nav-action-btn {
    border-radius: 16px;
}

.btn-dark {
    background: #fff;
    color: #090f1c;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--card-border);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Frame */
.hero-grid {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    padding-top: 100px;
}

.hero-text-block { max-width: 620px; }

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.text-gold { color: var(--gold-bright); }

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1.25rem; }

/* Interactive App Screen Card (Replaces old 3D box component) */
.smart-feature-card {
    width: 100%;
    max-width: 480px;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.card-header-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem;
    gap: 0.25rem;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-apple);
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-body-content {
    padding: 2rem;
    min-height: 220px;
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
    animation: panelFade 0.4s ease forwards;
}

@keyframes panelFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-status-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(240, 171, 36, 0.15);
    color: var(--gold-bright);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.panel-status-tag.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.panel-title {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.panel-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.mini-progress-display {
    margin-top: 1.5rem;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.04);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.progress-bar-wrapper {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, var(--gold-bright));
    border-radius: 10px;
}

.mini-metrics-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-item {
    flex: 1;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.04);
}

.metric-item h5 {
    font-size: 1.5rem;
    color: #fff;
}

.metric-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sections Layout */
.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold-bright);
    display: block;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.6rem;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 2.5rem;
}

.track-section { padding: 7rem 0; }

.track-card {
    padding: 4rem;
    border-radius: 32px;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tracker-form { display: flex; gap: 1rem; max-width: 650px; margin-top: 1.5rem; }

.tracker-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.95rem 1.4rem;
    border-radius: 50px;
    font-size: 1rem;
    color: #fff;
    outline: none;
    transition: var(--transition-apple);
}

.tracker-form input::placeholder {
    color: #6b7280;
}

.tracker-form input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 4px rgba(240, 171, 36, 0.15);
}

.tracker-form .btn { margin-left: 16px; }

.tracking-result {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status-timeline { display: flex; justify-content: space-between; }
.status-step { flex: 1; text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.status-step .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5rem auto;
}
.status-step.completed .dot { background: var(--gold-bright); }
.status-step.active .dot {
    background: #090f1c;
    border: 3px solid var(--gold-bright);
    width: 12px;
    height: 12px;
}
.status-step.completed p, .status-step.active p { color: #fff; font-weight: 500; }

.services-section { padding: 7rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    transition: var(--transition-apple);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(250, 204, 21, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.75rem;
}
.service-card h3 { font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.98rem; }

footer {
    margin: 8rem 0 4rem 0;
    padding: 4rem;
    border-radius: 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
}

.footer-logo { height: 26px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
footer p { font-size: 0.9rem; color: var(--text-muted); }

/* --- About View --- */
.about-hero {
    padding: 180px 0 4rem 0;
    max-width: 780px;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0.75rem 0 1.5rem 0;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 6rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.75rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0.75rem 0 1rem 0;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.stats-section { padding-bottom: 7rem; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}

.stat-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.story-section { padding-bottom: 7rem; }

.timeline {
    position: relative;
    max-width: 780px;
    margin-top: 1rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #090f1c;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
}

.cta-card { text-align: center; }
.cta-card .hero-actions { justify-content: center; margin-top: 2rem; }
.cta-card h2 { max-width: 640px; margin: 0.75 auto 0 auto; }

/* Courier logo parameters left intact for marquee sizing controls */
.courier-logo {
  max-width: 100%;
  max-height: 42px; 
  object-fit: contain;
  display: block;
}

.courier-logo[alt="Movin"] { transform: scale(1.6); }
.courier-logo[alt="TCI Express"] { transform: scale(5); }
.courier-logo[alt="Shadowfax"] { transform: scale(1.4); }

/* --- How It Works --- */
.steps-section { padding: 7rem 0; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-card {
    position: relative;
    padding: 2.5rem 2rem 2rem 2rem;
}

.step-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.step-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.6rem; }
.step-card p { color: var(--text-muted); line-height: 1.6; }

.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3.2rem;
    right: -1.25rem;
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Feature / Reliability Section --- */
.feature-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    padding: 7rem 0;
    align-items: start;
}

.feature-text { max-width: 460px; position: sticky; top: 140px; }
.feature-lead { color: var(--text-muted); line-height: 1.6; margin-top: 1.25rem; font-size: 1.05rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.75rem; }

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.05);
}

.feature-item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-item p { color: var(--text-muted); line-height: 1.55; font-size: 0.95rem; }

/* --- Testimonials --- */
.testimonials-section { padding: 2rem 0 7rem 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-quote {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }

.testimonial-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong { display: block; font-size: 0.95rem; color: #fff; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* --- Contact --- */
.contact-section { padding-bottom: 7rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 { margin: 0.75 auto 1rem auto; }

.contact-detail {
    display: flex;
    flex-direction: column;
    margin-top: 1.75rem;
}

.contact-detail strong { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; }
.contact-detail span { color: var(--text-muted); }

.contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h3 { color: #fff; margin-bottom: 0.5rem; }

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.98rem;
    color: #fff;
    outline: none;
    resize: vertical;
    transition: var(--transition-apple);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 4px rgba(240, 171, 36, 0.15);
}

.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }

/* --- Final CTA --- */
.final-cta-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 4.5rem 3rem;
    margin: 2rem 0 6rem 0;
    text-align: center;
}

.final-cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.final-cta-section p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }

.btn-gold {
    background: var(--gold-bright);
    color: #090f1c;
    box-shadow: 0 6px 18px rgba(240, 171, 36, 0.2);
}

.btn-gold:hover {
    background: #f6bb4c;
    transform: translateY(-2px);
}

/* Reveal Elements */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up { transform: translateY(30px); }
.reveal-active { opacity: 1 !important; transform: translate(0) !important; }

.hidden { display: none !important; }

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(240, 171, 36, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(240, 171, 36, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(240, 171, 36, 0); }
}
.animate-pulse { animation: pulse 2s infinite; }

/* Responsive Media Engine */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; padding-top: 180px; }
    .hero-title { font-size: 3rem; }
    .hero-actions { justify-content: center; }
    .smart-feature-card { margin: 0 auto; }
    
    /* Mobile Layout Stack Configuration for Bubbles */
    .navbar-wrapper { 
        flex-direction: row;       
        justify-content: space-between;
        top: 16px; 
        left: 4%;
        right: 4%;
        gap: 8px;
    }
    
    /* Make the logo container bubble stay compact on mobile */
    .logo-bubble { 
        height: 54px; 
        padding: 0 1.2rem;
        border-radius: 18px;
    }
    
    .nav-logo {
        height: 24px;
    }

    /* Transform the links bubble into a clean scrollable track or minimized bar for mobile compatibility */
    .nav-bubble { 
        height: 54px;
        padding: 0 0.4rem 0 0.8rem;
        border-radius: 18px;
        overflow-x: auto;          
        white-space: nowrap;       
        -webkit-overflow-scrolling: touch;
        gap: 0.25rem;
    }

    /* Tighter item margins for small mobile displays */
    .nav-bubble a.nav-item-target {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-bubble .nav-action-btn.nav-item-target {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        height: 34px;
    }
    
    .track-card { padding: 2.5rem 1.5rem; }
    .tracker-form { flex-direction: column; }
    .tracker-form .btn { margin-left: 0; margin-top: 12px; width: 100%; }
    .partners-grid { display: none; } /* Hide old grid layout variables */
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .step-card:not(:last-child)::after { display: none; }
    .feature-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .feature-text { position: static; max-width: 100%; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-title { font-size: 2.2rem; }
    .mission-section { grid-template-columns: 1fr; }
}