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

body {
    font-family: 'Roboto', sans-serif;
    background: #EAEAEA;
    color: #3D3D3D;
    position: relative;
    overflow: hidden;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Background decorations */
body::before {
    content: '';
    position: fixed;
    width: 1800px;
    height: 1800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 151, 255, 0.5) 0%, rgba(136, 151, 255, 0.25) 30%, rgba(136, 151, 255, 0.08) 50%, transparent 70%);
    top: -900px;
    left: -700px;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
}

body::after {
    content: '';
    position: fixed;
    width: 1600px;
    height: 1600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 151, 255, 0.45) 0%, rgba(113, 130, 249, 0.22) 30%, rgba(136, 151, 255, 0.08) 50%, transparent 70%);
    top: 25%;
    right: -700px;
    transform: translateY(-50%) rotate(-18deg);
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    mix-blend-mode: screen;
}

/* Additional background gradients */
.hero::before {
    content: '';
    position: absolute;
    width: 1400px;
    height: 1400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 151, 255, 0.35) 0%, rgba(136, 151, 255, 0.15) 35%, rgba(136, 151, 255, 0.05) 55%, transparent 70%);
    top: -400px;
    right: -500px;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
    mix-blend-mode: screen;
}

.steps::before {
    content: '';
    position: absolute;
    width: 1600px;
    height: 1600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 151, 255, 0.4) 0%, rgba(113, 130, 249, 0.2) 25%, rgba(136, 151, 255, 0.08) 50%, transparent 70%);
    top: -600px;
    left: -600px;
    pointer-events: none;
    z-index: 0;
    filter: blur(130px);
    mix-blend-mode: screen;
}

.trust::after {
    content: '';
    position: absolute;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 151, 255, 0.38) 0%, rgba(113, 130, 249, 0.18) 30%, rgba(136, 151, 255, 0.06) 55%, transparent 70%);
    bottom: -600px;
    right: -500px;
    pointer-events: none;
    z-index: 0;
    filter: blur(110px);
    mix-blend-mode: screen;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 1700px;
    height: 1700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(113, 130, 249, 0.35) 0%, rgba(136, 151, 255, 0.16) 30%, rgba(136, 151, 255, 0.06) 55%, transparent 70%);
    top: 50%;
    left: -700px;
    transform: translateY(-50%) rotate(106deg);
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    mix-blend-mode: overlay;
}

/* Removed .cta::after to prevent extra space at bottom */

section {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 56px;
}

.container-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-image {
    width: 280px;
    height: 356px;
    border-radius: 64px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-box {
    background: transparent;
    border-radius: 32px;
    padding: 40px 32px;
    border: 2px solid #3D3D3D;
}

.hero-box h1 {
    font-size: 29px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #3D3D3D;
}

.btn-primary {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(90deg, #FF713D 0%, #930096 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 42px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 113, 61, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #3D3D3D;
}

.feature-icon {
    color: #3D3D3D;
}

.hero-rating {
    background: linear-gradient(90deg, #FF9A56 0%, #FF6B6B 50%, #FF5252 100%);
    border-radius: 42px;
    padding: 28px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.rating-star-bg {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 160px;
    height: 160px;
    z-index: 0;
    object-fit: contain;
}

.rating-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.star-icon {
    width: 32px;
    height: 32px;
}

.star-half-wrapper {
    display: inline-block;
    width: 16px;
    height: 32px;
    overflow: hidden;
    position: relative;
}

.star-half-wrapper .star-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.rating-num {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    color: white;
}

.rating-content p {
    font-size: 14px;
    line-height: 1.4;
    max-width: 100%;
}

/* Steps Section */
.steps {
    padding: 56px;
}

.container-steps {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 32px;
    padding: 40px;
    border: 2px solid #3D3D3D;
}

.steps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 42px;
    gap: 40px;
}

.steps-header h2 {
    font-size: 32px;
    font-weight: 600;
    max-width: 380px;
    line-height: 1.2;
    color: #3D3D3D;
}

.steps-header p {
    font-size: 14px;
    color: #3D3D3D;
    max-width: 320px;
    text-align: right;
    line-height: 1.3;
}

.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    border-radius: 32px;
    padding: 26px;
    min-height: 284px;
    display: flex;
    flex-direction: column;
}

.step-white {
    background: white;
    border: 2px solid #7182F9;
}

.step-blue {
    background: linear-gradient(135deg, #8897FF 0%, #7182F9 100%);
    color: white;
}

.step-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-top h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.step-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-blue {
    background: #7182F9;
}

.icon-orange {
    background: #FF9800;
}

.step-card p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-img {
    width: 100%;
    height: 125px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-top: auto;
}

.step-img img,
.step-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Trust Section */
.trust {
    padding: 56px;
}

.container-trust {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.container-trust h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #3D3D3D;
}

.trust-subtitle {
    font-size: 14px;
    color: #3D3D3D;
    margin-bottom: 40px;
}

.trust-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    max-width: 1140px;
    margin: 0 auto 28px;
    position: relative;
    width: fit-content;
}

.trust-cards-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.trust-card {
    background: #8897FF;
    color: white;
    padding: 35px 31px;
    border-radius: 43px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    border: 2px solid #8897FF;
    position: relative;
    flex: 0 0 auto;
    width: 350px;
    height: 145px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.trust-card:nth-child(2) {
    background: linear-gradient(-30deg, #8897FF 36%, #7182F9 137%);
}

.trust-card:nth-child(4) {
    background: linear-gradient(117deg, #8897FF 36%, #7182F9 132%);
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 330px;
    max-width: 100%;
    margin: 0 auto;
}

.trust-icon {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

/* Gallery Section */
.gallery {
    padding: 56px;
}

.container-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    background: transparent;
    border: 2px solid #3D3D3D;
    border-radius: 0 32px 32px 0;
    padding: 26px 32px 26px 62px;
    margin-bottom: 40px;
    margin-left: -56px;
    max-width: 498px;
}

.gallery-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #3D3D3D;
}

.gallery-header p {
    font-size: 14px;
    color: #3D3D3D;
    line-height: 1.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 316px 316px 316px;
    gap: 16px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 313px;
}

.gallery-tall {
    height: 313px;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF713D;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 32px;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.5;
    text-align: center;
    z-index: 10;
}

/* CTA Section */
.cta {
    padding: 56px;
}

.container-cta {
    max-width: 968px;
    margin: 0 auto;
    text-align: center;
}

.container-cta h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.2;
    color: #3D3D3D;
}

.container-cta p {
    font-size: 14px;
    color: #3D3D3D;
    margin-bottom: 14px;
}

.container-cta .btn-primary {
    max-width: 343px;
    margin: 0 auto 8px;
}

.cta-note {
    font-size: 13px !important;
    color: #3D3D3D !important;
}

/* Stats Section */
.stats {
    padding: 0 56px 40px;
}

.container-stats {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 95px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    width: fit-content;
}

.stats-cards-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.stat-card {
    color: white;
    padding: 32px 28px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    flex: 0 0 auto;
    height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.stat-gradient-1 {
    background: linear-gradient(-30deg, #8897FF 36%, #7182F9 137%);
    width: 340px;
}

.stat-gradient-2 {
    background: #8897FF;
    width: 230px;
}

.stat-gradient-3 {
    background: linear-gradient(65deg, #8897FF 48%, #7182F9 110%);
    width: 340px;
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1400px) {
    .hero,
    .steps,
    .trust,
    .gallery,
    .cta,
    .stats {
        padding-left: 40px;
        padding-right: 40px;
    }

    .gallery-header {
        margin-left: -40px;
    }
}

@media (max-width: 1200px) {
    .container-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-rating {
        max-width: 600px;
        margin: 0 auto;
    }

    .steps-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-header p {
        text-align: left;
        margin-top: 12px;
    }

    .steps-cards {
        grid-template-columns: 1fr;
    }

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

    .gallery-item,
    .gallery-tall {
        height: 400px;
        grid-row: span 1;
    }

    .trust-cards,
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-cards::before,
    .trust-cards::after,
    .stats-cards::before,
    .stats-cards::after {
        display: none;
    }

    .trust-icons {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero,
    .steps,
    .trust,
    .gallery,
    .cta,
    .stats {
        padding: 30px 20px;
    }

    .container-steps {
        padding: 30px 20px;
    }

    .steps-header h2,
    .container-trust h2,
    .gallery-header h2,
    .container-cta h2 {
        font-size: 24px;
    }

    .hero-box h1 {
        font-size: 22px;
    }

    .stat-num {
        font-size: 36px;
    }

    .gallery-header {
        margin-left: -20px;
        padding-left: 40px;
    }

    .trust-icons svg {
        width: 80px;
        height: 80px;
    }
}
