﻿        body {
        line-height: 1.6;
        color: #333;
    }

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

    /* ── HERO ── */
    .hero {
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
        color: white;
        padding: 80px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .hero .tagline {
        color: #fff;
        font-size: 1.3em;
        margin-bottom: 40px;
        opacity: .95;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-primary {
    background: white;
    color: #2563eb;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform .2s, box-shadow .2s;
    display: inline-block;
}

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

.cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid white;
    transition: background .2s;
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(255,255,255,.1);
}

                        .button-group {
                        display: flex;
                        gap: 1rem;
                        justify-content: center;
                        flex-wrap: wrap;
                }

                .btn {
                        padding: 0.875rem 2rem;
                        font-size: 1rem;
                        font-weight: 600;
                        border: none;
                        border-radius: 6px;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        text-decoration: none;
                        display: inline-block;
                        min-width: 150px;
                }

                .btn-primary {
                        background: #667eea;
                        color: white;
                }

                .btn-primary:hover {
                        background: #5568d3;
                        transform: translateY(-2px);
                        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
                }

                .btn-secondary {
                        background: #f8f9fa;
                        color: #333;
                        border: 2px solid #dee2e6;
                }

                .btn-secondary:hover {
                        background: #e9ecef;
                        transform: translateY(-2px);
                        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                }

    /* ── SECTIONS ── */
    .what-it-is {
        padding: 60px 20px;
        background: white;
    }

    .what-it-is h2 {
        text-align: center;
        font-size: 2.2em;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .how-it-works {
        padding: 60px 20px;
        background: #f8f9fa;
    }

    .how-it-works h2 {
        text-align: center;
        font-size: 2.2em;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    /* ── FEATURES GRID ── */
    .features {
        padding: 60px 20px;
        background: white;
    }

    .features h2 {
        text-align: center;
        font-size: 2.2em;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .feature {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 10px;
    }

    .feature h3 {
        color: #2563eb;
        margin-bottom: 15px;
        font-size: 1.1em;
    }

    .feature p {
        color: #333;
        line-height: 1.6;
        font-size: 0.95em;
    }

    /* ── TOOLBOX ── */
    .toolbox-section {
        padding: 60px 20px;
        background: #f8f9fa;
    }

    .toolbox-section h2 {
        text-align: center;
        font-size: 2.2em;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .toolbox-section .intro {
        text-align: center;
        font-size: 1.1em;
        color: #333;
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .tools-list {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .tool-item {
        background: white;
        border-bottom: 1px solid #e2e8f0;
        padding: 22px 28px;
        display: flex;
        align-items: flex-start;
        gap: 18px;
        transition: background .2s;
    }

    .tool-item:first-child { border-radius: 10px 10px 0 0; }
    .tool-item:last-child  { border-radius: 0 0 10px 10px; border-bottom: none; }

    .tool-item:hover { background: #f0f4ff; }

    .tool-icon {
        font-size: 1.5em;
        width: 40px;
        text-align: center;
        flex-shrink: 0;
        padding-top: 2px;
    }

    .tool-body h4 {
        color: #2c3e50;
        margin-bottom: 5px;
        font-size: 1.05em;
    }

    .tool-body p {
        color: #555;
        line-height: 1.5;
        font-size: 0.92em;
        margin: 0;
    }

    /* ── PRICING STRIP ── */
    .trial-cta {
        padding: 80px 20px;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
        color: #fff;
        text-align: center;
    }

    .trial-cta h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .trial-cta p {
        color: #fff;
        font-size: 1.2em;
        margin-bottom: 40px;
        opacity: .95;
    }

    @media (max-width: 768px) {
        .hero h1 { font-size: 2em; }
        .hero, .trial-cta { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
        .features-grid { grid-template-columns: 1fr; }
        .cta-buttons { flex-direction: column; }
        .tool-item { flex-direction: column; gap: 8px; }
    }

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