:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --secondary-color: #06b6d4;
    --text-dark: #f3f4f6;
    --text-light: #9ca3af;
    --text-muted: #6b7280;
    --bg-base: #0a0a0f;
    --bg-surface: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2a;
    --border-color: #2a2a3a;
    --border-bright: #3a3a50;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-purple: 0 8px 32px rgba(124, 58, 237, 0.25);
    --glow-purple: 0 0 40px rgba(124, 58, 237, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon svg {
    display: block;
    flex-shrink: 0;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-dark);
    background: rgba(124, 58, 237, 0.1);
}

.nav-cta {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 24px 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid var(--border-color);
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--text-dark);
    background: rgba(124, 58, 237, 0.1);
}

.mobile-menu.open {
    display: flex;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border-color: var(--border-bright);
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* ===== SECTION SHARED ===== */
section {
    padding: 5rem 0;
}

.section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.text-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    background: var(--bg-base);
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: var(--primary-light);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: white;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.proof-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-light);
    letter-spacing: -0.03em;
}

.proof-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
}

/* ===== HERO DASHBOARD MOCKUP ===== */
.hero-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 520px;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.dashboard-titlebar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.titlebar-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }

.titlebar-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.dashboard-body {
    display: flex;
    height: 280px;
}

.dash-sidebar {
    width: 110px;
    background: rgba(10, 10, 15, 0.6);
    border-right: 1px solid var(--border-color);
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    margin-right: 6px;
    transition: all 0.2s;
}

.dash-nav-item.active {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    border-left: 2px solid var(--primary-color);
}

.dash-icon {
    font-size: 0.85rem;
}

.dash-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.dash-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.dash-stat {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-value.green { color: #34d399; }
.stat-value.amber { color: var(--accent-color); }
.stat-value.purple { color: var(--primary-light); }

.stat-trend {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.dash-chart-area {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    flex: 1;
}

.chart-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.bar {
    flex: 1;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 3px 3px 0 0;
    transition: background 0.2s;
}

.active-bar {
    background: var(--primary-color);
}

.dash-ai-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.ai-pulse {
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-dashboard {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-social-proof {
        flex-wrap: wrap;
    }
}

/* ===== PLATFORM SECTION ===== */
.platform {
    background: var(--bg-surface);
    padding: 5rem 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.platform-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.platform-feature:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-purple);
    transform: translateY(-4px);
}

.feature-wide {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-tag {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.platform-feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.platform-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chip {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: var(--primary-light);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.75rem;
}

/* Product pills */
.product-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.product-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border-bright);
    font-size: 0.85rem;
    background: var(--bg-card);
    transition: all 0.2s ease;
}

.product-pill strong {
    color: var(--text-dark);
    font-weight: 700;
}

.product-pill span:not(.pill-dot) {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pill-central .pill-dot { background: var(--primary-light); }
.pill-nova .pill-dot { background: #f59e0b; }
.pill-sat .pill-dot { background: #34d399; }
.pill-portal .pill-dot { background: var(--secondary-color); }

/* Nova & SAT feature card accents */
.feature-nova {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.07) 0%, var(--bg-card) 60%);
    border-color: rgba(245, 158, 11, 0.25) !important;
}

.feature-nova:hover {
    border-color: rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15) !important;
}

.nova-tag {
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
    color: #f59e0b !important;
}

.feature-sat {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.07) 0%, var(--bg-card) 60%);
    border-color: rgba(52, 211, 153, 0.25) !important;
}

.feature-sat:hover {
    border-color: rgba(52, 211, 153, 0.5) !important;
    box-shadow: 0 8px 32px rgba(52, 211, 153, 0.15) !important;
}

.sat-tag {
    background: rgba(52, 211, 153, 0.12) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
    color: #34d399 !important;
}

/* Nova sidebar nav item */
.nova-nav {
    color: #f59e0b !important;
}

/* 4-col stat row */
.dash-stat-row-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.platform-cta-banner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.platform-cta-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.platform-cta-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 560px;
}

@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
    .feature-wide {
        grid-column: span 1;
    }
    .platform-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-base);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== SPECIALIZATIONS ===== */
.specializations {
    background: var(--bg-surface);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.spec-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateX(6px);
    border-color: var(--secondary-color);
}

.spec-featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
    border-left: 3px solid var(--primary-color);
}

.spec-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.spec-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.spec-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.spec-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.spec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .specializations-grid {
        grid-template-columns: 1fr 1fr;
    }
    .spec-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .specializations-grid {
        grid-template-columns: 1fr;
    }
    .spec-featured {
        grid-column: span 1;
    }
}

/* ===== WHY US ===== */
.why-us {
    background: var(--bg-base);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.why-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

.why-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-purple);
}

.why-icon-wrap {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.why-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.9rem;
}

/* ===== MEMBERSHIP ===== */
.membership {
    background: var(--bg-surface);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.membership-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.membership-featured {
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.12) 0%, var(--bg-card) 60%);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-purple);
    transform: scale(1.02);
}

.membership-featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-tier {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.membership-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.plan-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.plan-features li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.75rem;
}

.membership-featured .plan-features li::before {
    color: var(--accent-color);
}

.membership-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
}

@media (max-width: 1024px) {
    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .membership-featured {
        transform: none;
    }
    .membership-featured:hover {
        transform: translateY(-6px);
    }
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(135deg, #3b0764 0%, #1e1b4b 50%, #0f172a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.contact-content > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.contact-method h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-method p {
    margin: 0;
}

.contact-method a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.contact-method a:hover {
    color: white;
    text-decoration: underline;
}

.contact-method .btn,
.contact-method .btn-outline-white {
    margin-top: 0.75rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #060609;
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 2rem;
    }
}

/* ===== TRANSITIONS ===== */
a, button {
    transition: all 0.2s ease;
}

/* ===== PRINT ===== */
@media print {
    .navbar,
    .footer,
    .hero-cta,
    .hero-dashboard {
        display: none;
    }
}
