@charset "UTF-8";

/* 
  蓝帆云 (Lanfan Cloud) - High-end Glassmorphism & Mobile Hyper-Compact CSS
  Ultra high density mobile layout: zero wasted space, fast scroll, instant visual impact.
*/

:root {
    --primary-color: #00d2ff;
    --primary-hover: #3a7bd5;
    --accent-gold: #ffd700;
    --accent-green: #00e676;
    --bg-dark: #0a1118;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(0, 210, 255, 0.12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(58, 123, 213, 0.12), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(0, 210, 255, 0.08), transparent 35%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 1. Top Announcement Bar & Countdown */
.top-notice-bar {
    background: linear-gradient(90deg, #0d2847 0%, #1a3c66 50%, #0d2847 100%);
    border-bottom: 1px solid rgba(0, 210, 255, 0.3);
    padding: 8px 0;
    font-size: 14px;
    color: #e2e8f0;
    position: relative;
    z-index: 101;
}

.top-notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-notice-text strong {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px dashed var(--accent-gold);
    font-family: monospace;
    font-size: 15px;
}

.top-countdown-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-timer {
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 210, 255, 0.4);
    color: var(--primary-color);
    font-weight: bold;
    font-family: monospace;
}

.btn-top-copy {
    background: rgba(0, 210, 255, 0.2);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-top-copy:hover {
    background: var(--primary-color);
    color: #000;
}

/* 2. Header */
header {
    background: rgba(10, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.logo span {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    margin-left: 20px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 210, 255, 0.4);
    min-height: 44px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    gap: 6px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 210, 255, 0.6);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 17px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.12);
    color: var(--primary-color) !important;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000 !important;
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* 3. Hero Section */
.hero {
    padding: 70px 0 50px;
    position: relative;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.5;
    animation: floatOrb 8s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 255, 0.18);
    top: 5%;
    right: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(58, 123, 213, 0.18);
    bottom: 5%;
    left: 15%;
    animation-delay: -4s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--primary-color);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.brand-text {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-features-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #e2e8f0;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.avatar-group {
    display: flex;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.hero-visual {
    flex: 0.9;
    display: flex;
    justify-content: center;
    position: relative;
}

.dynamic-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--glass-shadow);
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 380px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.sail-icon {
    font-size: 64px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.6));
}

.ring {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 210, 255, 0.3);
    z-index: 1;
}

.ring-1 { width: 160px; height: 160px; animation: pulseRing 3s linear infinite; }
.ring-2 { width: 230px; height: 230px; animation: pulseRing 3s linear infinite; animation-delay: 1.5s; }

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.status-indicator {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--accent-green);
    font-weight: 600;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* 4. Interactive Node Speed Dashboard */
.live-speed-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--glass-shadow);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.node-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.node-item:hover {
    background: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.3);
}

.node-top { display: flex; justify-content: space-between; align-items: center; }
.node-name { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 6px; }
.node-ping { font-family: monospace; font-weight: bold; color: var(--accent-green); background: rgba(0, 230, 118, 0.1); padding: 2px 8px; border-radius: 16px; font-size: 13px; }
.node-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag-pill { background: rgba(255, 255, 255, 0.06); color: var(--text-muted); font-size: 11px; padding: 2px 8px; border-radius: 10px; }
.ping-bar-wrap { height: 5px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden; }
.ping-bar { height: 100%; background: linear-gradient(90deg, #00e676 0%, #00d2ff 100%); border-radius: 3px; transition: width 0.8s ease; }

/* 5. General Sections & Titles */
.section {
    padding: 65px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* 6. Feature Cards */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 28px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.35);
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.18);
}

.card-icon { font-size: 38px; margin-bottom: 14px; display: inline-block; }
.card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 14px; }

/* 7. Pricing Section */
.pricing-coupon-callout {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
    border: 1px dashed var(--accent-gold);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-coupon-callout strong { color: var(--accent-gold); font-family: monospace; font-size: 16px; background: rgba(0,0,0,0.3); padding: 2px 8px; border-radius: 6px; }

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid rgba(0, 210, 255, 0.7);
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.12) 0%, rgba(10, 17, 24, 0.6) 100%);
    box-shadow: 0 12px 45px rgba(0, 210, 255, 0.25);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 210, 255, 0.5);
    white-space: nowrap;
}

.pricing-card h3 { font-size: 22px; font-weight: 700; margin-top: 5px; }
.price { font-size: 46px; font-weight: 800; color: var(--primary-color); margin: 12px 0 4px; }
.price span { font-size: 15px; color: var(--text-muted); font-weight: normal; }
.price-subtext { font-size: 12px; color: var(--accent-gold); margin-bottom: 16px; }

.features-list { list-style: none; margin: 16px 0 24px; flex-grow: 1; text-align: left; }
.features-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: #e2e8f0; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.features-list li .check-icon { color: var(--accent-green); font-weight: bold; }
.features-list li:last-child { border-bottom: none; }

.payment-methods-bar {
    margin-top: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
}

.payment-icons { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pay-badge { background: rgba(255, 255, 255, 0.08); padding: 4px 10px; border-radius: 6px; font-size: 12px; color: #fff; font-weight: 500; }

/* 8. Trust Banner */
.trust-banner-section {
    padding: 35px 0;
    background: rgba(0, 210, 255, 0.03);
    border-top: 1px solid rgba(0, 210, 255, 0.1);
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
}

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.trust-item { text-align: center; padding: 10px; }
.trust-icon { font-size: 32px; margin-bottom: 6px; }
.trust-item h4 { font-size: 16px; margin-bottom: 4px; color: #fff; }
.trust-item p { font-size: 13px; color: var(--text-muted); }

/* 9. Reviews */
.review-card { text-align: left; position: relative; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stars { color: var(--accent-gold); font-size: 16px; letter-spacing: 1px; }
.verified-tag { background: rgba(0, 230, 118, 0.15); color: var(--accent-green); font-size: 11px; padding: 2px 8px; border-radius: 10px; }
.review-author-info { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #00d2ff, #3a7bd5); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 13px; }
.author-details h5 { font-size: 14px; color: #fff; margin-bottom: 2px; }
.author-details p { font-size: 11px; color: var(--text-muted); }

/* 10. SEO Blog Section */
.blog-card { text-align: left; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; color: #fff; line-height: 1.35; }
.blog-card p { font-size: 13px; margin-bottom: 14px; color: var(--text-muted); }

/* 11. FAQ */
.faq-list { max-width: 850px; margin: 0 auto; }
details { background: var(--glass-bg); backdrop-filter: blur(12px); margin-bottom: 12px; border-radius: var(--radius); border: 1px solid var(--glass-border); overflow: hidden; transition: var(--transition); }
details[open] { border-color: rgba(0, 210, 255, 0.4); }
summary { padding: 18px; font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 18px; font-size: 20px; color: var(--primary-color); }
details[open] summary::after { transform: rotate(45deg); color: #ff4757; }
.faq-content { padding: 0 18px 18px; color: var(--text-muted); font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }

/* 12. Toast & Mobile Sticky Bar */
.live-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 17, 24, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 210, 255, 0.4);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.live-toast.show { transform: translateY(0); opacity: 1; }

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 17, 24, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 210, 255, 0.3);
    padding: 10px 16px;
    z-index: 998;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-inner { display: flex; justify-content: space-between; align-items: center; }
.mobile-sticky-info p { font-size: 13px; color: #fff; font-weight: bold; }
.mobile-sticky-info span { font-size: 11px; color: var(--accent-gold); }

/* Footer */
footer { background: rgba(0, 0, 0, 0.5); border-top: 1px solid var(--glass-border); padding: 45px 0 25px; position: relative; z-index: 2; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 20px; }
.footer-logo { font-size: 24px; font-weight: 700; color: #fff; }
.footer-logo span { color: var(--primary-color); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 14px; }
.copyright { text-align: center; color: var(--text-muted); font-size: 13px; }

/* 
=====================================================
  MOBILE HYPER-COMPACT OPTIMIZATIONS (< 768px)
  Zero wasted space. Maximum visual density & impact.
=====================================================
*/
@media (max-width: 768px) {
    /* 1. Eliminate Wasted Vertical Gaps */
    .section { padding: 24px 0 !important; }
    .hero { padding: 16px 0 20px !important; }
    .live-speed-section { padding: 16px 0 !important; }
    .trust-banner-section { padding: 16px 0 !important; }
    footer { padding: 25px 0 80px !important; }

    /* 2. Compact Headlines & Subtitles */
    .section-title { font-size: 20px !important; margin-bottom: 4px !important; text-shadow: none !important; }
    .section-subtitle { font-size: 12px !important; margin-bottom: 16px !important; }
    
    /* 3. Hero Compact View - Bring CTA & Value Proposition Above the Fold! */
    .hero-wrap { gap: 0 !important; }
    .hero-badge-tag { font-size: 11px !important; padding: 3px 10px !important; margin-bottom: 8px !important; }
    .hero h1 { font-size: 24px !important; margin-bottom: 8px !important; line-height: 1.25 !important; }
    .hero p { font-size: 13px !important; margin-bottom: 12px !important; line-height: 1.4 !important; }
    
    .hero-features-chips { gap: 4px !important; margin-bottom: 14px !important; }
    .chip { font-size: 11px !important; padding: 3px 8px !important; border-radius: 6px !important; }

    .hero-btns { gap: 8px !important; margin-bottom: 10px !important; width: 100% !important; flex-direction: column !important; }
    .btn-lg, .btn { width: 100% !important; min-height: 40px !important; padding: 8px 16px !important; font-size: 14px !important; border-radius: 25px !important; }
    .btn-outline { margin-left: 0 !important; }
    
    .hero-social-proof { font-size: 11px !important; justify-content: center !important; }

    /* Hide heavy decorative graphic on mobile to avoid 2-screen scrolling just for animation */
    .hero-visual { display: none !important; }

    /* 4. Top Announcement Notice Bar Compact */
    .top-notice-bar { padding: 6px 0 !important; font-size: 12px !important; }
    .top-notice-content { justify-content: center !important; text-align: center !important; gap: 4px !important; }
    .top-notice-text { font-size: 11px !important; }
    .top-countdown-box { font-size: 11px !important; gap: 6px !important; }
    .countdown-timer { padding: 2px 6px !important; font-size: 11px !important; }
    .btn-top-copy { font-size: 10px !important; padding: 2px 8px !important; }

    /* 5. Header Compact */
    .nav-wrap { height: 50px !important; }
    .nav-links { display: none !important; }
    .logo { font-size: 20px !important; }

    /* 6. Interactive Nodes Dashboard Compact 2x2 Grid */
    .dashboard-card { padding: 14px 12px !important; border-radius: 12px !important; }
    .dashboard-header { margin-bottom: 10px !important; gap: 6px !important; }
    .dashboard-title h3 { font-size: 15px !important; }
    .dashboard-title p { display: none !important; }
    
    .nodes-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .node-item { padding: 10px 8px !important; gap: 6px !important; border-radius: 8px !important; }
    .node-name { font-size: 12px !important; gap: 4px !important; }
    .node-ping { font-size: 11px !important; padding: 1px 5px !important; }
    .tag-pill { font-size: 9px !important; padding: 1px 5px !important; }
    .ping-bar-wrap { height: 4px !important; }

    /* 7. Features 2-column High-Density Micro Grid */
    .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .card { padding: 12px 10px !important; border-radius: 10px !important; text-align: left !important; }
    .card-icon { font-size: 24px !important; margin-bottom: 6px !important; }
    .card h3 { font-size: 13px !important; margin-bottom: 4px !important; font-weight: 700 !important; }
    .card p { font-size: 11px !important; line-height: 1.3 !important; }

    /* 8. Pricing Section Mobile Optimization */
    .pricing-coupon-callout { padding: 8px 10px !important; font-size: 12px !important; margin-bottom: 14px !important; border-radius: 8px !important; }
    .pricing-coupon-callout strong { font-size: 13px !important; }
    
    /* Make Popular Plan stand out, while compacting cards */
    .pricing-card { padding: 16px 12px !important; border-radius: 12px !important; }
    .pricing-card.popular { transform: none !important; }
    .popular-badge { font-size: 10px !important; padding: 2px 10px !important; top: -10px !important; }
    .pricing-card h3 { font-size: 16px !important; margin-top: 2px !important; }
    .price { font-size: 32px !important; margin: 4px 0 2px !important; }
    .price-subtext { font-size: 10px !important; margin-bottom: 8px !important; }
    .features-list { margin: 8px 0 12px !important; }
    .features-list li { padding: 4px 0 !important; font-size: 11px !important; }

    .payment-methods-bar { margin-top: 14px !important; padding: 8px !important; font-size: 11px !important; gap: 8px !important; }
    .pay-badge { font-size: 10px !important; padding: 2px 6px !important; }

    /* 9. Trust Grid Compact 2x2 */
    .trust-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .trust-item { padding: 6px !important; }
    .trust-icon { font-size: 22px !important; margin-bottom: 2px !important; }
    .trust-item h4 { font-size: 12px !important; }
    .trust-item p { font-size: 10px !important; line-height: 1.2 !important; }

    /* 10. Reviews & SEO Articles Compact 2-column Grid */
    .review-card { padding: 12px 10px !important; }
    .review-card p { font-size: 11px !important; line-height: 1.3 !important; }
    .stars { font-size: 12px !important; }
    .verified-tag { font-size: 9px !important; padding: 1px 5px !important; }
    .author-avatar { width: 26px !important; height: 26px !important; font-size: 10px !important; }
    .author-details h5 { font-size: 12px !important; }
    .author-details p { font-size: 9px !important; }

    .blog-card h3 { font-size: 12px !important; margin-bottom: 4px !important; }
    .blog-card p { font-size: 10px !important; margin-bottom: 8px !important; }
    .blog-card .btn { padding: 3px 10px !important; font-size: 10px !important; min-height: auto !important; }

    /* 11. FAQ Compact */
    summary { padding: 12px 14px !important; font-size: 13px !important; }
    summary::after { right: 12px !important; font-size: 16px !important; }
    .faq-content { padding: 0 14px 12px !important; font-size: 12px !important; line-height: 1.4 !important; }

    /* 12. Sticky Bottom Bar & Toast Mobile Position */
    .mobile-sticky-bar { display: block !important; padding: 8px 14px !important; }
    .mobile-sticky-info p { font-size: 12px !important; }
    .mobile-sticky-info span { font-size: 10px !important; }
    .mobile-sticky-inner .btn { width: auto !important; min-height: 36px !important; padding: 4px 14px !important; font-size: 13px !important; }

    .live-toast { bottom: 65px !important; left: 10px !important; right: 10px !important; padding: 8px 12px !important; font-size: 11px !important; border-radius: 8px !important; }
}
