/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #7d5daa;
    --purple-dark: #5c3d8f;
    --purple-light: #9b7ec8;
    --purple-glow: rgba(125, 93, 170, 0.35);
    --black: #000000;
    --black-soft: #0a0a0a;
    --green: #0bbf43;
    --green-dark: #099e37;
    --green-light: #10d94d;
    --green-glow: rgba(11, 191, 67, 0.4);
    --white: #ffffff;
    --white-soft: #f0edf5;
    --gray-light: rgba(255, 255, 255, 0.06);
    --gray-border: rgba(255, 255, 255, 0.1);
    --text-muted: rgba(255, 255, 255, 0.7);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* ===== BACKGROUND PARTICLES ===== */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ===== CONTAINER ===== */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 40px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== SUCCESS ICON ===== */
.success-icon-wrapper {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.success-icon {
    width: 90px;
    height: 90px;
    position: relative;
}

.checkmark-svg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--green);
    stroke-miterlimit: 10;
    filter: drop-shadow(0 0 20px var(--green-glow));
    animation: scaleIn 0.5s ease-in-out 0.3s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--green);
    fill: none;
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: var(--green);
    animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
}

@keyframes strokeCircle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HEADING ===== */
.heading-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--purple-light) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple-glow);
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--purple));
    border-radius: 2px;
}

/* ===== INFO CARD ===== */
.info-card {
    width: 100%;
    background: linear-gradient(145deg, rgba(125, 93, 170, 0.12) 0%, rgba(125, 93, 170, 0.05) 100%);
    border: 1px solid rgba(125, 93, 170, 0.25);
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    justify-content: center;
}

.info-card-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.info-icon {
    font-size: 1.4rem;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===== STEPS ===== */
.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(125, 93, 170, 0.1);
    border-color: rgba(125, 93, 170, 0.3);
    transform: translateX(4px);
}

.step-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(125, 93, 170, 0.3);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 2px;
}

.step p strong {
    color: var(--white);
    font-weight: 600;
}

/* ===== STEP CONTENT WRAPPER ===== */
.step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* ===== MINI WHATSAPP BUTTON ===== */
.whatsapp-btn-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--green-glow);
    align-self: flex-start;
    animation: pulse-glow 2.5s ease-in-out 2s infinite;
}

.whatsapp-btn-mini:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(11, 191, 67, 0.5);
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
}

.whatsapp-btn-mini:active {
    transform: translateY(0) scale(0.98);
}

/* ===== WHATSAPP BUTTON INSIDE CARD ===== */
.whatsapp-btn-inside {
    margin: 6px 0;
    width: 100%;
    max-width: 100%;
}

/* ===== WARNING CARD ===== */
.warning-card {
    width: 100%;
    background: linear-gradient(145deg, rgba(125, 93, 170, 0.08) 0%, rgba(11, 191, 67, 0.05) 100%);
    border: 1px solid rgba(125, 93, 170, 0.2);
    border-left: 4px solid var(--purple);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 36px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.warning-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.warning-card p strong {
    color: var(--white);
    font-weight: 600;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 420px;
    padding: 20px 36px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 6px 25px var(--green-glow),
        0 0 60px rgba(11, 191, 67, 0.15);
    animation: fadeInUp 0.8s ease-out 0.9s both, pulse-glow 2.5s ease-in-out 2s infinite;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 35px var(--green-glow),
        0 0 80px rgba(11, 191, 67, 0.25);
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(0.99);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 6px 25px var(--green-glow),
            0 0 60px rgba(11, 191, 67, 0.15);
    }

    50% {
        box-shadow:
            0 6px 35px rgba(11, 191, 67, 0.55),
            0 0 80px rgba(11, 191, 67, 0.3);
    }
}

.whatsapp-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn-text {
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer-note {
    margin-top: 40px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .container {
        padding: 30px 16px 40px;
    }

    .heading-main {
        font-size: 1.45rem;
    }

    .info-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .info-card-header h2 {
        font-size: 1.05rem;
    }

    .step {
        padding: 12px 14px;
        gap: 12px;
    }

    .step-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step p {
        font-size: 0.9rem;
    }

    .warning-card {
        padding: 16px 18px;
    }

    .warning-card p {
        font-size: 0.88rem;
    }

    .whatsapp-btn {
        padding: 18px 28px;
        font-size: 1.1rem;
        border-radius: 14px;
    }
}

@media (max-width: 380px) {
    .heading-main {
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        padding: 16px 20px;
        font-size: 1rem;
        gap: 10px;
    }

    .whatsapp-btn-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--purple);
    color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple);
}