:root {
    --primary-red: #EC3D2E;
    --primary-glow: rgba(236, 61, 46, 0.5);
    --deep-navy: #0B0F19; /* Almost black background */
    --card-bg: #151925; /* Dark card background */
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --white: #ffffff;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(236, 61, 46, 0.15);
    
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--deep-navy); /* Dark Mode Base */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EC3D2E 0%, #C4281B 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(236, 61, 46, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 61, 46, 0.4);
}

.cta-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.8); /* Dark glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    height: 72px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.by-finopia {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0;
    border: 1px solid var(--card-border);
}

.navbar {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar a:not(.cta-button) {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.navbar a:not(.cta-button):hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 72px; /* Height of header */
    padding-bottom: 0;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
    height: 100vh; /* Full viewport height */
    min-height: 600px; /* Minimum height for smaller screens */
    display: flex;
    align-items: center;
}

/* Glow Effect behind Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 61, 46, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* No gap, split exactly in half */
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-left: 0; /* Reset padding */
    padding-right: 0;
    max-width: 100%; /* Full width */
    height: 100%; /* Fill hero height */
}

.hero-content {
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px)); /* Align content with container logic */
    padding-right: 60px; /* Space before image */
    margin-top: -200px; /* Move content up visually */
}

.hero-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 61, 46, 0.1);
    color: #FF6B6B;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(236, 61, 46, 0.2);
    box-shadow: 0 0 10px rgba(236, 61, 46, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 16px; /* Reduced margin */
    color: var(--white);
}

.hero .highlight {
    color: transparent;
    background: linear-gradient(90deg, #FF6B6B, #EC3D2E);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px; /* Reduced margin */
    max-width: 540px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px; /* Reduced gap */
    margin-bottom: 32px; /* Reduced margin */
    flex-wrap: wrap;
}

.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 8px 16px; /* Reduced padding */
    border-radius: 100px;
    font-size: 0.85rem; /* Reduced font size */
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.hero-guarantee i {
    color: #10B981;
}

.hero-benefits-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: none; /* Removed border to save space */
    padding-top: 0;
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.benefit-item i {
    color: #FF6B6B;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-block;
    font-size: 0.9rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* No radius for full split */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
    transform: none;
}

/* Section General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--white);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin: 12px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(236, 61, 46, 0.5);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Why / Comparison Section */
.section-why {
    background-color: #0F1219; /* Slightly lighter than body */
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.section-why .section-header h2,
.section-why .section-header p {
    color: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.comparison-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.problem {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card.solution {
    background: linear-gradient(145deg, #1A202C 0%, #111827 100%);
    color: var(--white);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.solution:hover {
    transform: scale(1.03);
    border-color: rgba(236, 61, 46, 0.3);
}

.comparison-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 1.35rem;
    color: var(--white);
}

.problem h3 { color: #ff8a80; }
.solution h3 { color: var(--white); }

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.problem li { color: rgba(255, 255, 255, 0.6); }
.solution li { color: var(--text-main); font-weight: 500; }

.problem li i { color: #ff8a80; margin-top: 4px; opacity: 0.8; }
.solution li i { color: #10B981; margin-top: 4px; }

/* Features Section */
.section-features {
    background-color: var(--deep-navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(236, 61, 46, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(236, 61, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF6B6B;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(236, 61, 46, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 0 15px rgba(236, 61, 46, 0.4);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--white);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Benefits Section */
.section-benefits {
    background-color: #0F1219;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.3); /* Green glow for benefits */
}

.check-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 8px; /* Matching step-number shape */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.benefits-list strong {
    display: block;
    font-size: 1.1rem; /* Matching step-content h3 */
    color: var(--white);
    margin-bottom: 6px;
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
}

/* Workflow Section */
.section-workflow {
    background-color: var(--deep-navy);
}

.workflow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
}

.step-card {
    text-align: left;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(236, 61, 46, 0.3);
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
    border: 1px solid var(--card-border);
}

.step-content h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: var(--white);
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.workflow-image {
    text-align: center;
    position: relative;
}

.workflow-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 61, 46, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.5;
}

.workflow-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 1px solid var(--card-border);
}

/* Testimonials */
.section-testimonials {
    background-color: #0F1219;
    padding-bottom: 120px;
    border-top: 1px solid var(--card-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: none;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: #1A202C;
    box-shadow: var(--shadow-md);
    border-color: rgba(255,255,255,0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #F59E0B;
    margin-bottom: 20px;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: normal;
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 1rem;
    position: relative;
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--card-border);
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.section-faq {
    background-color: var(--deep-navy);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(236, 61, 46, 0.3);
    box-shadow: var(--shadow-glow);
}

.faq-item h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
}

.faq-item h3::after {
    content: '+';
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

/* .faq-item:hover h3::after removed */

.faq-item.active h3::after {
    transform: rotate(45deg); /* Rotate to X */
}

.faq-item p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 0.95rem;
    display: none;
}

.faq-item.active p {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Section */
.section-cta {
    background-color: #0F1219;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.9rem !important;
    opacity: 0.6;
}

/* Footer */
.footer {
    background-color: #05080F; /* Even darker */
    color: var(--text-muted);
    padding: 80px 0 40px;
    font-size: 0.9rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* CTA Section */
.section-cta {
    background-color: var(--deep-navy);
    color: var(--white);
    text-align: center;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9rem !important;
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: #0a1635;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7); /* Deep navy overlay */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #9CA3AF;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--deep-navy);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--deep-navy);
}

.modal-header p {
    color: #6B7280;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--deep-navy);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: #F9FAFB;
    color: var(--deep-navy);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(236, 61, 46, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light-gray);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Success State */
.success-icon {
    width: 64px;
    height: 64px;
    background-color: #ECFDF5;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

#success-content h3 {
    color: var(--deep-navy);
    margin-bottom: 12px;
}

#success-content p {
    color: #4B5563;
}

/* Audience Section */
.section-audience {
    background-color: var(--deep-navy);
    padding: 80px 0;
    border-bottom: 1px solid var(--card-border);
}

.audience-table-wrapper {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    overflow: hidden; /* For rounded corners */
    box-shadow: var(--shadow-md);
    overflow-x: auto; /* Responsive table */
}

.audience-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px; /* Ensure it doesn't squish too much on mobile */
}

.audience-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--card-border);
}

.audience-table td {
    padding: 24px;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.95rem;
    vertical-align: middle;
}

.audience-table tr:last-child td {
    border-bottom: none;
}

.audience-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.profile-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.audience-table .stars {
    margin-bottom: 0;
    color: #F59E0B;
    letter-spacing: 2px;
}

.star-dim {
    color: rgba(255, 255, 255, 0.1);
}

.row-dim td {
    opacity: 0.5;
}

/* Security Section */
.section-security {
    background-color: #0F1219;
    padding: 100px 0;
    border-bottom: 1px solid var(--card-border);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-card {
    background: var(--card-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3); /* Green for security/trust */
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.security-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.security-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.security-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Limited Seats Section - Re-added at end */
.section-limited {
    background: linear-gradient(135deg, #1a0b0b 0%, #2d0f0f 100%) !important;
    padding: 80px 0 !important;
    text-align: center !important;
    border-top: 1px solid rgba(236, 61, 46, 0.2) !important;
    border-bottom: 1px solid rgba(236, 61, 46, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.section-limited::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(236, 61, 46, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.limited-badge {
    display: inline-block;
    background: rgba(236, 61, 46, 0.2);
    color: #FF6B6B;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(236, 61, 46, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.limited-count {
    font-size: 6rem !important;
    font-weight: 800 !important;
    color: var(--primary-red) !important;
    line-height: 1 !important;
    margin: 16px 0 !important;
    text-shadow: 0 0 30px rgba(236, 61, 46, 0.4) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.limited-text {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 32px;
    font-weight: 600;
}

.limited-subtext {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--deep-navy);
        padding: 24px;
        border-bottom: 1px solid var(--card-border);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        animation: slideDown 0.3s ease;
    }

    .navbar.active a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 1.1rem;
    }

    .navbar.active .cta-button {
        margin-top: 12px;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto; /* Auto height on mobile */
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-left: 0;
        padding-right: 0;
        height: auto;
    }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
        margin-top: 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-benefits-list {
        justify-content: center;
    }

    .hero-image {
        margin-top: 20px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .benefits-image {
        order: -1;
        margin-bottom: 40px;
    }

    .workflow-container {
        grid-template-columns: 1fr;
    }

    .workflow-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .limited-count {
        font-size: 4rem;
    }
    
    .limited-text {
        font-size: 1.2rem;
    }
}