/* =========================================
   SHARED HOSTING HERO & BADGES
   ========================================= */
.sw-hero .badge-purple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.sw-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.sw-feat i {
    color: var(--primary);
    margin-right: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* =========================================
   NEW HERO ANIMATION: FLOATING NETWORK
   ========================================= */
.network-anim-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Server */
.network-core {
    position: relative;
    z-index: 10;
    animation: floatMain 4s ease-in-out infinite;
}

.core-icon {
    font-size: 5rem;
    color: white;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    width: 120px;
    height: 120px;
    border-radius: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.core-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
    animation: shadowPulse 4s ease-in-out infinite;
}

/* Floating Nodes around center */
.net-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Positioning Nodes */
.node-1 { top: 40px; left: 60px; animation: floatNode 5s ease-in-out infinite; }
.node-2 { top: 60px; right: 50px; animation: floatNode 6s ease-in-out infinite 1s; }
.node-3 { bottom: 60px; left: 50px; animation: floatNode 5.5s ease-in-out infinite 0.5s; }
.node-4 { bottom: 40px; right: 70px; animation: floatNode 4.5s ease-in-out infinite 1.5s; }

/* Background Pulse Ring */
.network-pulse {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotateSlow 60s linear infinite;
    z-index: 0;
}

/* Keyframes */
@keyframes floatMain {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatNode {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.3; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .network-anim-wrapper { transform: scale(0.7); margin-top: 1rem; }
    .sw-features-row { flex-direction: column; gap: 0.5rem; }
}

/* =========================================
   WHO IS THIS FOR?
   ========================================= */
.target-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.target-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.06);
}

.target-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.target-card p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: #e2e8f0;
}

/* =========================================
   PRICING & LAYOUT UTILITIES
   ========================================= */

/* Spacing fix for the switcher buttons */
.billing-switcher-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 4rem 0; /* Increased bottom margin to 4rem */
}

/* Plan Card Extras */
.plan-renewal { color: #94a3b8; font-size: 0.8rem; margin-top: -5px; margin-bottom: 1.2rem; }
.plan-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; margin-top: -0.5rem; }
.plan-divider { display: flex; align-items: center; text-align: center; margin: 1.2rem 0 0.8rem 0; color: var(--text-muted); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.plan-divider::before, .plan-divider::after { content: ''; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.1); }
.plan-divider span { padding: 0 10px; }

/* Grid Layouts */
.plans-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; justify-content: center; max-width: 1200px; margin: 0 auto; }
.plan-card .btn { margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* Mobile Toggle Button */
.mobile-more-btn { display: none; width: 100%; background: transparent; border: none; color: var(--text-muted); font-size: 0.9rem; padding: 10px; cursor: pointer; margin-top: 10px; transition: color 0.3s ease; }
.mobile-more-btn:hover { color: var(--primary); }
.mobile-more-btn i { margin-left: 5px; transition: transform 0.3s ease; }
.mobile-more-btn.active i { transform: rotate(180deg); }
.plan-extras { display: block; }

@media (max-width: 768px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .mobile-more-btn { display: block; }
    .plan-extras { display: none; padding-top: 10px; animation: fadeIn 0.3s ease-in-out; }
    .plan-extras.is-visible { display: block; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   SPEED CHART SECTION
   ========================================= */
.section--speed { background: linear-gradient(90deg, rgba(2,6,23,1) 0%, rgba(15,23,42,1) 100%); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.badge-green { border-color: #10b981; color: #10b981; background: rgba(16, 185, 129, 0.1); }
.speed-stat-box { margin-top: 2rem; background: rgba(255,255,255,0.03); border-left: 4px solid var(--primary); padding: 1rem 1.5rem; border-radius: 0 12px 12px 0; }
.big-stat { font-size: 2.5rem; font-weight: 800; color: white; display: block; line-height: 1; margin-bottom: 5px; }
.stat-desc { color: var(--text-muted); font-size: 0.9rem; }

.speed-chart-wrapper { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.chart-header { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.chart-row { margin-bottom: 1.8rem; }
.chart-label { color: white; margin-bottom: 0.6rem; font-weight: 600; display: flex; justify-content: space-between; }
.chart-bar-container { display: flex; align-items: center; gap: 15px; }
.chart-bar { height: 12px; border-radius: 6px; position: relative; width: 0; animation: growBar 1.5s ease-out forwards; animation-delay: 0.5s; }
.bar-slow { background: #475569; max-width: 85%; --target-width: 85%; } 
.bar-fast { background: linear-gradient(90deg, #06b6d4, #3b82f6); max-width: 20%; --target-width: 20%; box-shadow: 0 0 15px rgba(6, 182, 212, 0.5); }
.chart-value { color: white; font-weight: 700; min-width: 40px; }
.chart-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; font-style: italic; }
@keyframes growBar { to { width: var(--target-width); } }
@media (max-width: 768px) { .speed-grid { grid-template-columns: 1fr; gap: 2.5rem; } .speed-chart-wrapper { padding: 1.5rem; } }

/* =========================================
   MODULAR GRID FEATURES (Shared Style)
   ========================================= */
.section--modules { position: relative; background: radial-gradient(circle at center, #0f172a 0%, #020617 100%); overflow: hidden; }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.module-card { background: rgba(30, 41, 59, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 1.8rem; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; position: relative; overflow: hidden; height: 100%; }
.module-card:hover { transform: translateY(-5px); border-color: rgba(6, 182, 212, 0.3); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); background: rgba(30, 41, 59, 0.6); }
.module-card::after { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 40px 40px 0; border-color: transparent rgba(255, 255, 255, 0.03) transparent transparent; transition: border-color 0.3s ease; }
.module-card:hover::after { border-color: transparent var(--primary) transparent transparent; }
.module-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.module-header h4 { color: white; font-size: 1.25rem; font-weight: 700; margin: 0; }
.module-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); }
.icon-cyan { color: #06b6d4; box-shadow: 0 0 15px rgba(6, 182, 212, 0.1); }
.icon-purple { color: #a855f7; box-shadow: 0 0 15px rgba(168, 85, 247, 0.1); }
.icon-blue { color: #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.1); }
.icon-orange { color: #f97316; box-shadow: 0 0 15px rgba(249, 115, 22, 0.1); }
.icon-pink { color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.1); }
.icon-green { color: #10b981; box-shadow: 0 0 15px rgba(16, 185, 129, 0.1); }
.module-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.module-body li { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 12px; transition: color 0.2s ease; }
.module-body li i { color: rgba(255, 255, 255, 0.2); font-size: 0.9rem; width: 20px; text-align: center; transition: color 0.2s ease; }
.module-card:hover .module-body li i { color: var(--primary); }
.module-body li:hover { color: white; }
@media (max-width: 768px) { .modules-grid { grid-template-columns: 1fr; } }

/* =========================================
   SECTION C: CPANEL SHOWCASE
   ========================================= */
.section--cpanel { background: radial-gradient(circle at center right, #1e293b 0%, #020617 100%); overflow: hidden; }
.cpanel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.badge-orange { display: inline-flex; align-items: center; gap: 8px; background: rgba(249, 115, 22, 0.1); color: #f97316; padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; border: 1px solid rgba(249, 115, 22, 0.2); }
.check-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; color: var(--text-muted); }
.check-list li i { color: #f97316; }

/* cPanel Mockup (CSS Only) */
.mockup-window { background: #0f172a; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); overflow: hidden; position: relative; transform: perspective(1000px) rotateY(-10deg); transition: transform 0.3s ease; }
.mockup-window:hover { transform: perspective(1000px) rotateY(0deg); }
.mockup-header { background: #1e293b; padding: 10px 15px; display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }
.mockup-body { display: flex; height: 250px; }
.sidebar { width: 60px; background: #1e293b; border-right: 1px solid rgba(255,255,255,0.05); }
.main-area { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.widget-row { display: flex; gap: 15px; }
.widget { background: rgba(255,255,255,0.05); border-radius: 6px; height: 50px; flex: 1; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: rgba(255,255,255,0.3); }
.widget-large { background: rgba(255,255,255,0.03); border-radius: 6px; height: 80px; width: 100%; }
.float-badge { position: absolute; bottom: 20px; right: -10px; background: #f97316; color: white; padding: 8px 16px; border-radius: 50px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.3); font-size: 0.9rem; }
@media (max-width: 768px) { .cpanel-grid { grid-template-columns: 1fr; } .mockup-window { transform: none; } }

/* =========================================
   SECTION D: TECH SPECS
   ========================================= */
.section--tech-specs { background: #020617; }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.tech-item { background: rgba(30, 41, 59, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); padding: 1.5rem; border-radius: 12px; text-align: center; transition: transform 0.3s ease; }
.tech-item:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.1); background: rgba(30, 41, 59, 0.7); }
.tech-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.tech-item h4 { color: white; margin-bottom: 0.5rem; }
.tech-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* =========================================
   MIGRATION TRUCK ANIMATION (FIXED LAYOUT)
   ========================================= */
.migration-banner { background: var(--primary); padding: 3rem 0; position: relative; overflow: hidden; margin-top: 2rem; }
.migration-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px); background-size: 20px 20px; opacity: 0.3; }

.migration-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
    gap: 2rem;
}

/* Flex container for Truck + Text */
.migration-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mig-text-block h3 { font-size: 1.6rem; margin-bottom: 0.5rem; font-weight: 800; color: #020617; }
.mig-text-block p { font-weight: 600; opacity: 0.9; color: #020617; font-size: 1.1rem; }

/* The Truck Loader */
.mig-loader { width: 180px; height: 90px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transform-origin: center left; }
.mig-truck-wrapper { width: 100%; height: 100%; display: flex; flex-direction: column; position: relative; align-items: center; justify-content: flex-end; overflow-x: hidden; }
.mig-truck-body { width: 120px; height: fit-content; margin-bottom: 6px; animation: mig-motion 1s linear infinite; }
@keyframes mig-motion { 0% { transform: translateY(0px); } 50% { transform: translateY(3px); } 100% { transform: translateY(0px); } }
.mig-truck-tires { width: 120px; height: fit-content; display: flex; align-items: center; justify-content: space-between; padding: 0px 10px 0px 15px; position: absolute; bottom: 0; }
.mig-truck-tires svg { width: 22px; }
.mig-road { width: 100%; height: 2px; background-color: #020617; position: relative; bottom: 0; align-self: flex-end; border-radius: 3px; }
.mig-road::before { content: ""; position: absolute; width: 20px; height: 100%; background-color: #020617; right: -50%; border-radius: 3px; animation: mig-road-anim 1.4s linear infinite; border-left: 10px solid transparent; }
.mig-road::after { content: ""; position: absolute; width: 10px; height: 100%; background-color: #020617; right: -65%; border-radius: 3px; animation: mig-road-anim 1.4s linear infinite; border-left: 4px solid transparent; }
.mig-lamp-post { position: absolute; bottom: 0; right: -90%; height: 80px; animation: mig-road-anim 1.4s linear infinite; z-index: -1; }
@keyframes mig-road-anim { 0% { transform: translateX(0px); } 100% { transform: translateX(-350px); } }

/* Mobile Responsive */
@media (max-width: 768px) { 
    .migration-flex { flex-direction: column; text-align: center; gap: 2rem; } 
    .migration-content { flex-direction: column; gap: 1.5rem; }
    .mig-loader { transform: scale(1); margin: 0 auto; } 
}

/* Pre-Footer */
.pre-footer-box { background: linear-gradient(180deg, rgba(6,182,212,0.05) 0%, rgba(2,6,23,0) 100%); border: 1px solid rgba(6,182,212,0.1); border-radius: 20px; padding: 3rem 1.5rem; max-width: 900px; margin: 0 auto; }
.why-choose-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin: 2rem 0; list-style: none; }
.why-choose-list li { font-size: 1.1rem; color: white; display: flex; align-items: center; gap: 10px; }
.why-choose-list li i { color: var(--primary); }
.btn--large { padding: 1rem 2.5rem; font-size: 1.1rem; }
@media (max-width: 768px) { .why-choose-list { flex-direction: column; gap: 1rem; align-items: center; } }
/* =========================================
   1. SHARED HOSTING HERO
   ========================================= */
.sw-hero .badge-purple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.sw-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.sw-feat i {
    color: var(--primary);
    margin-right: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* =========================================
   2. HERO VISUAL: GALAXY SERVER ANIMATION
   ========================================= */
.sw-galaxy-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateX(10deg) rotateY(-5deg);
    transform-style: preserve-3d;
}

/* Center Core (Server Icon) */
.sw-core {
    position: absolute;
    z-index: 10;
    font-size: 4.5rem;
    color: white;
    background: #020617;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.core-glow-sw {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    animation: swPulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.ring-1 { width: 160px; height: 160px; animation: orbitSpin 8s linear infinite; }
.ring-2 { width: 260px; height: 260px; animation: orbitSpin 15s linear infinite reverse; }
.ring-3 { width: 360px; height: 360px; animation: orbitSpin 25s linear infinite; }

/* Orbiting Dots */
.orbit-obj { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.obj-1 { transform: translateX(80px); }
.obj-2 { transform: translateX(130px); }
.obj-3 { transform: translateX(180px); }

.icon-dot {
    width: 12px; height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%);
}

.ring-1 .icon-dot { background: #38bdf8; box-shadow: 0 0 15px #38bdf8; }
.ring-2 .icon-dot { background: #a855f7; box-shadow: 0 0 15px #a855f7; }
.ring-3 .icon-dot { background: #ffffff; box-shadow: 0 0 15px #ffffff; }

@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes swPulse { 0%, 100% { transform: scale(0.9); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } }

@media (max-width: 768px) {
    .sw-galaxy-wrapper { width: 280px; height: 280px; transform: none; margin-top: 2rem; }
    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 200px; height: 200px; }
    .ring-3 { width: 280px; height: 280px; }
    .obj-1 { transform: translateX(60px); }
    .obj-2 { transform: translateX(100px); }
    .obj-3 { transform: translateX(140px); }
}

/* =========================================
   3. TECH STACK STRIP (Matches Screenshot 1)
   ========================================= */
.tech-stack-strip {
    /* Dark background to match SS */
    background: rgba(2, 6, 23, 0.5); 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
}

.tech-stack-strip p {
    color: #94a3b8; /* Muted grey text */
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.tech-logos span {
    color: #64748b; /* Darker grey icons initially */
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-logos span:hover {
    color: white; /* Light up on hover */
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .tech-logos { gap: 1.5rem; }
    .tech-logos span { font-size: 1rem; }
}

/* =========================================
   4. PRICING & LAYOUT UTILITIES
   ========================================= */
.plan-renewal { color: #94a3b8; font-size: 0.8rem; margin-top: -5px; margin-bottom: 1.2rem; }
.plan-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; margin-top: -0.5rem; }
.plan-divider { display: flex; align-items: center; text-align: center; margin: 1.2rem 0 0.8rem 0; color: var(--text-muted); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.plan-divider::before, .plan-divider::after { content: ''; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.1); }
.plan-divider span { padding: 0 10px; }

.plans-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; justify-content: center; max-width: 1200px; margin: 0 auto; }
.plan-card .btn { margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* Mobile Toggle */
.mobile-more-btn { display: none; width: 100%; background: transparent; border: none; color: var(--text-muted); font-size: 0.9rem; padding: 10px; cursor: pointer; margin-top: 10px; transition: color 0.3s ease; }
.mobile-more-btn:hover { color: var(--primary); }
.mobile-more-btn i { margin-left: 5px; transition: transform 0.3s ease; }
.mobile-more-btn.active i { transform: rotate(180deg); }
.plan-extras { display: block; }

@media (max-width: 768px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .mobile-more-btn { display: block; }
    .plan-extras { display: none; padding-top: 10px; animation: fadeIn 0.3s ease-in-out; }
    .plan-extras.is-visible { display: block; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   5. MIGRATION BANNER (Cyan Background - Matches Screenshot 2)
   ========================================= */
.migration-banner {
    /* Exact Cyan color from screenshot */
    background: #06b6d4; 
    /* Or use var(--primary) if it matches the cyan */
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

/* Subtle pattern overlay to give texture */
.migration-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    pointer-events: none;
}

/* Flex container to separate Left (Truck+Text) and Right (Button) */
.migration-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

/* Groups Truck + Text together on the left */
.migration-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #020617; /* Dark text on Cyan bg */
}

.migration-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.migration-text p {
    font-weight: 600;
    opacity: 0.9;
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
}

/* White Button Style */
.btn--white {
    background: white;
    color: #020617;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- TRUCK ANIMATION --- */
.mig-loader { width: 180px; height: 90px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transform-origin: center left; }
.mig-truck-wrapper { width: 100%; height: 100%; display: flex; flex-direction: column; position: relative; align-items: center; justify-content: flex-end; overflow-x: hidden; }
.mig-truck-body { width: 120px; height: fit-content; margin-bottom: 6px; animation: mig-motion 1s linear infinite; }
@keyframes mig-motion { 0% { transform: translateY(0px); } 50% { transform: translateY(3px); } 100% { transform: translateY(0px); } }
.mig-truck-tires { width: 120px; height: fit-content; display: flex; align-items: center; justify-content: space-between; padding: 0px 10px 0px 15px; position: absolute; bottom: 0; }
.mig-truck-tires svg { width: 22px; }
.mig-road { width: 100%; height: 2px; background-color: #020617; position: relative; bottom: 0; align-self: flex-end; border-radius: 3px; }
.mig-road::before { content: ""; position: absolute; width: 20px; height: 100%; background-color: #020617; right: -50%; border-radius: 3px; animation: mig-road-anim 1.4s linear infinite; border-left: 10px solid transparent; }
.mig-road::after { content: ""; position: absolute; width: 10px; height: 100%; background-color: #020617; right: -65%; border-radius: 3px; animation: mig-road-anim 1.4s linear infinite; border-left: 4px solid transparent; }
.mig-lamp-post { position: absolute; bottom: 0; right: -90%; height: 80px; animation: mig-road-anim 1.4s linear infinite; z-index: -1; }
@keyframes mig-road-anim { 0% { transform: translateX(0px); } 100% { transform: translateX(-350px); } }

/* Mobile Responsive for Migration Banner */
@media (max-width: 900px) {
    .migration-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .migration-text {
        flex-direction: column;
        gap: 1rem;
    }
    .mig-loader {
        transform: scale(1);
        margin: 0 auto;
    }
    .migration-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* =========================================
   6. MODULES & SPEED CHART (Standard)
   ========================================= */
.section--modules { position: relative; background: radial-gradient(circle at center, #0f172a 0%, #020617 100%); overflow: hidden; }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.module-card { background: rgba(30, 41, 59, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 1.8rem; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; position: relative; overflow: hidden; height: 100%; }
.module-card:hover { transform: translateY(-5px); border-color: rgba(6, 182, 212, 0.3); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); background: rgba(30, 41, 59, 0.6); }
.module-card::after { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 40px 40px 0; border-color: transparent rgba(255, 255, 255, 0.03) transparent transparent; transition: border-color 0.3s ease; }
.module-card:hover::after { border-color: transparent var(--primary) transparent transparent; }
.module-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.module-header h4 { color: white; font-size: 1.25rem; font-weight: 700; margin: 0; }
.module-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); }
.icon-cyan { color: #06b6d4; box-shadow: 0 0 15px rgba(6, 182, 212, 0.1); }
.icon-purple { color: #a855f7; box-shadow: 0 0 15px rgba(168, 85, 247, 0.1); }
.icon-blue { color: #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.1); }
.icon-orange { color: #f97316; box-shadow: 0 0 15px rgba(249, 115, 22, 0.1); }
.icon-pink { color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.1); }
.icon-green { color: #10b981; box-shadow: 0 0 15px rgba(16, 185, 129, 0.1); }
.module-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.module-body li { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 12px; transition: color 0.2s ease; }
.module-body li i { color: rgba(255, 255, 255, 0.2); font-size: 0.9rem; width: 20px; text-align: center; transition: color 0.2s ease; }
.module-card:hover .module-body li i { color: var(--primary); }
.module-body li:hover { color: white; }
@media (max-width: 768px) { .modules-grid { grid-template-columns: 1fr; } }

.section--speed { background: linear-gradient(90deg, rgba(2,6,23,1) 0%, rgba(15,23,42,1) 100%); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.badge-green { border-color: #10b981; color: #10b981; background: rgba(16, 185, 129, 0.1); }
.speed-stat-box { margin-top: 2rem; background: rgba(255,255,255,0.03); border-left: 4px solid var(--primary); padding: 1rem 1.5rem; border-radius: 0 12px 12px 0; }
.big-stat { font-size: 2.5rem; font-weight: 800; color: white; display: block; line-height: 1; margin-bottom: 5px; }
.stat-desc { color: var(--text-muted); font-size: 0.9rem; }
.speed-chart-wrapper { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.chart-header { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.chart-row { margin-bottom: 1.8rem; }
.chart-label { color: white; margin-bottom: 0.6rem; font-weight: 600; display: flex; justify-content: space-between; }
.chart-bar-container { display: flex; align-items: center; gap: 15px; }
.chart-bar { height: 12px; border-radius: 6px; position: relative; width: 0; animation: growBar 1.5s ease-out forwards; animation-delay: 0.5s; }
.bar-slow { background: #475569; max-width: 85%; --target-width: 85%; } 
.bar-fast { background: linear-gradient(90deg, #06b6d4, #3b82f6); max-width: 20%; --target-width: 20%; box-shadow: 0 0 15px rgba(6, 182, 212, 0.5); }
.chart-value { color: white; font-weight: 700; min-width: 40px; }
.chart-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; font-style: italic; }
@keyframes growBar { to { width: var(--target-width); } }
@media (max-width: 768px) { .speed-grid { grid-template-columns: 1fr; gap: 2.5rem; } .speed-chart-wrapper { padding: 1.5rem; } }

/* Pre-Footer */
.pre-footer-box { background: linear-gradient(180deg, rgba(6,182,212,0.05) 0%, rgba(2,6,23,0) 100%); border: 1px solid rgba(6,182,212,0.1); border-radius: 20px; padding: 3rem 1.5rem; max-width: 900px; margin: 0 auto; }
.why-choose-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin: 2rem 0; list-style: none; }
.why-choose-list li { font-size: 1.1rem; color: white; display: flex; align-items: center; gap: 10px; }
.why-choose-list li i { color: var(--primary); }
.btn--large { padding: 1rem 2.5rem; font-size: 1.1rem; }
@media (max-width: 768px) { .why-choose-list { flex-direction: column; gap: 1rem; align-items: center; } }