/* Base Styles */
:root {
    --deep-navy: #0D1117;
    --soft-navy: #1E293B;
    --accent-orange: #FF4500;
    --accent-neon: #39FF14;
    --white: #FFFFFF;
    --light-gray: #CCCCCC;
    --medium-gray: #6B7280;
    --dark-gray: #374151;
    --success-green: #10B981;
    --warning-yellow: #F59E0B;
    --danger-red: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--soft-navy) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
    height: 64px;
}

/* Container with perfect horizontal alignment */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-accent {
    color: var(--accent-neon);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: var(--accent-neon);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    height: 100%;
    align-items: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B35 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-neon);
    color: var(--accent-neon);
}

.btn-outline:hover {
    background: rgba(57, 255, 20, 0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-neon) 0%, #7CFC00 100%);
    color: var(--deep-navy);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        min-width: 90px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    /* Mobile action buttons in menu */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-actions .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex !important;
    }

    .nav-actions {
        display: flex;
    }
}

/* Perfect vertical centering helper */
.v-center {
    display: flex;
    align-items: center;
}

/* Active state for current page */
.nav-menu a.active {
    color: var(--accent-neon);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--accent-neon);
}
/* Hero Section */
.hero {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-neon);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.benefit-card i {
    color: var(--accent-neon);
    font-size: 1.5rem;
}

.hero-illustration {
    margin-top: 4rem;
}

.illustration-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.document-upload {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
}

.document-icon {
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, var(--soft-navy) 0%, var(--deep-navy) 100%);
    margin: 0 auto 2rem;
    border-radius: 8px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.document-icon::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 30px;
    background: var(--accent-neon);
    border-radius: 4px;
}

.upload-progress {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    animation: progress 3s ease-in-out infinite;
}

.analysis-result {
    text-align: center;
}

.similarity-score {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.similarity-label {
    display: block;
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: rgba(13, 17, 23, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--light-gray);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(57, 255, 20, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-gray);
}

/* Workflow Section */
.workflow-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--soft-navy) 100%);
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.step h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--light-gray);
}

.step-arrow {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    position: relative;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--accent-neon);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: rgba(13, 17, 23, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-gray);
    line-height: 1.8;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--deep-navy);
}

.author-info strong {
    display: block;
    color: var(--white);
}

.author-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(57, 255, 20, 0.1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(7, 10, 13, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-neon);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--soft-navy) 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 14px;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--light-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-neon);
}

.upload-area {
    margin: 2rem 0;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--accent-neon);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-orange);
}

.upload-label i {
    font-size: 3rem;
    color: var(--accent-neon);
    margin-bottom: 1rem;
}

.upload-label p {
    color: var(--light-gray);
    text-align: center;
}

.upload-hint {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-neon);
    background: rgba(255, 255, 255, 0.1);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 0%; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }
.fade-in.delay-6 { animation-delay: 1.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-4 { margin-bottom: 4rem; }

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--soft-navy) 100%);
}

.section-title {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    color: var(--deep-navy);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header {
    margin-bottom: 2rem;
}

.card-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.card-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.price-per-check {
    color: var(--light-gray);
    font-size: 1rem;
}

.card-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--light-gray);
    font-size: 1.1rem;
}

.check-icon {
    color: var(--accent-neon);
    font-weight: bold;
    font-size: 1.4rem;
}

.btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B35 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

/* Value Comparison Table */
.comparison-table-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cell {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-cell {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.feature-name {
    font-weight: 600;
    color: var(--white);
}

/* FAQ Section */
.pricing-faq {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-container {
    margin-top: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(57, 255, 20, 0.15) 100%);
    padding: 3rem;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-note {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .table-header,
    .table-row {
        display: block;
    }
    
    .header-cell,
    .row-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }
    
    .feature-name {
        font-weight: 700;
    }
}

/* How It Works Section */
.how-it-works-main {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

/* Workflow Container */
.workflow-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.workflow-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.workflow-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.workflow-btn i {
    font-size: 1.2rem;
}

/* Workflow Steps Container */
.workflow-steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item.active {
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--accent-orange);
    transform: scale(1.02);
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Platform Screenshot */
.platform-screenshot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-border {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: var(--deep-navy);
}

.screenshot-content {
    background: var(--soft-navy);
    padding: 1.5rem;
    min-height: 600px;
}

.screenshot-header {
    background: var(--deep-navy);
    padding: 0.8rem 1.2rem;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab.active {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    color: var(--deep-navy);
    font-weight: 600;
}

.screenshot-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.screenshot-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.screenshot-form button {
    width: 100%;
    margin-top: 1rem;
}

.screenshot-results {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.result-status {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.result-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.result-score {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-neon) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.result-detail h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.result-detail p {
    color: var(--light-gray);
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-container {
    margin-top: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(57, 255, 20, 0.15) 100%);
    padding: 3rem;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-note {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .workflow-steps-container {
        grid-template-columns: 1fr;
    }
    
    .screenshot-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .workflow-buttons {
        flex-direction: column;
    }
    
    .workflow-btn {
        min-width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}