:root {
    --purple: #6C5CE7;
    --dark: #0A0A0B;
    --soft-gray: #F4F7FA;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-body: #FDFDFD;
    --soft-purple: #f3f0ff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    background-color: var(--bg-body);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero-section {
    background: var(--dark);
    color: white;
    padding: 100px 0 140px 0;
    border-radius: 0 0 80px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--purple);
    filter: blur(150px);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
}

.main-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    margin-top: -80px;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.policy-item {
    padding: 30px;
    border-radius: 25px;
    transition: var(--transition);
    height: 100%;
    background: #fff;
    border: 1px solid #f8f9fa;
}

.policy-item:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.1);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--soft-purple);
    color: var(--purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.policy-item:hover .icon-wrap {
    background: var(--purple);
    color: white;
    transform: rotate(10deg);
}

h4 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.content-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 0;
}

.footer-cta {
    background: var(--dark);
    border-radius: 30px;
    padding: 50px;
    color: white;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--purple);
    filter: blur(80px);
    opacity: 0.4;
}

.btn-main {
    background: var(--purple);
    color: white;
    padding: 14px 35px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    position: relative;
    z-index: 1;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
    color: white;
}

.intro-alert {
    background: var(--soft-purple);
    border: none;
    border-radius: 20px;
    padding: 25px;
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-card {
        padding: 30px 20px;
        margin-top: -60px;
    }

    .hero-section {
        padding: 80px 0 120px 0;
    }

    section.hero-section {
        border-radius: 0;
    }

    .main-card {
        box-shadow: none;
        border: navajowhite;
    }

    main.container {
        padding: 0;
    }

    body {
        background: white;
    }

    .footer-cta {
        padding: 25px;
    }

    .main-card {
        border: none;
        box-shadow: none !important;
    }
}