:root {
    --primary-color: #00f2ff;
    --secondary-color: #7000ff;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #151515;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.remote-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.remote-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero .container {
    max-width: 100%;
    margin: 0;
    padding-left: 5%;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    padding: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.hero-visual {
    width: 65%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    mask-image: linear-gradient(to right, transparent, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}

.glow-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
    top: 20%;
    left: -10%;
    z-index: 1;
}

/* Features Section */
.features {
    background: #111;
}

/* Feature Expansion */
.feature-category {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
}

.badge {
    font-size: 0.9rem;
    background: var(--glass-border);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: var(--text-secondary);
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.compact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.compact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.compact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
}

.compact-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

.compact-card li {
    margin-bottom: 0.3rem;
}

/* Pro Features Styling */
.pro-title {
    border-left-color: var(--secondary-color);
}

.pro-badge {
    background: var(--secondary-color);
    color: white;
}

.pro-card {
    border-color: rgba(112, 0, 255, 0.3);
    background: linear-gradient(145deg, #121212, #0d0d0d);
}

.pro-card .feature-num {
    color: rgba(112, 0, 255, 0.05);
}

/* Secondary Button */
.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(112, 0, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid #333;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.modal-desc {
    text-align: center;
    color: #b3b3b3;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-section {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.form-section label {
    display: block;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 500;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.inline-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: white;
    padding: 0 5px;
    margin-left: 5px;
    width: 100px;
}

.inline-input:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.modal-btn {
    width: 100%;
    margin-top: 2rem;
}

/* Trial Section */
#trial {
    padding: 60px 0;
    /* Reduced from 100px */
    text-align: center;
}

.trial-form {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 30px;
    /* Reduced padding */
    border-radius: 15px;
    border: 1px solid #333;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 0;
    /* Let grid gap handle spacing, or small margin */
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    /* Slightly smaller */
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Make full width on mobile */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group-row {
    display: flex;
    gap: 1rem;
}

.form-group-row .form-group {
    flex: 1;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.resource-item:hover {
    background: #1a1a1a;
}

.resource-info h4 {
    margin-bottom: 0.5rem;
}

.download-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    color: var(--text-secondary);
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 450px;
}

.remote-support-link {
    display: inline-block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    /* Unified size */
    transition: color 0.3s;
}

.remote-support-link:hover {
    color: var(--primary-color);
}

.link-sub {
    font-size: 1rem;
    /* Unified size */
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.hns-phone {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    /* White for better visibility or match design's dark blue if needed, but white pops better on dark bg */
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align right explicitly */
    gap: 1rem;
}

.hns-phone i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.hns-hours {
    text-align: right;
}

.hns-hours-title {
    color: var(--text-color);
    font-size: 1rem;
    /* Unified size */
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.hns-hours-row {
    font-size: 1rem;
    /* Unified size */
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
    /* Ensure vertical alignment */
}

.hns-hours-label {
    font-weight: 600;
    color: var(--primary-color);
    /* Matches the 'badge' style roughly */
    background: rgba(0, 242, 255, 0.1);
    padding: 0.2rem 0.6rem;
    /* Adjusted padding for better balance at 1rem */
    border-radius: 4px;
    font-size: 0.9rem;
    /* Labels can be slightly distinct, or 1rem? User said "all text sizes same". Let's stick to base text being 1rem. */
}

.hns-hours-info {
    font-size: 1rem;
    /* Unified size */
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.hns-notice {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .logo,
    .footer-info,
    .footer-left div {
        text-align: center !important;
    }

    .hns-phone {
        justify-content: center;
    }

    .hns-hours,
    .hns-notice {
        text-align: center;
    }

    .hns-hours-row {
        justify-content: center;
    }
}

/* Supported Formats Section */
.formats-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
}

.formats-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-blue {
    background-color: #0078d4;
}

.status-red {
    background-color: #d13438;
}

.status-grey {
    background-color: #a0a0eb;
    opacity: 0.5;
}

/* Updated based on image greyish blue */
.status-half {
    background: linear-gradient(90deg, #0078d4 50%, #3b3b3b 50%);
}

.status-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #0078d4;
    background-color: transparent;
    border-radius: 0;
}

.formats-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: center;
}

.formats-table th {
    font-weight: 600;
    padding: 1rem;
    border-bottom: 2px solid var(--glass-border);
    color: var(--text-color);
}

.formats-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    vertical-align: middle;
}

.formats-table tr:last-child td {
    border-bottom: none;
}

.format-name {
    font-weight: 600;
    color: var(--text-color);
    display: block;
}

.format-ext {
    font-size: 0.85rem;
    color: var(--primary-color);
    display: block;
    margin-top: 0.3rem;
}

/* System Requirements Section */
.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.req-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s;
}

.req-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.req-card h3 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.req-item {
    display: flex;
    margin-bottom: 1rem;
}

.req-label {
    width: 80px;
    font-weight: 600;
    color: var(--text-color);
    flex-shrink: 0;
}

.req-value {
    color: var(--text-secondary);
}

.req-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.comparison-table th {
    font-size: 1.1rem;
    color: var(--text-color);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-secondary);
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.pro-feature td:first-child {
    color: #fff;
    /* Highlight pro features */
}

/* License Section */
.license-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.license-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    max-width: 450px;
    flex: 1 1 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Privacy Agreement */
.privacy-agreement {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.5rem !important;
}

.checkbox-label input {
    width: auto;
    margin: 0;
}

.privacy-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.license-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

.license-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.license-card p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        flex-direction: column;
        height: auto;
        padding-bottom: 4rem;
        padding-top: 100px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .hero-content p {
        margin: 1.5rem auto;
        font-size: 1rem;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
        mask-image: none;
        -webkit-mask-image: none;
        margin-top: 2rem;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-buttons {
        display: none;
        /* Hide desktop button in nav, maybe add to mobile menu if needed, or keep floating? */
        /* Currently hiding to avoid clutter, user can use the hero button */
    }

    /* Include the CTA button inside the mobile menu seamlessly if we moved it in HTML, 
       but for now let's just ensure the nav-links take over. 
       We might want to duplicate the CTA in nav-links via JS or HTML for mobile, 
       but for now let's rely on the page content CTAs. */

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    /* Global Mobile Spacing */
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .logo {
        z-index: 1001;
        /* Keep logo above menu */
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-header:hover .faq-title {
    color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.faq-icon {
    font-weight: 800;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.q-icon {
    color: var(--text-color);
    /* Mimic the "Q" in image */
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.faq-item.active .q-icon {
    color: var(--primary-color);
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s;
}

.faq-toggle {
    background: var(--primary-color);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--text-color);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, background 0.3s;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* Approximate max height */
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
}

.faq-answer {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.a-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: -5px;
    /* Adjust alignment */
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 1rem;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .faq-title {
        font-size: 1rem;
    }
}

/* Product Introduction Section */
.product-intro {
    background-color: #0d0d0d;
    position: relative;
    padding: 100px 0;
}

/* Intro Hero Area */
.intro-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.intro-content {
    text-align: left;
}

.intro-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}


.intro-content h3 {
    font-size: 3.5rem;
    /* Increased size to match image */
    margin-bottom: 2rem;
    color: #fff;
    /* Solid white */
    font-weight: 800;
    /* Bolder */
    letter-spacing: -1px;
}

.intro-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    /* Brighter grey for better contrast */
    line-height: 1.8;
}

/* Intro Features Grid */
.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.intro-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.intro-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    /* Removed background to match cleaner look if needed, or keep */
    /* background: rgba(255, 255, 255, 0.05); Keeping background but subtle */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    /* Cyan */
    font-size: 1.2rem;
}

/* Ensure secondary button has correct border color */
.cta-button.secondary {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
    /* Subtle glow to match neon vibe */
}


.intro-text {
    display: flex;
    flex-direction: column;
}

.intro-text strong {
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.intro-text span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Product Selection Area */
.product-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #151515;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}


.card-image::after {
    /* content: ''; Removed gradient overlay */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    /* Changed from 100px to 0 */
    background: transparent;
    /* Changed to transparent */
}

.card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Specific Card Styling */
.product-card.standard h4 {
    background: linear-gradient(to right, #00f2ff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card.pro h4 {
    background: linear-gradient(to right, #7000ff, #be29ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card.pro {
    border-color: rgba(112, 0, 255, 0.2);
    background: linear-gradient(145deg, #151515, #0f0b1a);
}

.card-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 500;
}

.card-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* Feature Colors */
.product-card.standard .card-features li::before {
    color: var(--primary-color);
}

.product-card.pro .card-features li::before {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .intro-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-selection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .intro-features {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #0f0f0f;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}