
:root {
    --bg: #0f1215;
    --card-bg: #161a1e;
    --text: #ecf0f1;
    --muted: #95a5a6;
    --mint: #8CFA96;
    --blue: #00BCD4;
    --purple: #BB86FC;
}


/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
}

/* --- IMPROVED RESET --- */
html, body {
    max-width: 100vw;
    overflow-x: hidden; /* Strict containment */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevents font jumping on orientation change */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* --- HERO SECTION --- */
.hero {
    /* Adjusted to bring content closer to the navbar */
    min-height: 20vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 0 20px; /* Reduced bottom padding */
}

.brand-logo {
    width: 240px;
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(140, 250, 150, 0.2));
    animation: float 8s ease-in-out infinite; 
}

.tagline {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 0;
}

/* --- LAYOUT UTILS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 20px; /* Gives the title some room from the top of the section */
    margin-bottom: 30px; /* Pushes the cards/content down */
    color: var(--text);
    letter-spacing: 2px;
}
/* --- THE SUITE GRID --- */
#products {
    padding-top: 20px; /* Pulls "THE SUITE" up closer to the logo */
    scroll-margin-top: 265px;
}

.grid {
    display: grid;
    /* This 'min(100%, 320px)' tells the browser: "Try to be 320px, but if the screen is smaller, just be 100% wide" */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px; /* Side breathing room for mobile */
}

/* --- PRODUCT CARDS --- */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    /* --- The Modern Look --- */
    align-items: center;   /* Centers the icon and button horizontally */
    text-align: center;    /* Centers the app name and description text */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.app-icon {
    width: 120px;       /* Bumped up from 80px */
    height: 120px;      /* Bumped up from 80px */
    object-fit: contain;
    margin-bottom: 0px; /* Dropped to 5px to lock it to the title */
    transition: filter 0.3s ease, transform 0.3s ease;
    animation: icon-pulse 4s ease-in-out infinite;
}

.flagship-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--mint);
    color: var(--bg);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

/* Theme Variations & Icon Glows */
.card.capsize { border-top: 4px solid var(--mint); }
.card.capsize h3 { color: var(--mint); }
.card.capsize .app-icon { filter: drop-shadow(0 0 5px rgba(140, 250, 150, 0.25)); }
.card.capsize:hover .app-icon { filter: drop-shadow(0 0 10px rgba(140, 250, 150, 0.6)); }

.card.smartclip { border-top: 4px solid var(--blue); }
.card.smartclip h3 { color: var(--blue); }
.card.smartclip .app-icon { filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.25)); }
.card.smartclip:hover .app-icon { filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.6)); }

.card.hexstack { border-top: 4px solid var(--purple); }
.card.hexstack h3 { color: var(--purple); }
.card.hexstack .app-icon { filter: drop-shadow(0 0 5px rgba(187, 134, 252, 0.25)); }
.card.hexstack:hover .app-icon { filter: drop-shadow(0 0 10px rgba(187, 134, 252, 0.6)); }

.card:hover .app-icon { 
    animation-play-state: paused;
    transform: scale(1.1); 
}

.card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.9rem; 
    min-height: 70px; 
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    cursor: pointer;
}

.card.capsize .btn:hover { border-color: var(--mint); color: var(--mint); background: rgba(140, 250, 150, 0.1); }
.card.smartclip .btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(0, 188, 212, 0.1); }
.card.hexstack .btn:hover { border-color: var(--purple); color: var(--purple); background: rgba(187, 134, 252, 0.1); }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    color: var(--mint);
    border: 1px solid rgba(140, 250, 150, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    z-index: 2000;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top:hover {
    background: var(--mint);
    color: var(--bg);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(140, 250, 150, 0.4);
}

/* Show button when active class is added via JS */
.back-to-top.show {
    display: flex;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* --- PHILOSOPHY SECTION --- */
.philosophy-section {
    padding: 100px 0; /* Creates breathing room at top and bottom */
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item { text-align: center; padding: 20px; }
.feature-icon { font-size: 2.5rem; color: var(--text); margin-bottom: 20px; opacity: 0.8; }
.feature-item h4 { font-family: 'Orbitron', sans-serif; margin-bottom: 10px;}

.feature-item p { color: var(--muted); font-size: 0.95rem; max-width: 300px; margin: 0 auto; }

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    transition: 0.3s;
    height: 100%; /* Ensures all cards stay the same height */
}

.philosophy-card:hover { transform: translateY(-5px); border-color: rgba(140, 250, 150, 0.2); }
.philosophy-card i { color: var(--mint); font-size: 2.5rem; margin-bottom: 20px; }
.philosophy-card h4 { font-family: 'Orbitron', sans-serif; margin-bottom: 15px;  letter-spacing: 1.5px;}
.philosophy-card p { color: var(--muted); font-size: 0.9rem; }

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 100px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    padding: 20px 25px;            /* Reduced from 40px */
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.pro-tier {
    border: 2px solid var(--mint);
    background: radial-gradient(circle at top right, rgba(140, 250, 150, 0.05), transparent);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- GLOBAL TABLE SCROLL FIX --- */
.comparison-scroll-area {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* This creates a "bleed" effect so users see the table edges on mobile */
    margin: 0 -15px; 
    padding: 0 15px 15px 15px;
}

.comparison-table {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    /* FORCING minimum width so it doesn't squish */
    min-width: 700px; 
    margin-bottom: 30px;
}

/* --- CONTEXTUAL SWIPE TAG --- */
.mobile-swipe-tag {
    display: none !important; /* Forces it hidden on Desktop */
    background: var(--mint);
    color: var(--bg);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    vertical-align: middle;
}

/* --- PRICE TAG MOBILE FIX --- */
.price-tag {
    position: absolute;
    top: -10px; 
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: var(--bg);
    
    /* Forces text to stay on one line */
    white-space: nowrap; 
    
    /* Centering internal text */
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 4px 16px; /* Slightly more horizontal padding for the longer text */
    border-radius: 20px;
    font-size: 0.65rem; /* Tiny bump for readability */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 20;
}

@media (max-width: 480px) {
    .price-tag {
        font-size: 0.55rem; /* Shrinks slightly on very small phones to prevent overflow */
        padding: 4px 12px;
    }
}

.price-header h3 { font-family: 'Orbitron', sans-serif; color: var(--muted); letter-spacing: 1px;}
.pro-tier .price-header h3 { color: var(--mint); }
.price-amount { font-size: 2.2rem; font-weight: 700; margin: 10px 0; font-family: 'Orbitron', sans-serif;}
.price-amount span { font-size: 0.9rem; font-weight: 600; letter-spacing: 1px;color: var(--muted); }

.price-features { list-style: none; margin-bottom: 20px; flex-grow: 1; }
.price-features li { margin-bottom: 6px; font-size: 0.8rem; display: flex; align-items: center; gap: 10px; }
.price-features li i { color: var(--mint); width: 20px; }
.price-features li.locked { opacity: 0.4; }

.pro-btn {
    background: var(--mint) !important;
    color: var(--bg) !important;
    border: none !important;
}


/* --- FAQ & FOOTER --- */
.faq-container {
    margin-top: 80px; /* Gives a clear visual break from the pricing area */
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.faq-item h4 { margin-bottom: 10px; font-size: 1.1rem; }
.faq-item p { color: var(--muted); font-size: 0.9rem; }

footer {
    text-align: center;
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--muted);
    font-size: 0.8rem;
}

/* --- MODALS --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    /* LANDMARK: Allow the modal to align to the top if it's too tall for the screen */
    align-items: flex-start; 
    padding: 20px;
    overflow-y: auto; /* Enable scrolling if content is long */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--card-bg);
    border: 1px solid rgba(140, 250, 150, 0.2); /* Subtle mint border */
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    margin: auto; /* Centers it when content is short, pushes it down when long */
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

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

.feature-preview {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.placeholder-screen {
    width: 100%; height: 200px;
    background: rgba(0,0,0,0.3);
    border: 1px dashed var(--muted);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); margin-bottom: 20px;
}

.feature-preview img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.modal-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.modal-icon { width: 40px; height: 40px; }
.modal-header h2 { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; }

.feature-list { list-style: none; margin-bottom: 25px; }
.feature-list li { font-size: 0.85rem; margin-bottom: 12px; color: var(--muted); display: flex; gap: 10px; }
.feature-list li i { color: var(--mint); margin-top: 3px; }

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    color: var(--muted); font-size: 2rem;
    cursor: pointer; line-height: 1;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes icon-pulse {
    0% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 0.95; }
}

/* --- COMPARISON TABLE --- */
.comparison-wrapper {
    scroll-margin-top: 40px;
    max-width: 800px;
    margin: -20px auto 0;
    padding: 0 10px;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
    z-index: 5;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.comparison-title {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    padding: 60px 0;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: -45px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.comparison-table {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.c-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    column-gap: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
    transition: background 0.2s ease;
}

/* Zebra Striping for easier tracking */
.c-row.section-content:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.c-row:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

.c-row:last-child {
    border-bottom: none;
}

/* Header Styling */
.c-header {
    background: rgba(255, 255, 255, 0.02); /* Very faint base */
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Cell Styling */
.c-cell {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center; /* Forces Core and Pro content to the middle */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

/* Ensure the feature labels stay left-aligned */
.feature-label {
    justify-content: flex-start;
    text-align: left;
    color: var(--text);
    font-weight: 500;
}

/* Icons */
.check-icon { color: var(--mint); font-size: 1rem; }
.cross-icon { color: rgba(255, 255, 255, 0.1); font-size: 1rem; }

/* Pro Column Highlighting & Glow */
.pro-col {
    border-left: 1px solid rgba(140, 250, 150, 0.1);
    background: linear-gradient(90deg, rgba(140, 250, 150, 0.02) 0%, transparent 100%);
    color: var(--mint);
    font-weight: bold;
    text-align: center; /* Explicitly center the Pro text */
    padding-left: 20px !important;
}

.highlight-text {
    color: var(--mint);
    text-shadow: 0 0 10px rgba(140, 250, 150, 0.3);
}

/* Mint Core Column Alignment */
.c-row .c-cell:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white line */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    text-align: center !important;
    padding: 0 20px !important; /* Adds internal breathing room */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .c-row {
        padding: 12px 10px;
        font-size: 0.75rem;
    }
    .feature-label { font-size: 0.75rem; }
}

/* --- APP DIVIDERS IN COMPARISON TABLE --- */
.app-divider {
    grid-column: 1 / -1;
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 10px 20px !important;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-top: 5px;
}

.capsize-div {
    color: var(--mint);
    border-left: 4px solid var(--mint);
    background: linear-gradient(90deg, rgba(140, 250, 150, 0.05), transparent);
}

.smartclip-div {
    color: var(--blue);
    border-left: 4px solid var(--blue);
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.05), transparent);
}

.hexstack-div {
    color: var(--purple);
    border-left: 4px solid var(--purple);
    background: linear-gradient(90deg, rgba(187, 134, 252, 0.05), transparent);
}

.global-div {
    color: var(--muted);
    border-left: 4px solid var(--muted);
}

.single-buy-link {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.card.capsize .single-buy-link:hover { background: rgba(140, 250, 150, 0.1); border-color: var(--mint); }
.card.smartclip .single-buy-link:hover { background: rgba(0, 188, 212, 0.1); border-color: var(--blue); }
.card.hexstack .single-buy-link:hover { background: rgba(187, 134, 252, 0.1); border-color: var(--purple); }

/* --- A-LA-CARTE HORIZONTAL ROW --- */
.a-la-carte-container {
    text-align: center;
    margin-top: 30px;         /* Reduced from 60px */
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.a-la-carte-container h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.a-la-carte-container p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.a-la-carte-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.single-tool-btn {
    padding: 6px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    margin-top: -5px;
}

.price-badge {
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    opacity: 1;
}

/* App Theme Colors */
.capsize-link { color: var(--mint); }
.capsize-link:hover { background: rgba(140, 250, 150, 0.1); border-color: var(--mint); }

.smartclip-link { color: var(--blue); }
.smartclip-link:hover { background: rgba(0, 188, 212, 0.1); border-color: var(--blue); }

.hexstack-link { color: var(--purple); }
.hexstack-link:hover { background: rgba(187, 134, 252, 0.1); border-color: var(--purple); }

@media (max-width: 600px) {
    .a-la-carte-row { flex-direction: column; align-items: stretch; }
}


.launch-banner-small {
    background: rgba(140, 250, 150, 0.03);
    border: 1px solid rgba(140, 250, 150, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin: 60px auto; /* Adds 60px of space above and below the banner */
    max-width: 650px;
    text-align: center;
    font-size: 0.85rem;
    animation: glow-pulse 3s infinite alternate;
}

.launch-banner-small i { 
    color: var(--mint); 
    margin-right: 8px; 
}

.launch-banner-small strong { 
    color: var(--mint); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes glow-pulse {
    from { box-shadow: 0 0 2px rgba(140, 250, 150, 0.1); }
    to { box-shadow: 0 0 10px rgba(140, 250, 150, 0.2); }
}

/* --- [REFINED] SPECIAL OFFER BADGE --- */
.special-offer-badge {
    display: inline-block;
    background: var(--purple);
    color: var(--bg);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

.launch-active::after { display: none !important; }

/* --- LAUNCH PROGRESS BAR --- */
.progress-container {
    max-width: 500px;
    margin: 15px auto 0 auto;
    text-align: left;
    margin-top: 8px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;       /* Reduced from 8px */
    font-size: 0.7rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#license-count {
    color: var(--mint);
    font-weight: 900;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-urgency {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 6px;
    text-align: center;
    font-style: normal !important; /* Overrides the old italic look */
    letter-spacing: 0.5px;
}

.progress-fill {
    /* Transitions width but keeps color solid brand mint */
    background: var(--mint) !important;
    transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- UNIFIED TABLE THEME: WHITE CORE & MINT PRO --- */

/* 1. Mint Core Column (Column 2) - Forced White */
.c-row .c-cell:nth-child(2), 
.c-header .c-cell:nth-child(2) {
    color: #ffffff !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%) !important;
}

/* 2. Mint Pro Column (Column 3) - Forced Mint */
.c-row .c-cell:nth-child(3), 
.c-header .c-cell:nth-child(3) {
    color: var(--mint) !important;
    border-left: 1px solid rgba(140, 250, 150, 0.1);
    background: linear-gradient(90deg, rgba(140, 250, 150, 0.03) 0%, transparent 100%) !important;
    font-weight: bold;
}

/* 3. Icon Colors */
.c-row .c-cell:nth-child(2) i { color: #ffffff !important; } /* Core Icons = White */
.c-row .c-cell:nth-child(3) i { color: var(--mint) !important; } /* Pro Icons = Mint */

/* 4. Subtle 'X' Marks */
.cross-icon, i.fa-xmark {
    opacity: 0.2 !important;
}

/* 5. Price Card Header Sync */
.price-card:first-child .price-header h3 {
    color: #ffffff !important;
}

html {
    scroll-behavior: smooth;
}

/* --- SUPPORT SECTION ADJUSTMENT --- */
#contact {
    /* Keep your landing spot exactly where you like it */
    scroll-margin-top: 140px !important; 
    
    /* Reduce the top padding to pull the content up */
    /* Original was likely 100px; 40px will tighten it significantly */
    padding: 40px 0 100px 0; 
    
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove any extra margin on the title itself just in case */
#contact .section-title {
    margin-top: 0 !important;
    margin-bottom: 20px; /* Adjust this to control gap between title and text */
}

/* --- CONSISTENCY FIX --- */
section {
    padding: 80px 0;
    margin: 0 auto !important; /* Forces sections to center */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

/* Specific fix for the top section to remove the double-border look */
section:first-of-type {
    border-top: none;
    padding-top: 40px; 
}

/* --- UNIFIED MOBILE OVERRIDES --- */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 20px 20px;
    }
    
    .brand-logo {
        width: 180px; /* Smaller logo for mobile */
    }

    .nav-links {
        gap: 15px;
        padding: 0 20px;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links::-webkit-scrollbar {
        display: none; /* Hide scrollbar for a cleaner look */
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .price-card.pro-tier {
        transform: scale(1); /* Don't scale on mobile, it causes overlap */
        margin-top: 40px;
    }

    .modal-content {
    padding: 20px;
    border-radius: 12px;
}

.modal-header h2 {
    font-size: 1.2rem; /* Keep titles from wrapping awkwardly */
}

.modal-feature-list li {
    font-size: 0.8rem; /* Slightly smaller text for small screens */
    margin-bottom: 10px;
}

.modal-close {
    top: 10px;
    right: 15px;
    font-size: 1.5rem; /* Make the 'X' easier to tap with a thumb */
}
}

/* --- COMPATIBILITY GUARD --- */
.mobile-warning {
    display: none; /* Hidden on Desktop */
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    color: #ffaa00;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .mobile-warning {
        display: block; /* Shown only on Mobile */
    }
}

@media (max-width: 768px) {
    .mobile-swipe-tag {
        display: inline-block !important; 
        animation: hint-bounce 2s infinite;
    }
}

@keyframes hint-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

@media (max-width: 768px) {
    .feature-label {
        position: sticky;
        left: 0;
        z-index: 10;
        background: var(--card-bg); /* Only boxy when scrolling on mobile */
       
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    /* LANDMARK: Ensures the 'Feature' header stays solid when swiping */
    .c-header .feature-label {
        position: sticky;
        left: 0;
        z-index: 20;
        background: #161a1e !important; /* Match your --card-bg exactly */
        box-shadow: 4px 0 10px rgba(0,0,0,0.4);
    }
}
