:root {
    --bg: #ffffff;
    --bg-soft: #f8f9fa;
    --surface: #ffffff;
    --text: #2d3748;
    --text-muted: #718096;
    --primary: #6b1dbf;
    --border-subtle: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 100px;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    padding: 32px 20px;
    margin-bottom: 24px;
}

.logo-container a {
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo-container a:hover {
    opacity: 0.8;
}

.hero {
    text-align: center;
    padding: 48px 20px 64px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    background: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Josefin Sans", sans-serif;
    text-decoration: none;
    margin-top: 8px;
}

.hero .cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 29, 191, 0.3);
}

.section {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 48px);
    margin-bottom: 32px;
}

.section h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0 32px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
    margin: 24px 0;
}

.benefits-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefits-list li strong {
    display: block;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefits-list li p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

.numbered-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 24px 0;
}

.numbered-list li {
    counter-increment: step-counter;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 16px;
    color: var(--text-muted);
}

.numbered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.key-point {
    background: var(--bg-soft);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.key-point h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.key-point p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    padding: 48px 20px;
    margin-top: 48px;
}

.final-cta h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.final-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    background: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Josefin Sans", sans-serif;
    text-decoration: none;
}

.final-cta .cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 29, 191, 0.3);
}

@media (max-width: 768px) {
    body {
        padding: 16px;
        padding-bottom: 150px;
    }

    .logo-container {
        padding: 24px 16px;
    }

    .hero {
        padding: 32px 16px 48px;
        padding-bottom: 80px;
    }

    .hero .cta-button {
        margin-bottom: 40px;
        display: block !important;
        visibility: visible !important;
    }

    .section {
        padding: 24px 20px;
    }

    .key-points {
        grid-template-columns: 1fr;
    }

    .numbered-list li {
        padding-left: 44px;
    }

    .numbered-list li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
}
