*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --background: #fbf7ff;
    --foreground: #120f1f;
    --muted: #6f6b7f;
    --card: #ffffff;
    --border: rgba(18, 15, 31, 0.08);
    --primary: #b248f2;
    --primary-dark: #8a2ad6;
    --accent: #6f7cf5;
    --accent-soft: rgba(111, 124, 245, 0.1);
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 15px 45px rgba(40, 7, 94, 0.12);
    --shadow-card: 0 25px 70px rgba(28, 7, 74, 0.08);
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --transition: 0.35s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}

.section-block {
    position: relative;
    padding: clamp(64px, 10vw, 120px) 0;
    overflow: hidden;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(178, 72, 242, 0.15);
}

.glass-chip {
    backdrop-filter: blur(20px);
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.gradient-text {
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head {
    text-align: center;
    margin: 0 auto clamp(48px, 6vw, 64px);
    max-width: 720px;
}

.section-head h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 16px 0 12px;
}

.section-head p {
    color: var(--muted);
    font-size: 16px;
}

.lead {
    font-size: 20px;
    color: var(--muted);
    margin: 20px auto 32px;
    max-width: 720px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    transition: var(--transition);
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.btn.is-pressed {
    transform: scale(0.97);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 20px 40px rgba(133, 61, 226, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 50px rgba(133, 61, 226, 0.45);
}

.btn-secondary {
    color: var(--foreground);
    border-color: rgba(18, 15, 31, 0.15);
    background: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 40px rgba(20, 20, 20, 0.08);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.cta-group .btn {
    font-size: 18px;
}
.hero-section {
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 60%);
}

.benefits-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 247, 255, 0.95));
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 18px;
}

.hero-glow {
    position: absolute;
    pointer-events: none;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.hero-glow-one {
    background: rgba(178, 72, 242, 0.35);
    top: -120px;
    right: 10%;
}

.hero-glow-two {
    background: rgba(111, 124, 245, 0.35);
    bottom: -140px;
    left: 5%;
}

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

.stat-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 12px 8px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card p {
    color: var(--muted);
    font-weight: 600;
    font-size: 16px;
}

.benefits-swiper {
    position: relative;
    margin-top: clamp(32px, 4vw, 48px);
    overflow: hidden;
}

.benefit-card,
.solution-card,
.step-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: none;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover,
.solution-card:hover,
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(18, 15, 31, 0.08);
}

.icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 20px;
}
.benefits-section .icon-ring .iconfont {
    font-size: 28px;
}

.icon-ring.ring-animate {
    transform: rotate(3deg) scale(1.08);
    box-shadow: 0 20px 45px rgba(111, 124, 245, 0.35);
}

.icon-ring.small {
    width: 52px;
    height: 52px;
    font-size: 16px;
    margin-bottom: 0;
}

.benefit-card h3,
.solution-card h3,
.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p,
.solution-card p,
.step-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 25px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.steps-section {
    background: linear-gradient(180deg, rgba(249, 244, 255, 0.8), rgba(244, 248, 255, 0.6));
}

.steps-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 124, 245, 0.35), transparent 60%);
    border-radius: 50%;
    filter: blur(120px);
    top: 20%;
    left: 55%;
    pointer-events: none;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 80px;
}

.step-card {
    position: relative;
    padding: clamp(24px, 3vw, 32px) clamp(20px, 3vw, 36px) clamp(24px, 3vw, 32px) 120px;
    min-height: 160px;
}

.step-card::before {
    content: "";
    position: absolute;
    left: 56px;
    top: 84px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(180deg, rgba(178, 72, 242, 0.45), rgba(255, 255, 255, 0));
    border-radius: 999px;
    opacity: 0.6;
}

.step-card:last-child::before {
    display: none;
}

.step-badge {
    position: absolute;
    left: 32px;
    top: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(178, 72, 242, 0.12);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 16px;
    box-shadow: inset 0 0 0 1px rgba(178, 72, 242, 0.35);
}

.step-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.cta-panel {
    margin-top: clamp(48px, 6vw, 64px);
    padding: clamp(32px, 4vw, 40px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(178, 72, 242, 0.1), rgba(111, 124, 245, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.cta-panel p {
    font-size: 16px;
    margin-bottom: 18px;
}

.cta-center {
    text-align: center;
    margin-top: clamp(32px, 4vw, 48px);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(18, 15, 31, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 26px;
    border-radius: 999px;
}

.benefits-swiper .swiper-slide {
    height: auto;
    padding: 4px;
}

.benefits-swiper .swiper-wrapper {
    padding-bottom: 32px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .benefits-swiper {
        padding: 0;
        background: transparent;
        overflow: visible;
    }

    .benefits-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        padding-bottom: 0;
    }

    .benefits-swiper .swiper-slide {
        width: 100% !important;
        padding: 0;
    }

    .benefits-pagination {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 16px;
    }

    .stat-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        padding-left: 0;
        align-items: center;
    }

    .step-card {
        padding: clamp(24px, 3vw, 32px);
        min-height: auto;
        max-width: 520px;
    }

    .step-card::before {
        display: none;
    }

    .step-badge {
        position: static;
        margin: 0 auto 16px;
    }

    .step-meta {
        flex-direction: column;
        text-align: center;
    }

    .step-meta .icon-ring {
        margin-bottom: 12px;
    }
}

@media (max-width: 1023px) {
    .benefits-swiper {
        padding: 0 8px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 255, 0.96));
    }

    .benefit-card {
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.9);
    }
}
.solutions-section .solution-card .icon-ring .iconfont {
    font-size: 28px;
}

