:root {
    --df-indigo: #4F31FF;
    --df-magenta: #D941CD;
    --df-text: #111229;
    --df-muted: #5C5F74;
    --df-soft: #F5F6FB;
    --df-card: #FFFFFF;
    --df-border: rgba(17, 18, 41, 0.08);
}

body {
    background-color: var(--df-soft);
    color: var(--df-text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-info {
    background: radial-gradient(circle at top left, rgba(79, 49, 255, 0.85), rgba(217, 65, 205, 0.9));
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-info::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 45%);
    pointer-events: none;
}

.hero-info .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.hero-list {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-list span.badge-check {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-illustration {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.section-heading {
    max-width: 720px;
}

.section-heading p {
    color: var(--df-muted);
}

.info-card {
    background: var(--df-card);
    border-radius: 20px;
    border: 1px solid var(--df-border);
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 20px 45px rgba(17, 18, 41, 0.08);
}

.info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--df-muted);
    margin-bottom: 0;
}

.info-card .text-muted {
    font-size: 0.9rem;
}

.info-card .step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(79, 49, 255, 0.08);
    color: var(--df-indigo);
    font-weight: 600;
    margin-bottom: 1rem;
}

.reassure-panel {
    background: rgba(79, 49, 255, 0.06);
    border: 1px solid rgba(79, 49, 255, 0.18);
    border-radius: 24px;
    padding: 2rem;
}

.reassure-panel h3 {
    font-size: 1.3rem;
}

.reassure-panel ul {
    margin-bottom: 0;
    color: var(--df-muted);
}

.privacy-card {
    background: var(--df-card);
    border-radius: 20px;
    border: 1px solid var(--df-border);
    padding: 1.5rem;
    height: 100%;
}

.privacy-card strong {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--df-indigo);
    margin-bottom: 0.5rem;
}

.privacy-card p {
    color: var(--df-muted);
    margin-bottom: 0;
}

.timeline {
    border-left: 3px solid rgba(79, 49, 255, 0.2);
    padding-left: 1.5rem;
    margin-left: 0.5rem;
}

.timeline-step {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: -1.85rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--df-indigo);
    box-shadow: 0 0 0 6px rgba(79, 49, 255, 0.15);
}

.timeline-step h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-step p {
    color: var(--df-muted);
    margin-bottom: 0;
}

.cta-panel {
    background: #101223;
    color: #fff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 45%);
    pointer-events: none;
}

.cta-panel .btn {
    border-radius: 999px;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.gradient-text {
    background: linear-gradient(120deg, var(--df-indigo), var(--df-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 991px) {
    .hero-info {
        padding-top: 4rem;
        padding-bottom: 4rem;
        border-radius: 0 0 32px 32px;
    }

    .cta-panel {
        padding: 2rem;
    }
}
