/* Combined styles from index.html */

/* === Section 1 === */
:root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #10b981;
            --dark: #1e293b;
            --darker: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #e2e8f0;
            --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --border-color: #e2e8f0;
            --card-bg: #ffffff;
            --nav-bg: rgba(255, 255, 255, 0.95);
            /* Accent colors */
            --accent-green-bg: #dcfce7;
            --accent-green-text: #166534;
            --accent-blue-bg: #dbeafe;
            --accent-purple-bg: #f3e8ff;
            --accent-orange-bg: #ffedd5;
            --accent-warning-bg: #fef3c7;
            --accent-warning-text: #b45309;
            --accent-danger-bg: #fef2f2;
            --accent-success-gradient: linear-gradient(135deg, #f0fdf4, #dcfce7);
            --accent-nocommit-bg: linear-gradient(135deg, #eff6ff, #dbeafe);
            --accent-nocommit-border: #93c5fd;
            --accent-nocommit-label-bg: linear-gradient(135deg, #dbeafe, #eff6ff);
            --accent-nocommit-label-text: #1d4ed8;
        }

        /* Dark mode colors */
        [data-theme="dark"] {
            --dark: #e2e8f0;
            --darker: #f8fafc;
            --light: #1e1e2e;
            --gray: #a1a1aa;
            --gray-light: #3f3f46;
            --bg-primary: #1e1e2e;
            --bg-secondary: #27272a;
            --text-primary: #f8fafc;
            --text-secondary: #a1a1aa;
            --border-color: #3f3f46;
            --card-bg: #27272a;
            --nav-bg: rgba(30, 30, 46, 0.95);
            /* Accent colors - dark */
            --accent-green-bg: #166534;
            --accent-green-text: #dcfce7;
            --accent-blue-bg: #1e3a8a;
            --accent-purple-bg: #581c87;
            --accent-orange-bg: #9a3412;
            --accent-warning-bg: #422006;
            --accent-warning-text: #fbbf24;
            --accent-danger-bg: #450a0a;
            --accent-success-gradient: linear-gradient(135deg, #064e3b, #065f46);
            --accent-nocommit-bg: linear-gradient(135deg, #1e293b, #1e3a5f);
            --accent-nocommit-border: #3b82f6;
            --accent-nocommit-label-bg: linear-gradient(135deg, #1e3a5f, #1e3a8a);
            --accent-nocommit-label-text: #93c5fd;
        }

        /* System preference dark mode */
        @media (prefers-color-scheme: dark) {
            :root:not([data-theme="light"]) {
                --dark: #e2e8f0;
                --darker: #f8fafc;
                --light: #1e1e2e;
                --gray: #a1a1aa;
                --gray-light: #3f3f46;
                --bg-primary: #1e1e2e;
                --bg-secondary: #27272a;
                --text-primary: #f8fafc;
                --text-secondary: #a1a1aa;
                --border-color: #3f3f46;
                --card-bg: #27272a;
                --nav-bg: rgba(30, 30, 46, 0.95);
                /* Accent colors - dark */
                --accent-green-bg: #166534;
                --accent-green-text: #dcfce7;
                --accent-blue-bg: #1e3a8a;
                --accent-purple-bg: #581c87;
                --accent-orange-bg: #9a3412;
                --accent-warning-bg: #422006;
                --accent-warning-text: #fbbf24;
                --accent-danger-bg: #450a0a;
                --accent-success-gradient: linear-gradient(135deg, #064e3b, #065f46);
                --accent-nocommit-bg: linear-gradient(135deg, #1e293b, #1e3a5f);
                --accent-nocommit-border: #3b82f6;
                --accent-nocommit-label-bg: linear-gradient(135deg, #1e3a5f, #1e3a8a);
                --accent-nocommit-label-text: #93c5fd;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        /* Focus visible styles for accessibility */
        *:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--light);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: var(--nav-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--gray-light);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Theme toggle button */
        .theme-toggle {
            background: none;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            padding: 0.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            font-size: 1.25rem;
            transition: all 0.3s;
            margin-left: 1rem;
        }

        .theme-toggle:hover {
            border-color: var(--primary);
            background: var(--light);
        }

        .theme-toggle .icon-sun { display: none; }
        .theme-toggle .icon-moon { display: block; }

        [data-theme="dark"] .theme-toggle .icon-sun { display: block; }
        [data-theme="dark"] .theme-toggle .icon-moon { display: none; }

        @media (prefers-color-scheme: dark) {
            :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
            :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

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

        .logo span {
            color: var(--dark);
        }

        .logo-icon {
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        /* Hamburger Menu */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--light) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: var(--gradient);
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(100px);
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.75rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--darker);
        }

        .hero-content h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
        }

        .btn-secondary {
            background: var(--bg-primary);
            color: var(--dark);
            border: 2px solid var(--gray-light);
        }

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

        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .hero-card::before {
            content: '🏠';
            font-size: 3rem;
            position: absolute;
            top: -1.5rem;
            left: 2rem;
        }

        .status-grid {
            display: grid;
            gap: 1rem;
            margin-top: 1rem;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--light);
            border-radius: 12px;
        }

        .status-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .status-icon.green { background: var(--accent-green-bg); }
        .status-icon.blue { background: var(--accent-blue-bg); }
        .status-icon.purple { background: var(--accent-purple-bg); }
        .status-icon.orange { background: var(--accent-orange-bg); }

        .status-text {
            flex: 1;
        }

        .status-text strong {
            display: block;
            font-size: 0.875rem;
        }

        .status-text span {
            font-size: 0.75rem;
            color: var(--gray);
        }

        .status-badge {
            padding: 0.25rem 0.75rem;
            background: var(--accent-green-bg);
            color: var(--accent-green-text);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--darker);
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Comparison Section */
        .comparison {
            padding: 6rem 2rem;
            background: var(--light);
        }

        .check {
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.25rem;
        }

        /* Plans Visual Section */
        .plans-visual {
            padding: 6rem 2rem;
            background: var(--bg-primary);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Included Section */
        section.included {
            padding: 6rem 2rem;
            background: var(--light);
        }

        .included .section-header h2 {
            color: var(--darker);
        }

        .included .section-header p {
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta {
            padding: 6rem 2rem;
            background: var(--light);
            text-align: center;
        }

        .cta-box {
            max-width: 700px;
            margin: 0 auto;
            background: var(--gradient);
            border-radius: 32px;
            padding: 4rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .cta-box h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-box p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            position: relative;
        }

        .cta-box .btn {
            background: white;
            color: var(--primary);
            position: relative;
        }

        .cta-box .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer,
        body > footer {
            padding: 3rem 2rem;
            background: var(--light);
            color: var(--text-secondary);
            text-align: center;
        }

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

        /* Responsive */
        @media (max-width: 900px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin: 0 auto 2rem;
            }

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

            .hero-visual {
                display: none;
            }
        }

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

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-primary);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                border-top: 1px solid var(--gray-light);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 0.75rem 1rem;
                border-radius: 8px;
            }

            .nav-links a:hover {
                background: var(--light);
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        /* Who Is This For */
        .who-is-this-for {
            padding: 5rem 2rem;
            background: var(--bg-primary);
        }

        .personas-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .persona-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 16px;
            background: var(--light);
            border: 1px solid var(--gray-light);
            transition: all 0.3s;
        }

        .persona-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
        }

        .persona-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }

        .persona-card h3 {
            font-size: 1.1rem;
            color: var(--darker);
            margin-bottom: 0.75rem;
        }

        .persona-card p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .personas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .personas-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            z-index: 10000;
            text-decoration: none;
            border-radius: 0 0 8px 0;
            font-weight: 600;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Print stylesheet */
        @media print {
            /* Hide non-essential elements */
            nav, .nav-toggle, .hero-visual, .hero-buttons,
            .btn, .cta, footer a[href^="https://t.me"],
            .skip-link {
                display: none !important;
            }

            /* Reset colors for print */
            body {
                background: white !important;
                color: black !important;
                font-size: 12pt;
                line-height: 1.5;
            }

            /* Make all sections visible */
            section {
                padding: 1rem 0 !important;
                background: white !important;
                page-break-inside: avoid;
            }

            /* Readable headings */
            h1, h2, h3, h4 {
                color: black !important;
                -webkit-text-fill-color: black !important;
                background: none !important;
            }

            h1 { font-size: 24pt; }
            h2 { font-size: 18pt; }
            h3 { font-size: 14pt; }

            /* Readable text */
            p, li, span, strong {
                color: #333 !important;
            }

            /* Show URLs after links */
            a[href^="http"]:after {
                content: " (" attr(href) ")";
                font-size: 10pt;
                color: #666;
            }

            /* Card styling for print */
            .faq-item, .included-card, .simple-plan-card {
                border: 1px solid #ccc !important;
                background: white !important;
                page-break-inside: avoid;
            }

            /* Photo styling */
            .photo-real {
                border: 2px solid #333 !important;
                box-shadow: none !important;
            }

            /* Footer for print */
            footer {
                background: white !important;
                color: black !important;
                border-top: 1px solid #ccc;
                padding: 1rem 0 !important;
            }

            /* Hero section adjustments */
            .hero {
                min-height: auto !important;
                padding: 2rem 0 !important;
            }

            /* Grid layouts for print */
            .faq-grid, .personas-grid, .included-cards {
                display: block !important;
            }

            .faq-item, .persona-card, .included-card {
                margin-bottom: 1rem;
            }
        }

/* === Section 2 === */
.plans-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .plans-subtitle.bundles {
            margin-top: 3rem;
            font-size: 1.25rem;
            color: var(--darker);
        }

        .simple-plans-grid {
            display: grid;
            gap: 1.5rem;
        }

        .simple-plans-grid.three-col {
            grid-template-columns: repeat(3, 1fr);
        }

        .simple-plans-grid.two-col {
            grid-template-columns: repeat(2, 1fr);
            max-width: 800px;
            margin: 0 auto;
        }

        .simple-plan-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-light);
            position: relative;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .simple-plan-card.featured {
            border: 2px solid var(--secondary);
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
        }

        .bundle-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: white;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .plan-icon {
            font-size: 3rem;
            margin-bottom: 0.75rem;
        }

        .simple-plan-card h3 {
            margin: 0 0 0.5rem;
            font-size: 1.25rem;
            color: var(--darker);
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .plan-hardware {
            font-size: 0.75rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }

        .upgrade-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
            padding: 0.75rem 1.5rem;
            background: var(--card-bg);
            border: 1px dashed var(--gray-light);
            border-radius: 8px;
        }

        .upgrade-badge {
            background: var(--primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .upgrade-text {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .upgrade-text strong {
            color: var(--dark);
        }

        .plans-note {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .plan-problem {
            font-size: 0.85rem;
            color: var(--gray);
            padding: 0.75rem 1rem;
            background: var(--light);
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem;
            text-align: left;
            flex-grow: 1;
        }

        .plan-features li {
            padding: 0.4rem 0;
            font-size: 0.9rem;
            color: var(--dark);
            border-bottom: 1px solid var(--gray-light);
        }

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

        .plan-features li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: 700;
            margin-right: 0.5rem;
        }

        .plan-requirement {
            font-size: 0.75rem;
            color: var(--accent-warning-text);
            background: var(--accent-warning-bg);
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .btn-plan {
            display: block;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            text-decoration: none;
            color: var(--dark);
            background: var(--light);
            border: 2px solid var(--gray-light);
            transition: all 0.3s;
            margin-top: auto;
        }

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

        .btn-plan.featured {
            background: var(--secondary);
            border-color: var(--secondary);
            color: white;
        }

        .btn-plan.featured:hover {
            background: #059669;
            border-color: #059669;
        }

        @media (max-width: 1024px) {
            .simple-plans-grid.three-col {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .simple-plans-grid.three-col,
            .simple-plans-grid.two-col {
                grid-template-columns: 1fr;
            }
        }

/* === Section 3 === */
/* Process Timeline */
        .process-timeline {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .no-commitment-label {
            text-align: center;
            background: var(--accent-nocommit-label-bg);
            color: var(--accent-nocommit-label-text);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
            margin-left: 50%;
            transform: translateX(-50%);
            border: 1px solid var(--accent-nocommit-border);
        }

        .timeline-step {
            display: flex;
            gap: 1.5rem;
            position: relative;
        }

        .timeline-step.no-commitment .timeline-content {
            border-color: var(--accent-nocommit-border);
            background: var(--accent-nocommit-bg);
        }

        .timeline-step.no-commitment .timeline-number {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .timeline-divider {
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
        }

        .timeline-divider span {
            background: var(--light);
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            color: var(--gray);
            border: 1px dashed var(--gray-light);
            border-radius: 8px;
        }

        .timeline-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--card-bg);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .timeline-step.final .timeline-icon {
            background: var(--gradient);
        }

        .timeline-content {
            flex: 1;
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-light);
        }

        .timeline-step.final .timeline-content {
            border-color: var(--secondary);
            background: var(--accent-success-gradient);
        }

        .timeline-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .timeline-number {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-step.final .timeline-number {
            background: var(--secondary);
        }

        .timeline-content h3 {
            font-size: 1.1rem;
            color: var(--darker);
            margin: 0;
        }

        .timeline-content p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0 0 1rem;
            line-height: 1.5;
        }

        .timeline-meta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .timeline-meta span {
            font-size: 0.75rem;
            color: var(--dark);
            background: var(--light);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
        }

        .timeline-link {
            font-size: 0.75rem;
            color: var(--primary);
            text-decoration: none;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            border: 1px solid var(--primary);
            transition: all 0.2s;
            margin-left: auto;
        }

        .timeline-link:hover {
            background: var(--primary);
            color: white;
        }

        .timeline-connector {
            width: 2px;
            height: 30px;
            background: linear-gradient(180deg, var(--primary) 0%, var(--gray-light) 100%);
            margin-left: 29px;
        }

        /* Process Summary */
        .process-summary {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            flex-wrap: wrap;
        }

        .summary-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--card-bg);
            color: var(--text-primary);
            padding: 1rem calc(1.5rem - 2px);
            border-radius: 12px;
            border: 1px solid var(--gray-light);
        }

        .summary-icon {
            font-size: 1.5rem;
        }

        .summary-card strong {
            display: block;
            font-size: 0.9rem;
            color: var(--darker);
        }

        .summary-card span {
            font-size: 0.8rem;
            color: var(--gray);
        }

        @media (max-width: 768px) {
            .timeline-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .timeline-connector {
                margin-left: 0;
            }

            .timeline-meta {
                justify-content: center;
            }

            .process-summary {
                flex-direction: column;
                align-items: center;
            }
        }

/* === Section 4 === */
/* Not Sure Box */
        .not-sure-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            background: var(--card-bg);
            border: 2px dashed var(--gray-light);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            max-width: 700px;
            margin: 2rem auto 0;
        }

        .not-sure-icon {
            font-size: 2.5rem;
        }

        .not-sure-content {
            flex: 1;
        }

        .not-sure-content strong {
            display: block;
            color: var(--darker);
            margin-bottom: 0.25rem;
        }

        .not-sure-content p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }

        .btn-small {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        @media (max-width: 600px) {
            .not-sure-box {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Subscriptions Grid */
        .subscriptions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            max-width: 900px;
            margin: 2rem auto;
        }

        .subscription-item {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.25rem;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-light);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .sub-icon {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .sub-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
        }

        .sub-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--darker);
        }

        .sub-detail {
            font-size: 0.7rem;
            color: var(--gray);
        }

        .subscriptions-total {
            text-align: center;
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .subscriptions-total strong {
            color: #dc2626;
            font-size: 1.25rem;
        }

        /* ROI Comparison */
        .roi-comparison {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto 2rem;
        }

        .roi-card-large {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            flex: 1;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .roi-card-large.bad {
            border: 2px solid var(--gray-light);
        }

        .roi-card-large.good {
            border: 2px solid var(--secondary);
        }

        .roi-badge-large {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .roi-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .roi-icon-large {
            font-size: 2rem;
        }

        .roi-header h4 {
            font-size: 1.25rem;
            color: var(--darker);
            margin: 0;
        }

        .roi-costs {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .cost-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-light);
            font-size: 0.9rem;
        }

        .cost-row.highlight-bad {
            border-bottom: none;
            background: var(--accent-danger-bg);
            margin: 0.5rem -1rem -0.5rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            color: #dc2626;
        }

        .roi-price-large {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            text-align: center;
            margin: 1rem 0 0.5rem;
        }

        .roi-hardware {
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .roi-payback {
            background: var(--light);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .payback-label {
            display: block;
            font-size: 0.75rem;
            color: var(--gray);
        }

        .payback-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .roi-savings-large {
            text-align: center;
            font-size: 0.95rem;
            color: var(--secondary);
        }

        .roi-note-card {
            text-align: center;
            font-size: 0.8rem;
            color: var(--gray);
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-light);
        }

        .roi-note-card.good {
            color: var(--secondary);
        }

        .roi-vs {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray);
            flex-shrink: 0;
        }

        /* 5-Year Summary */
        .five-year-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            flex-wrap: wrap;
        }

        .summary-item {
            text-align: center;
        }

        .summary-item.result {
            background: var(--accent-success-gradient);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: -0.5rem;
        }

        .summary-label {
            display: block;
            font-size: 0.75rem;
            color: var(--gray);
            margin-bottom: 0.25rem;
        }

        .summary-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .summary-value.bad {
            color: #dc2626;
        }

        .summary-value.good {
            color: var(--secondary);
        }

        .summary-value.highlight {
            color: #166534;
            font-size: 1.75rem;
        }

        .summary-divider {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--gray);
        }

        /* What you get */
        .what-you-get {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .what-you-get h4 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--darker);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .comparison-note {
            text-align: center;
            font-size: 0.85rem;
            color: #b45309;
            margin-top: 2rem;
        }

        .comparison-intro {
            text-align: center;
            margin-bottom: 1rem;
        }

        .comparison-intro h3 {
            font-size: 1.5rem;
            color: var(--darker);
            margin-bottom: 0.5rem;
        }

        .comparison-intro p {
            color: var(--gray);
        }

        @media (max-width: 768px) {
            .subscriptions-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .roi-comparison {
                flex-direction: column;
            }

            .roi-vs {
                transform: rotate(90deg);
            }

            .five-year-summary {
                flex-direction: column;
                gap: 1rem;
            }

            .summary-divider {
                display: none;
            }

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

/* === Section 5 === */
/* Included Cards */
        .included-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .included-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid var(--gray-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        .included-card.highlight {
            background: rgba(16, 185, 129, 0.1);
            border-color: var(--secondary);
        }

        .included-card-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .included-card h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--darker);
        }

        .included-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .included-card li {
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding: 0.4rem 0;
            padding-left: 1.25rem;
            position: relative;
        }

        .included-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: 700;
        }

        .included-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: var(--card-bg);
            border: 1px solid var(--gray-light);
            border-radius: 12px;
            padding: 1.25rem 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .guarantee-icon {
            font-size: 2rem;
        }

        .guarantee-text strong {
            display: block;
            color: var(--darker);
            margin-bottom: 0.25rem;
        }

        .guarantee-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
        }

        @media (max-width: 1024px) {
            .included-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .included-cards {
                grid-template-columns: 1fr;
            }

            .included-guarantee {
                flex-direction: column;
                text-align: center;
            }
        }

/* === Section 6 === */
/* About Section */
        .about {
            padding: 5rem 2rem;
            background: var(--bg-primary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 3rem;
            max-width: 900px;
            margin: 0 auto;
            align-items: center;
        }

        .photo-real {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
            margin: 0 auto;
            display: block;
        }

        .about-content h2 {
            font-size: 2rem;
            color: var(--darker);
            margin-bottom: 0.5rem;
        }

        .about-lead {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .about-lead a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .about-lead a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-light);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--darker);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray);
        }

        @media (max-width: 700px) {
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

/* === Section 7 === */
/* FAQ Section */
        .faq {
            padding: 5rem 2rem;
            background: var(--light);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid var(--gray-light);
        }

        .faq-item h3 {
            font-size: 1rem;
            color: var(--darker);
            margin-bottom: 0.75rem;
        }

        .faq-item p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 700px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

/* === Privacy Page === */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.privacy-container header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-container h1 {
    font-size: 2.5rem;
    color: var(--darker);
    margin-bottom: 0.5rem;
}

.privacy-container .last-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-container h2 {
    font-size: 1.5rem;
    color: var(--darker);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-container p {
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.7;
}

.privacy-container ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-container li {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.privacy-container a {
    color: var(--primary);
}

.privacy-container .back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.privacy-container .back-link:hover {
    background: var(--primary-dark);
}

.privacy-container footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .privacy-container h1 {
        font-size: 2rem;
    }
    .privacy-container {
        padding: 1rem;
    }
}

/* === 404 Error Page === */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--darker);
    margin-bottom: 0.5rem;
}

.error-message {
    color: var(--gray);
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .error-page h1 {
        font-size: 5rem;
    }
    .error-title {
        font-size: 1.25rem;
    }
}

