/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --secondary-color: #48bb78;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.cta-button {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 0 0 80px 0;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 0 0 600px;
}

.hero-video-container {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin: 0 0 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
}

.primary-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.chromium-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.button-icon {
    width: 20px;
    height: 20px;
}

.chrome-icon {
    width: 30px;
    height: 30px;
}

.primary-button {
    background: var(--bg-white);
    color: var(--primary-color);
}

.primary-button-enhanced {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
    font-size: 17px;
    padding: 14px 28px;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.primary-button-enhanced:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.5);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card.premium {
    border: 2px solid transparent;
    background-image:
        linear-gradient(white, white),
        var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.free {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.feature-icon.premium {
    background: var(--primary-gradient);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-badge.free {
    background: #c6f6d5;
    color: #22543d;
}

.feature-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 60px;
}

.step-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-arrow svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
    opacity: 0.5;
}

.version-sections {
    margin-top: 60px;
}

.version-section {
    margin-bottom: 80px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.version-section:last-child {
    margin-bottom: 0;
}

.version-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.version-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.free-version-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.free-version-description {
    flex: 0 0 350px;
}

.free-version-description p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.demo-videos-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.demo-video-item {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 32px;
}

.demo-video-description {
    flex: 0 0 350px;
}

.demo-video-description h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.demo-video-description p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.demo-video-container {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
}

.demo-video-container video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    background: #000;
    object-fit: cover;
}

.custom-checkmarks-block {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.custom-checkmarks-text {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
}

.custom-checkmarks-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0;
}

.custom-checkmarks-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-dark);
}

.custom-checkmarks-description {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
}

.custom-checkmarks-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkmark-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.custom-checkmarks-note {
    margin: 8px 0 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.custom-checkmarks-video {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .version-section {
        padding: 24px;
    }

    .free-version-content {
        flex-direction: column;
        gap: 20px;
    }

    .free-version-description {
        flex: 1 1 auto;
    }

    .demo-video-item {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .demo-video-description {
        flex: 1 1 auto;
    }

    .custom-checkmarks-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .custom-checkmarks-text {
        flex: 1 1 auto;
        max-width: none;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
}

.pricing-comparison {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-table thead {
    background: var(--bg-light);
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: center;
}

.pricing-table th.feature-column,
.pricing-table td.feature-name {
    text-align: left;
    font-weight: 600;
}

.pricing-table th {
    font-weight: 700;
    color: var(--text-dark);
}

.plan-header-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.plan-column.featured {
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.05), transparent);
}

.pricing-table .featured-badge {
    position: static;
    transform: none;
    background: var(--primary-gradient);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.plan-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.plan-price-secondary {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    padding: 0 14px 0 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    position: relative;
    display: inline-block;
}

.plan-savings {
    position: absolute;
    top: -16px;
    right: -8px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    padding: 3px 6px;
    border-radius: 999px;
    background: #4CAF50;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.feature-name {
    color: var(--text-gray);
}

.feature-value {
    text-align: center;
}

.pricing-table .check-icon,
.pricing-table .x-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.pricing-table .check-icon {
    stroke: var(--secondary-color);
}

.pricing-table .x-icon {
    stroke: var(--text-light);
    opacity: 0.4;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

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

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid transparent;
    background-image:
        linear-gradient(white, white),
        var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 18px;
    color: var(--text-light);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-item.disabled {
    opacity: 0.4;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item:not(.disabled) .check-icon {
    stroke: var(--secondary-color);
}

.feature-item.disabled .check-icon {
    stroke: var(--text-light);
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.plan-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.plan-button.primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note p {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--primary-gradient);
    color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Payment Status Pages */
body.status-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

body.status-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 55%);
    pointer-events: none;
}

body.status-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.1));
    mix-blend-mode: screen;
    pointer-events: none;
}

body.status-page>* {
    position: relative;
    z-index: 1;
}

.status-layout {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.status-header {
    text-align: center;
    margin-bottom: 24px;
}

.status-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

.status-logo img {
    width: 36px;
    height: 36px;
}

.status-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.status-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.status-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.status-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.status-message {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.status-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-gray);
    font-size: 15px;
}

.status-detail svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke-width: 2;
}

.status-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 999px;
    border: none;
    background: var(--primary-gradient);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(102, 126, 234, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.status-cta svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.status-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(102, 126, 234, 0.45);
}

.status-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.status-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.status-note a:hover {
    text-decoration: underline;
}

body.status-page--success .status-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(72, 187, 120, 0.2));
    color: var(--primary-color);
}

body.status-page--success .status-detail svg {
    stroke: var(--primary-color);
}

body.status-page--success .status-eyebrow {
    color: var(--primary-color);
}

body.status-page--cancel .status-icon {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.15), rgba(237, 137, 54, 0.2));
    color: #e53e3e;
}

body.status-page--cancel .status-detail svg {
    stroke: #e53e3e;
}

body.status-page--cancel .status-eyebrow {
    color: #e53e3e;
}

body.status-page--cancel .status-cta {
    background: linear-gradient(135deg, #f56565 0%, #ed8936 100%);
    box-shadow: 0 18px 35px rgba(245, 101, 101, 0.35);
}

body.status-page--cancel .status-cta:hover {
    box-shadow: 0 18px 35px rgba(245, 101, 101, 0.45);
}

@media (max-width: 600px) {
    body.status-page {
        padding: 24px 12px;
    }

    .status-card {
        padding: 32px 24px;
    }

    .status-title {
        font-size: 26px;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.footer-tech {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right {
        flex: 1;
        max-width: 600px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-right {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 14px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }
}
