/* ── Hero Section ── */
    .hero-section {
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        padding: 6rem 2rem 4rem;
        text-align: center;
    }

    .hero-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        color: #666666;
        margin-bottom: 2rem;
    }

    /* ── Quick Info Banner ── */
    .quick-info {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        padding: 2rem;
        border-radius: 16px;
        margin: -2rem auto 4rem;
        max-width: 800px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .quick-info-item {
        text-align: center;
    }

    .quick-info-item__icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .quick-info-item__title {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .quick-info-item__text {
        font-size: 0.9375rem;
        opacity: 0.95;
    }

    /* ── Content Section ── */
    .content-section {
        padding: 4rem 2rem 6rem;
        background: #FFFFFF;
    }

    .content-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .info-card {
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        border: 2px solid #F0F0F0;
        border-radius: 16px;
        padding: 2.5rem;
        margin-bottom: 2rem;
    }

    .info-card__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 2px solid #F0F0F0;
    }

    .info-card__icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        flex-shrink: 0;
    }

    .info-card__title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1A1A1A;
        margin: 0;
    }

    .info-card__content {
        color: #666666;
        line-height: 1.8;
    }

    .info-card__content h3 {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1A1A1A;
        margin: 1.5rem 0 0.75rem 0;
    }

    .info-card__content h3:first-child {
        margin-top: 0;
    }

    .info-card__content p {
        margin: 0.75rem 0;
    }

    .info-card__content a {
        color: #D08FA8;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .info-card__content a:hover {
        color: #B5708A;
        text-decoration: underline;
    }

    .info-card__content strong {
        color: #1A1A1A;
        font-weight: 600;
    }

    .info-list {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .info-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

    .info-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #D08FA8;
        font-weight: 700;
        font-size: 1.25rem;
    }

    .highlight-box {
        background: rgba(208, 143, 168, 0.05);
        border-left: 4px solid #D08FA8;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 1.5rem 0;
    }

    .highlight-box__title {
        font-size: 1rem;
        font-weight: 700;
        color: #1A1A1A;
        margin: 0 0 0.75rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .highlight-box__text {
        font-size: 0.9375rem;
        color: #666666;
        line-height: 1.7;
        margin: 0;
    }

    .highlight-box--warning {
        background: rgba(255, 152, 0, 0.05);
        border-left-color: #FF9800;
    }

    .highlight-box--warning .highlight-box__title {
        color: #FF9800;
    }

    .highlight-box--success {
        background: rgba(76, 175, 80, 0.05);
        border-left-color: #4CAF50;
    }

    .highlight-box--success .highlight-box__title {
        color: #4CAF50;
    }

    /* ── Steps Timeline ── */
    .steps-timeline {
        position: relative;
        padding: 2rem 0;
    }

    .steps-timeline::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #D08FA8 0%, rgba(208, 143, 168, 0.2) 100%);
    }

    .step-item {
        position: relative;
        padding-left: 4rem;
        margin-bottom: 2rem;
    }

    .step-item:last-child {
        margin-bottom: 0;
    }

    .step-item__number {
        position: absolute;
        left: 0;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 1.25rem;
        font-weight: 800;
        box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
        z-index: 1;
    }

    .step-item__content {
        background: #FFFFFF;
        border: 2px solid #F0F0F0;
        border-radius: 12px;
        padding: 1.5rem;
    }

    .step-item__title {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.5rem;
    }

    .step-item__text {
        font-size: 0.9375rem;
        color: #666666;
        line-height: 1.7;
    }

    /* ── Form Template ── */
    .form-template {
        background: #F9F9F9;
        border: 2px dashed #D08FA8;
        border-radius: 12px;
        padding: 2rem;
        margin: 2rem 0;
        font-family: 'Courier New', monospace;
        font-size: 0.875rem;
        line-height: 1.8;
    }

    .form-template__title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #D08FA8;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .form-template__field {
        border-bottom: 1px solid #D08FA8;
        display: inline-block;
        min-width: 200px;
        padding: 0 0.5rem;
    }

    .download-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.5rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .download-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
    }

    /* ── Contact Box ── */
    .contact-box {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        margin: 3rem 0;
    }

    .contact-box__title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .contact-box__text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }

    .contact-box__methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-method {
        background: rgba(255, 255, 255, 0.2);
        padding: 1rem;
        border-radius: 8px;
        text-decoration: none;
        color: #FFFFFF;
        transition: all 0.3s ease;
    }

    .contact-method:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .contact-method__icon {
        width: 32px;
        height: 32px;
        margin: 0 auto 0.5rem;
    }

    .contact-method__text {
        font-size: 0.875rem;
        font-weight: 600;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.25rem;
        }

        .quick-info {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .info-card {
            padding: 1.75rem;
        }

        .steps-timeline::before {
            left: 16px;
        }

        .step-item {
            padding-left: 3rem;
        }

        .step-item__number {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .contact-box__methods {
            grid-template-columns: 1fr;
        }
    }