@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Exo+2:wght@300;400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-card: rgba(17, 17, 19, 0.7);
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.3);
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: blur(12px);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Exo 2', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    position: relative;
}

main {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* Background Glows */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -150px;
}

/* Header */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.brand {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.brand-logo {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.brand-name {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: none;
    transition: var(--transition);
}

.brand-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, var(--primary) 50%, var(--secondary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandShimmer 6s ease-in-out infinite;
}

@keyframes brandShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.brand:hover .brand-name {
    filter: drop-shadow(0 0 18px var(--primary-glow));
}

.nav-btn {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
    transition: var(--transition);
    position: fixed;
    top: 1.5rem;
    right: 5%;
    z-index: 2000;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.mission-highlight {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border-left: 3px solid var(--primary);
    border-radius: 0 16px 16px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s 0.2s forwards;
    opacity: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 10% 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    backdrop-filter: var(--glass-blur);
}

.tagline-container {
    margin-bottom: 0.5rem;
}

.tagline-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding: 0.2rem 0.5rem;
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.02em;
    z-index: 1;
}

/* Highlight Entire Tagline (All Devices) */
.tagline-text::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.5;
    border-radius: 2px;
    transition: var(--transition);
}

.tagline-text:hover::before {
    height: 100%;
    opacity: 0.3;
}

.prep-text {
    position: relative;
    z-index: 1;
    display: inline-block;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
    background: #4f91ff;
}

.btn-secondary {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Counter */
.counter-box {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.counter-number {
    color: var(--secondary);
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.counter-number.pulse {
    transform: scale(1.2);
    color: #fff;
    text-shadow: 0 0 15px var(--secondary);
}

/* Showcase Section */
.showcase {
    width: 100%;
    position: relative;
    padding: 2rem 0;
    perspective: 1000px;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.mockup-scroll-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 0;
    width: 100%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.mockup-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.mockup-container {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    scroll-snap-align: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
    padding: 0 1rem;
}

.mockup-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.mockup-container:hover .mockup-img {
    transform: scale(1.01);
}

.scroll-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    opacity: 0.6;
}

/* Features Grid */
.features-section {
    padding: 8rem 10% 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: var(--primary-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-card:nth-child(2) .icon-box { background: var(--secondary-glow); color: var(--secondary); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
footer {
    padding: 4rem 10%;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header { padding: 1.5rem 5%; }
    .hero { padding: 6rem 5% 2rem; }
    .features-section { padding: 4rem 5%; }
    .features-grid { grid-template-columns: 1fr; }
    h1 { font-size: 3rem; }
    .modal { padding: 2rem 1.5rem; width: 95%; }

    /* Tagline Mobile Optimization */
    .tagline-text {
        font-size: 0.95rem; /* Decreased from 1.2rem to fit preparation on one line */
        letter-spacing: 0.01em;
    }
    
    /* Showcase Mobile Optimization - Screen-Fitting Large Size */
    .showcase {
        padding: 2rem 0;
        margin: 1rem 0;
        width: 100%;
        overflow: hidden;
    }
    .carousel-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow: visible;
    }
    .mockup-scroll-wrapper {
        overflow-x: auto;
        display: flex;
        width: 100%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 10px;
    }
    .mockup-container {
        padding: 0;
        flex: 0 0 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mockup-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        border-radius: 18px;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
        transition: transform 0.4s ease;
    }
    .carousel-btn {
        width: 38px;
        height: 38px;
        background: rgba(9, 9, 11, 0.7);
        border: 1px solid var(--border);
        z-index: 30;
        backdrop-filter: blur(5px);
    }
    .prev-btn { left: 0.5rem; }
    .next-btn { right: 0.5rem; }
    .scroll-hint { 
        margin-top: 1.5rem;
        font-size: 0.8rem;
        opacity: 0.6;
    }
    
    /* Header padding for very small screens */
    header { padding: 1.2rem 4%; }
    .nav-btn { right: 4%; }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.modal {
    background: rgba(18, 18, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    scrollbar-width: none;
    backdrop-filter: blur(20px);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 28px 28px 0 0;
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modal h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.modal p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.highlight-count {
    color: var(--secondary);
    font-weight: 700;
}

.input-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.input-group input, 
.input-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:hover, 
.input-group select:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.input-group input:focus, 
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.input-group select option {
    background: #121214;
    color: #fff;
}

.premium-phone-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.premium-phone-input:focus-within {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.country-code-minimal {
    width: 100px !important;
    background: transparent !important;
    border: none !important;
    padding: 0.8rem 0.5rem 0.8rem 1rem !important;
    font-size: 1rem !important;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    outline: none !important;
    appearance: none; /* Hide default arrow to make it cleaner */
    text-align: center;
}

.field-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.premium-phone-input input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    padding: 0.8rem 1.25rem !important;
    font-size: 1rem !important;
    color: #fff;
    outline: none !important;
}

.premium-phone-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
    margin-top: 2rem;
    padding: 1.25rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-block:hover {
    filter: brightness(1.1);
    transform: translateY(-3px) scale(1.02);
}
/* Founders Page Styles */
.founders-grid {
    padding: 0 10% 8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.founder-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
}

.founder-card:hover::before {
    opacity: 1;
}

.founder-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-glow);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--primary-glow);
    overflow: hidden;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-glow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.founder-card:hover .tech-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.founder-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.experience-section h3 {
    font-size: 0.9rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-section ul {
    list-style: none;
    padding: 0;
}

.experience-section li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.founder-card:nth-child(2) .experience-section li::before {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .founders-grid { 
        padding: 0 5% 4rem;
        grid-template-columns: 1fr;
    }
}
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Comparison Table Section */
.comparison {
    padding: 8rem 10%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.comparison-container {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-wrapper {
    background: #111113;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 1rem;
    overflow-x: hidden; /* Changed from auto to hidden to lock it completely */
    -webkit-overflow-scrolling: touch;
    display: block;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 100% !important;
        table-layout: fixed;
    }
}

.comparison-table th, 
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    padding-bottom: 2rem;
    font-weight: 900;
}

.comparison-table th:first-child, 
.comparison-table td:first-child {
    text-align: left;
    color: var(--text-main);
    font-weight: 500;
    width: 35%;
}

.comparison-table th.highlight {
    background: linear-gradient(to right, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.05em;
    text-transform: none;
}

.comparison-table td.highlight-cell {
    background: rgba(59, 130, 246, 0.05);
    border-left: 1px solid rgba(59, 130, 246, 0.1);
    border-right: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:hover td.highlight-cell {
    background: rgba(59, 130, 246, 0.08);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check, .cross {
    font-size: 1.5rem;
    font-weight: 900;
    display: inline-block;
    min-width: 24px;
    min-height: 24px;
    line-height: 1;
}

.check {
    color: #10b981;
}

.cross {
    color: #ef4444;
    opacity: 0.3;
}

.prime-check {
    color: #10b981 !important;
    font-weight: 900;
    font-size: 1.5rem;
    display: inline-block;
    min-width: 24px;
    min-height: 24px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .comparison { padding: 4rem 5%; }
    .comparison-table th, .comparison-table td { 
        padding: 0.75rem 0.25rem; 
        font-size: 0.75rem;
    }
    .comparison-table th:first-child, .comparison-table td:first-child {
        position: static;
        width: 100px !important;
        min-width: 100px !important;
        border-right: 1px solid var(--border);
        white-space: normal;
        padding-left: 0.5rem;
    }
    .comparison-table th.highlight {
        font-size: 0.75rem;
        letter-spacing: -0.02em;
        font-weight: 800;
    }
    .check, .cross, .prime-check {
        font-size: 1.1rem;
    }
}
