:root {
    /* Color Palette - Industrial/Space/Corporate */
    --color-bg-primary: 220 15% 10%;
    /* Dark slate background */
    --color-bg-secondary: 220 15% 14%;
    /* Slightly lighter for cards */
    --color-bg-tertiary: 220 15% 18%;
    /* Hover states */

    --color-text-primary: 0 0% 100%;
    --color-text-secondary: 215 20% 65%;
    --color-text-muted: 215 20% 50%;

    --color-accent: 210 100% 50%;
    /* Electric blue for primary actions (Starlink-like) */
    --color-accent-hover: 210 100% 60%;
    --color-success: 150 60% 45%;
    --color-warning: 35 90% 60%;
    --color-danger: 0 80% 60%;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Orbitron', sans-serif;
    /* For headers if we want a slight sci-fi/tech feel */

    /* Spacing & Layout */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    /* Reduced from 8rem to remove excessive gaps */

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.15);
    /* Tech glow */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: hsl(var(--color-bg-primary));
    background-image:
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3");
    background-attachment: fixed;
    color: hsl(var(--color-text-primary));
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 0.75rem;
    /* More compact than 1rem */
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 4vw, 1.75rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: hsl(var(--color-accent));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: hsl(var(--color-accent-hover));
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid hsl(var(--color-text-secondary));
    color: hsl(var(--color-text-primary));
}

.btn-outline:hover {
    border-color: hsl(var(--color-text-primary));
    background: rgba(255, 255, 255, 0.05);
}

/* Section Styling */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-tight {
    padding: var(--spacing-lg) 0;
}

/* Header/Nav */
.site-header {
    background: rgba(23, 28, 38, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    text-transform: uppercase;
}

.logo span {
    color: hsl(var(--color-accent));
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: hsl(var(--color-text-secondary));
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-switcher a {
    color: hsl(var(--color-text-muted));
    font-size: 0.8rem;
    font-weight: 700;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: hsl(var(--color-accent));
}

/* Footer */
.site-footer {
    background: hsl(var(--color-bg-secondary));
    padding: var(--spacing-lg) 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: hsl(var(--color-text-secondary));
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    /* Reduced from 180px/120px to fix 'empty space' feel */
    background: linear-gradient(135deg, hsl(var(--color-bg-primary)) 0%, #0a0f1d 100%);
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, hsl(var(--color-bg-primary)), transparent);
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--color-text-secondary));
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Partners Section */
.partners-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    /* Reduced from 2rem */
    background: hsl(var(--color-bg-secondary));
}

.partners-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.partner-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(var(--color-text-muted));
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Features/USP Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(56, 189, 248, 0.1);
    color: hsl(var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-desc {
    color: hsl(var(--color-text-secondary));
    font-size: 0.95rem;
}

/* Content Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Trust Section Custom Styles */
.trust-block {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.05) 0%, transparent 100%);
    border-left: 4px solid var(--color-accent);
    padding: 3rem;
    border-radius: 0 16px 16px 0;
}

@media (max-width: 768px) {
    .trust-block {
        padding: 1.5rem;
        border-radius: 12px;
        border-left: none;
        border-top: 4px solid var(--color-accent);
    }
}

/* FAQ Styling */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateX(5px);
}

.faq-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4::after {
    content: '+';
    font-size: 1.2rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Catalog Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: hsl(var(--color-bg-secondary));
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(56, 189, 248, 0.3);
}

.product-image {
    height: 220px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--color-text-muted));
    font-size: 3rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(var(--color-accent));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.product-desc {
    color: hsl(var(--color-text-secondary));
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.spec-list {
    list-style: none;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--color-text-secondary));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.25rem;
}

.spec-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spec-val {
    color: white;
    font-weight: 600;
}

.product-actions {
    margin-top: auto;
}


/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: hsl(var(--color-bg-secondary));
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: hsl(var(--color-text-secondary));
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-primary);
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--color-accent));
}


/* Support Page Specifics */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: hsl(var(--color-bg-secondary));
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.phone-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.email-link {
    color: hsl(var(--color-accent));
}

.social-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.billing-desc {
    color: hsl(var(--color-text-secondary));
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Support Form Wrapper */
.support-form-wrapper {
    background: hsl(var(--color-bg-secondary));
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header-small {
    margin-bottom: 2rem;
}

.form-header-small h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-header-small p {
    color: hsl(var(--color-text-secondary));
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* SLA Section */
.sla-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sla-title {
    margin-bottom: 2rem;
    text-align: center;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sla-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sla-card.highlight {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(56, 189, 248, 0.05) 100%);
    border-color: rgba(56, 189, 248, 0.2);
}

.sla-card h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.sla-list {
    list-style: none;
}

.sla-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: hsl(var(--color-text-secondary));
}

.sla-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sla-list span {
    font-size: 0.9rem;
}

.sla-list strong {
    color: white;
}


/* Topology Diagram */
.topology-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 1rem;
    overflow-x: auto;
}

.topo-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    min-width: 140px;
}

.node-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Default circle */
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.icon-sat {
    border: 2px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.icon-router {
    border-radius: 12px;
    width: 100px;
    /* Rectangle */
    height: 60px;
    border: 2px solid #34d399;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
    font-size: 1.5rem;
}

.icon-lan {
    border-radius: 12px;
    width: 120px;
    border: 2px solid #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
}

.lan-dot {
    background: rgba(251, 191, 36, 0.2);
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

.node-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.node-sub {
    font-size: 0.85rem;
    color: #94a3b8;
}

.topo-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8 0%, #34d399 100%);
    position: relative;
    min-width: 50px;
    max-width: 150px;
    margin-bottom: 3rem;
    /* Align with center of icons approx */
}

.line-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
    background: #0f172a;
    padding: 0 5px;
}

@media (max-width: 768px) {
    .topology-diagram {
        flex-direction: column;
        gap: 0;
    }

    .topo-line {
        width: 2px;
        height: 50px;
        margin: 0;
        background: linear-gradient(180deg, #38bdf8 0%, #34d399 100%);
        min-width: 2px;
    }

    .line-label {
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }
}


/* Monitoring Dashboard */
.monitoring-showcase {
    max-width: 800px;
    margin: 4rem auto 0;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.monitoring-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #34d399);
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.monitor-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 211, 153, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #34d399;
    letter-spacing: 1px;
}

.monitor-title {
    color: white;
    font-family: var(--font-display);
    letter-spacing: 1px;
    margin: 0;
}

.monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.monitor-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.monitor-item:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.05);
}

.monitor-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.monitor-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 600px) {
    .monitor-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Mobile Menu Base */
.menu-toggle {
    display: none;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: white;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);

        /* Fix for horizontal scroll */
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0), visibility 0.4s;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        display: block;
    }

    .login-btn-header {
        display: none !important;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .nav-flex {
        padding: 0 1rem;
    }

    .header-actions {
        gap: 0.5rem;
    }
}

/* Comparison Section Styling */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.comp-header-cell {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-header-cell.starlink {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(56, 189, 248, 0.05) 100%);
    border-color: rgba(56, 189, 248, 0.3);
}

.comp-row {
    display: contents;
}

.comp-feature {
    padding: 1rem;
    display: flex;
    align-items: center;
    color: hsl(var(--color-text-secondary));
    font-weight: 600;
}

.comp-value {
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.comp-value.better {
    color: white;
    font-weight: 700;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .comp-row {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.02);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-bottom: 2rem;
    }

    .comp-feature {
        justify-content: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        margin-bottom: 0.5rem;
    }
}