/* ============================================
   CheckPrintPro Marketing Website - Styles
   ============================================ */

:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #64748b;
    --accent: #f59e0b;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;

    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-pro {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-login {
    color: var(--text-primary) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: white !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 16px;
}

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

.highlight-feature {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.badge {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-right: 8px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.app-window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.window-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.window-dots span:nth-child(1) {
    background: #ef4444;
}

.window-dots span:nth-child(2) {
    background: #f59e0b;
}

.window-dots span:nth-child(3) {
    background: #10b981;
}

.window-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.window-content {
    padding: 32px;
    position: relative;
}

.check-preview {
    background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.check-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.check-info {
    font-size: 11px;
    color: var(--text-primary);
}

.info-line {
    margin-bottom: 2px;
}

.info-line.small {
    font-size: 10px;
    color: var(--text-secondary);
}

.check-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.check-body {
    margin-top: 16px;
}

.pay-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pay-line .label {
    font-size: 9px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.underline {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.amount-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.amount-words {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.dollars {
    font-size: 10px;
    color: var(--text-secondary);
}

.bank-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.micr-line {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.security-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
}

.security-badge svg {
    width: 16px;
    height: 16px;
    color: #92400e;
}

.instant-print-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
}

.instant-print-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.instant-print-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--section-padding) 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Check Paper Format Section
   ============================================ */
.check-paper-section {
    padding: var(--section-padding) 0;
    background: white;
}

.check-paper-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.check-paper-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.check-paper-info>p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.check-paper-features {
    list-style: none;
    margin-bottom: 24px;
}

.check-paper-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 16px;
}

.check-paper-note {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.check-paper-note strong {
    color: var(--text-primary);
}

.check-paper-image {
    text-align: center;
}

.check-paper-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.image-caption {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 32px;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
}

.price .period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-type {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li.included::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.features-list li.excluded {
    color: var(--text-muted);
}

.features-list li.excluded::before {
    content: '×';
    color: var(--text-muted);
    font-weight: 700;
    font-size: 20px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-icon {
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .check-paper-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-cta {
        flex-direction: column;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Legal Pages Styles
   ============================================ */
.legal-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.legal-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.legal-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.table-of-contents {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.table-of-contents h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.table-of-contents a:hover {
    color: var(--primary);
}

.legal-main {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.doc-section {
    margin-bottom: 48px;
}

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

.doc-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.doc-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.doc-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.doc-section ul,
.doc-section ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.doc-section li {
    margin-bottom: 8px;
}

.info-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.info-box strong {
    color: var(--primary);
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.warning-box strong {
    color: #d97706;
}

.contact-info-box {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-info-box p {
    margin-bottom: 8px;
}

.contact-info-box a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* FAQ Specific Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer>* {
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 40px;
    margin-bottom: 12px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 48px;
}

.faq-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta .btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.faq-cta .btn-outline:hover {
    background: transparent;
    color: white;
}

/* Legal Pages Responsive Design */
@media (max-width: 968px) {
    .legal-content {
        grid-template-columns: 1fr;
    }

    .table-of-contents {
        position: static;
        margin-bottom: 24px;
    }

    .legal-main {
        padding: 32px 24px;
    }

    .legal-header h1 {
        font-size: 36px;
    }

    .doc-section h2 {
        font-size: 28px;
    }

    .doc-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-main {
        padding: 24px 16px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-cta {
        padding: 32px 24px;
    }

    .faq-cta h2 {
        font-size: 24px;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .faq-cta .btn {
        width: 100%;
    }
}

/* ============================================
   Download Page Styles
   ============================================ */
.download-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.download-header {
    text-align: center;
    margin-bottom: 48px;
}

.download-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.download-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.tier-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.tier-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tier-info-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tier-price {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.tier-price .amount {
    font-size: 36px;
    font-weight: 700;
}

.tier-price .period {
    font-size: 16px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    text-align: left;
}

.tier-features li {
    padding-left: 24px;
    position: relative;
}

.tier-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.os-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.os-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.os-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.os-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.os-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.os-card>p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.system-requirements {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.system-requirements h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-requirements li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.system-requirements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.btn-download {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    padding: 14px 24px;
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

.installation-preview {
    max-width: 900px;
    margin: 0 auto 48px;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.installation-preview h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.install-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.help-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.help-text a {
    color: var(--primary);
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.download-footer {
    text-align: center;
}

/* Download Page Responsive Design */
@media (max-width: 968px) {
    .os-selection {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .download-page {
        padding: 40px 0;
    }

    .download-header h1 {
        font-size: 36px;
    }

    .tier-info-card {
        padding: 24px;
    }

    .tier-info-card h2 {
        font-size: 24px;
    }

    .tier-price .amount {
        font-size: 28px;
    }

    .os-card {
        padding: 24px;
    }

    .installation-preview {
        padding: 32px 24px;
    }

    .installation-preview h2 {
        font-size: 24px;
    }
}

/* ============================================
   Tier Selection Section (Download Page)
   ============================================ */
.tier-selection-section {
    max-width: 1000px;
    margin: 0 auto 64px;
}

.tier-selection-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 8px;
}

.tier-selection-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

.tier-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier-select-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-select-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.tier-select-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.popular-badge-small {
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.tier-select-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.tier-select-price {
    margin-bottom: 24px;
}

.tier-select-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-select-price .period {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.tier-select-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    flex-grow: 1;
}

.tier-select-features li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.tier-select-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.select-tier-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-top: auto;
}

.tier-select-card:hover .select-tier-btn {
    transform: translateX(4px);
}

/* Tier Selection Responsive */
@media (max-width: 968px) {
    .tier-selection-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tier-selection-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .tier-select-card {
        padding: 24px 20px;
    }

    .tier-select-price .amount {
        font-size: 32px;
    }
}
/* ============================================
   Success Page Styles
   ============================================ */
.success-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    text-align: center;
    margin-bottom: 24px;
}

.success-icon svg {
    color: #10b981;
    filter: drop-shadow(0 4px 6px rgba(16, 185, 129, 0.2));
}

.success-page h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 12px;
}

.success-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.purchase-details {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.purchase-details h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.detail-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.download-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.download-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.download-section > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.btn-download-large {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-download-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.btn-download-large svg {
    flex-shrink: 0;
}

.btn-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.btn-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.download-note {
    background: #eff6ff;
    border-left: 4px solid var(--primary);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.download-note svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.download-note p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.next-steps {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.help-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.help-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.help-section p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

.help-section a:hover {
    text-decoration: underline;
}

.success-footer {
    text-align: center;
}

/* Success Page Responsive */
@media (max-width: 968px) {
    .download-buttons {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .success-page {
        padding: 40px 0;
    }

    .success-page h1 {
        font-size: 36px;
    }

    .purchase-details,
    .download-section,
    .next-steps {
        padding: 24px;
    }

    .btn-download-large {
        padding: 20px;
    }

    .btn-title {
        font-size: 16px;
    }
}
