.loyalty-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    background: var(--white);
}

/* Hero Section with Curved Bottom */
.loyalty-hero-curved {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    overflow: hidden;
    
}

.hero-curve-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--white-1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -20%;
    left: 32%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.shape-2 {
    width: 260px;
    height: 260px;
    top: 0%;
    right: -6%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.shape-3 {
    width: 190px;
    height: 190px;
    top: 25%;
    right: 39%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.shape-4 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
    animation-duration: 5s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.shape-6 {
    width: 130px;
    height: 130px;
    bottom: 10%;
    right: 44%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.shape-7 {
    width: 190px;
    height: 190px;
    top: 0%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.shape-8 {
    width: 160px;
    height: 160px;
    bottom: 23%;
    right: 59%;
    animation-delay: 1s;
    animation-duration: 6s;
}

/* Hero Checkboxes */
.hero-checkboxes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.checkbox-item {
    position: absolute;
    opacity: 0;
    animation: checkbox-cycle 8s ease-in-out infinite;
}

.checkbox-box {
    width: 42px;
    height: 24px;
    background: var(--white-2);
    border: 2px solid var(--white-3);
    border-radius: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.checkbox-box::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--white-9);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px var(--black-2);
}

.checkbox-box i {
    display: none;
}

.checkbox-item.checked .checkbox-box {
    background: var(--checkbox-checked-bg);
    border-color: var(--checkbox-checked-border);
    box-shadow: 0 0 12px var(--checkbox-checked-shadow);
}

.checkbox-item.checked .checkbox-box::before {
    transform: translateX(18px);
    background: var(--checkbox-knob-bg);
    box-shadow: 0 2px 8px var(--checkbox-knob-shadow);
}

/* Checkbox Positioning */
.checkbox-1 {
    top: 5%;
    left: 39%;
    animation-delay: 0s;
}

.checkbox-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.checkbox-3 {
    top: 45%;
    left: 8%;
    animation-delay: 2s;
}

.checkbox-4 {
    top: 50%;
    right: 50%;
    animation-delay: 3s;
}

.checkbox-5 {
    bottom: 10%;
    left: 29%;
    animation-delay: 4s;
}

.checkbox-6 {
    bottom: 40%;
    right: 12%;
    animation-delay: 5s;
}

.checkbox-7 {
    top: 67%;
    left: 42%;
    animation-delay: 6s;
}

.checkbox-8 {
    bottom: 22%;
    right: 40%;
    animation-delay: 7s;
}

/* Static Decorations */
.static-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Static Circles */
.static-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--white-06);
    border: 1px solid var(--white-1);
}

.static-1 {
    width: 40px;
    height: 40px;
    top: 8%;
    left: 25%;
}

.static-2 {
    width: 30px;
    height: 30px;
    top: 35%;
    left: 5%;
}

.static-3 {
    width: 50px;
    height: 50px;
    top: 73%;
    left: 128%;
}

.static-4 {
    width: 35px;
    height: 35px;
    top: 7%;
    right: 20%;
}

.static-5 {
    width: 45px;
    height: 45px;
    top: 45%;
    right: 2%;
}

.static-6 {
    width: 25px;
    height: 25px;
    bottom: 15%;
    right:27%;
}

/* Static Squares */
.static-square {
    position: absolute;
    background: var(--white-05);
    border: 1px solid var(--white-08);
    border-radius: 4px;
    transform: rotate(45deg);
}

.static-7 {
    width: 20px;
    height: 20px;
    top: 36%;
    left: 35%;
}

.static-8 {
    width: 15px;
    height: 15px;
    top: 45%;
    right: 35%;
}

.static-9 {
    width: 35px;
    height: 35px;
    bottom: 54%;
    left: 44%;
}

/* Static Triangles */
.static-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.static-10 {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--white-05);
    bottom: 14%;
    left: 38%;
}

.static-11 {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 17px solid var(--white-05);
    bottom: 8%;
    right: 30%;
}

/* Static Dots Groups */
.static-dots-group {
    position: absolute;
    display: flex;
    gap: 8px;
}

.dots-1 {
    top: 13%;
    left: 53%;
    flex-direction: column;
}

.dots-2 {
    bottom: 9%;
    right: 64%;
    flex-direction: row;
}

.static-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white-15);
}

/* Static Lines */
.static-line {
    position: absolute;
    background: var(--white-08);
    border-radius: 2px;
}

.line-1 {
    width: 60px;
    height: 2px;
    top: 30%;
    left: 8%;
    transform: rotate(25deg);
}

.line-2 {
    width: 40px;
    height: 2px;
    bottom: 17%;
    right: 34%;
    transform: rotate(-15deg);
}

.line-3 {
    width: 80px;
    height: 2px;
    bottom: 40%;
    left: 50%;
    transform: rotate(35deg);
}

/* Additional Static Elements */

/* Hexagons */
.static-hexagon {
    position: absolute;
    width: 30px;
    height: 26px;
    background: var(--white-06);
    border-radius: 4px;
    transform: rotate(30deg);
}

.static-hexagon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 8px solid var(--white-06);
}

.static-hexagon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 8px solid var(--white-06);
}

.hex-1 {
    top: 12%;
    left: 60%;
}

.hex-2 {
    bottom: 5%;
    right: 5%;
}

/* Rings */
.static-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--white-08);
    background: transparent;
}

.ring-1 {
    width: 35px;
    height: 35px;
    top: 50%;
    left: 2%;
}

.ring-2 {
    width: 28px;
    height: 28px;
    top: 18%;
    right: 35%;
}

.ring-3 {
    width: 42px;
    height: 42px;
    bottom: 20%;
    left: 6%;
}

/* Crosses */
.static-cross {
    position: absolute;
    width: 20px;
    height: 20px;
}

.static-cross::before,
.static-cross::after {
    content: '';
    position: absolute;
    background: var(--white-08);
    border-radius: 1px;
}

.static-cross::before {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.static-cross::after {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.cross-1 {
    top: 28%;
    left: 28%;
}

.cross-2 {
    bottom: 35%;
    right: 18%;
}

/* Wave Lines */
.static-wave-line {
    position: absolute;
    width: 50px;
    height: 20px;
    background: transparent;
    border-top: 2px solid var(--white-08);
    border-radius: 50px 50px 0 0;
}

.wave-1 {
    top: 38%;
    left: 55%;
    transform: rotate(15deg);
}

.wave-2 {
    bottom: 28%;
    right: 35%;
    transform: rotate(-25deg);
}

/* Grid patterns */
.static-grid {
    position: absolute;
    width: 24px;
    height: 24px;
    background: transparent;
    background-image: 
        linear-gradient(var(--white-08) 1px, transparent 1px),
        linear-gradient(90deg, var(--white-08) 1px, transparent 1px);
    background-size: 8px 8px;
}

.grid-1 {
    top: 42%;
    right: 12%;
}

.grid-2 {
    bottom: 48%;
    left: 35%;
}

/* Stars */
.static-star {
    position: absolute;
    width: 16px;
    height: 16px;
    background: transparent;
}

.static-star::before,
.static-star::after {
    content: '';
    position: absolute;
    background: var(--white-1);
    border-radius: 1px;
}

.static-star::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.static-star::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
}

.star-1 {
    top: 22%;
    left: 18%;
    transform: rotate(45deg);
}

.star-2 {
    bottom: 15%;
    right: 2%;
    transform: rotate(45deg);
}

.star-3 {
    bottom: 18%;
    left: 45%;
    transform: rotate(45deg);
}

/* Plus signs */
.static-plus {
    position: absolute;
    width: 12px;
    height: 12px;
}

.static-plus::before,
.static-plus::after {
    content: '';
    position: absolute;
    background: var(--white-2);
    border-radius: 1px;
}

.static-plus::before {
    width: 12px;
    height: 1px;
    top: 5.5px;
    left: 0;
}

.static-plus::after {
    width: 1px;
    height: 12px;
    top: 0;
    left: 5.5px;
}

.plus-1 {
    top: 39%;
    right: 22%;
}

.plus-2 {
    bottom: 42%;
    left: 10%;
}

/* Ovals */
.static-oval {
    position: absolute;
    background: var(--white-05);
    border: 1px solid var(--white-08);
    border-radius: 50%;
}

.oval-1 {
    width: 45px;
    height: 25px;
    top: 61%;
    left: 45%;
    transform: rotate(20deg);
}

.oval-2 {
    width: 35px;
    height: 20px;
    bottom: 12%;
    right: 39%;
    transform: rotate(-30deg);
}

/* Checkbox Animation */
@keyframes checkbox-cycle {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    15% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    30% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    45% {
        opacity: 1;
        transform: scale(1.1) translateY(-2px);
    }
    60% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    85% {
        opacity: 0.3;
        transform: scale(0.8) translateY(5px);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-side {
    text-align: left;
}

.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Panda Animation */
.panda-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panda-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    filter: drop-shadow(0 10px 25px var(--black-15));
    transition: all 0.3s ease;
    animation: panda-float 6s ease-in-out infinite;
    z-index: 2;
}

.panda-image:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 15px 35px var(--black-2));
}

/* Panda Floating Animation */
@keyframes panda-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Product Orbit Animation */
.product-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.product-item {
    position: absolute;
    animation: product-float 8s ease-in-out infinite;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px var(--black-15));
    border-radius: 8px;
    background: var(--white-9);
    padding: 8px;
    transition: all 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px var(--black-25));
}

/* Product positioning around panda */
.product-1 {
    top: 4%;
    left: -2%;
    width: 180px;
    height: 210px;
    animation-delay: 0s;
}

.product-2 {
    top: 10%;
    right: 2%;
    width: 190px;
    height: 190px;
    animation-delay: 2s;
}

.product-3 {
    bottom: -3%;
    right: 4%;
    width: 150px;
    height: 110px;
    animation-delay: 4s;
}

.product-4 {
    bottom: 0%;
    left: 5%;
    width: 140px;
    height: 100px;
    animation-delay: 6s;
}

/* Product floating animation */
@keyframes product-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

.hero-badge-animated {
    display: inline-block;
    background: var(--white-15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid var(--white-2);
    animation: badge-glow 3s ease-in-out infinite;
}

.badge-icon {
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title-animated {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    margin-bottom: 15px;
}
.title-line-one {
    font-size: 1.8em;
}
.title-highlight-main {
    display: inline-block;
    position: relative;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.2em;
    z-index: 1;
    padding: 0 40px;
    animation: text-float 3s ease-in-out infinite;
}

.title-highlight-main::before {
    content: '';
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom: -10px;
    background: var(--white);
    transform: skew(-8deg);
    transform-origin: left center;
    border-radius: 12px 25px 12px 25px;
    z-index: -1;
    animation: highlight-float 3s ease-in-out infinite;
}
.hero-subtitle-animated {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: subtitle-fade 4s ease-in-out infinite;
}


/* Hero Illustration */
.hero-illustration {
    width: 100%;
    height: 400px;
    position: relative;
}

.loyalty-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.bonus-coin {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-color);
    box-shadow: 0 10px 25px var(--gold-4);
    animation: coin-float 4s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    font-size: 18px;
}

.coin-2 {
    top: 50%;
    left: 60%;
    animation-delay: 1s;
    font-size: 16px;
}

.coin-3 {
    top: 70%;
    left: 30%;
    animation-delay: 2s;
    font-size: 16px;
}

.shopping-bag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--white-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    animation: bag-pulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid var(--white-3);
}

.arrow-flow {
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color) 0%, transparent 100%);
    border-radius: 2px;
}

.arrow-flow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--gold-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.arrow-1 {
    top: 35%;
    left: 35%;
    transform: rotate(-30deg);
    animation: arrow-flow-1 3s ease-in-out infinite;
}

.arrow-2 {
    top: 55%;
    left: 45%;
    transform: rotate(45deg);
    animation: arrow-flow-2 3s ease-in-out infinite 1s;
}

.arrow-3 {
    top: 65%;
    left: 25%;
    transform: rotate(60deg);
    animation: arrow-flow-3 3s ease-in-out infinite 2s;
}





/* Premium Benefits */
.benefits-modern {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    position: relative;
    overflow: hidden;
}

.section-title-modern {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}
.bonus-animated-section .section-title-modern {
    color: var(--white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card-premium {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
}

.benefit-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    transition: left 0.6s ease;
}

.benefit-card-premium:hover::before {
    left: 100%;
}

.benefit-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--accent-15);
    border-color: var(--primary-color);
}

.benefit-icon-premium {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-card-premium:hover .benefit-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-content p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.benefit-highlight {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Benefits Curve Bottom */
.benefits-curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    overflow: hidden;
}

.benefits-curve-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Decoration Animations */
@keyframes float-decoration {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotate-decoration {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Redesigned How it Works */
.how-works-redesigned {
    padding: 80px 0 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-redesigned {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 30px 20px;
    border-radius: 20px;
}

.step-redesigned:hover {
    background: linear-gradient(135deg, var(--primary-green-05) 0%, var(--secondary-green-05) 100%);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-green-15);
}

.step-circle-redesigned {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--primary-green-3);
    animation: step-glow 4s ease-in-out infinite;
    margin-bottom: 25px;
}

.step-circle-redesigned::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    animation: circle-rotate 8s linear infinite;
    opacity: 0.3;
}

.step-redesigned:hover .step-circle-redesigned {
    transform: scale(1.15);
    box-shadow: 0 15px 45px var(--primary-green-5);
    animation-duration: 2s;
}


.step-redesigned:last-child .step-connector-redesigned {
    display: none;
}

.step-content-redesigned h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.step-content-redesigned p {
    color: var(--gray-color);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* How Works Background Decoration */
.how-works-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.big-wave {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 400px;
    opacity: 0.6;
    animation: wave-flow 15s ease-in-out infinite;
}

.big-wave svg {
    width: 100%;
    height: 100%;
}

/* How Works Curve Bottom */
.how-works-curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    overflow: hidden;
}

.how-works-curve-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Wave Animation */
@keyframes wave-flow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50px) scale(1.05);
        opacity: 0.8;
    }
}

/* Animated Bonus Section */
.bonus-animated-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bonus-animated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23005a2a" opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.bonus-animated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.store-bonus-card {
    background: var(--white-05);
    border: 1px solid var(--white-1);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.store-bonus-card:hover {
    background: var(--white-08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--black-3);
}

.store-header-animated {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white-1);
}

.store-header-animated h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.store-icon {
    font-size: 32px;
    color: var(--white);
}

.bonus-items-animated {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-item-animated {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    background: var(--dark-green-1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bonus-item-animated:hover {
    background: var(--dark-green-2);
    transform: translateX(10px);
}

.bonus-visual {
    position: relative;
    flex-shrink: 0;
}

.bonus-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: bonus-glow 3s ease-in-out infinite;
    box-shadow: 0 0 20px var(--gold-5);
}

.bonus-percent-animated {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.bonus-symbol {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.bonus-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.4;
    animation: particles-rotate 4s linear infinite;
}

.bonus-particles::before,
.bonus-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-color);
    border-radius: 50%;
}

.bonus-particles::before {
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.bonus-particles::after {
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.bonus-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.bonus-label small {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.bonus-info-animated {
    background: var(--accent-1);
    border: 1px solid var(--accent-2);
    border-radius: 15px;
    padding: 20px;
    margin: 40px auto 0;
    display: flex;
    width: 70%;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.info-icon {
    color: var(--accent-color);
    font-size: 24px;
}

.bonus-info-animated p {
    margin: 0;
    opacity: 0.9;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--gold-5), 0 0 0 0 var(--gold-7);
    }
    50% {
        box-shadow: 0 0 30px var(--gold-8), 0 0 0 15px transparent;
    }
}

@keyframes particles-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--white-3);
    }
    50% {
        box-shadow: 0 0 20px var(--white-5);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}


@keyframes highlight-float {
    0%, 100% {
        transform: skew(-13deg) translateY(0);
        background: var(--yellow-light);
    }
    50% {
        transform: skew(-15deg) translateY(-1px);
        background: var(--yellow-bright);
    }
}



@keyframes subtitle-fade {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes stat-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 var(--white-4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 15px var(--white-2);
    }
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Illustration Animations */
@keyframes coin-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes bag-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 var(--white-4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 20px var(--white-3);
    }
}

@keyframes arrow-flow-1 {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(-30deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(-30deg) scale(1.2);
    }
}

@keyframes arrow-flow-2 {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(45deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }
}

@keyframes arrow-flow-3 {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(60deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(60deg) scale(1.2);
    }
}

/* Step Animations */
@keyframes step-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px var(--pink-red-3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px var(--pink-red-5);
    }
}

@keyframes step-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes line-flow {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes line-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* New Step Animations */
@keyframes step-glow {
    0%, 100% {
        box-shadow: 0 10px 30px var(--primary-green-3);
    }
    50% {
        box-shadow: 0 15px 40px var(--primary-green-5);
    }
}

@keyframes circle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes connector-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes connector-shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Bonus Glow Animation */
@keyframes bonus-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--accent-5);
    }
    50% {
        box-shadow: 0 0 30px var(--accent-8), 0 0 0 10px var(--accent-1);
    }
}

/* Bonus Table Modern */
.bonus-table-modern {
    padding: 80px 0;
    background: var(--white);
}

.table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.store-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.store-table {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.store-header {
    background: linear-gradient(135deg, var(--danger-start) 0%, var(--danger-end) 100%);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.store-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.bonus-row {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.bonus-row:last-child {
    border-bottom: none;
}

.bonus-percent-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
}

.bonus-category-name {
    color: var(--dark-color);
    font-size: 16px;
}

.bonus-note {
    background: var(--note-bg);
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
}

/* FAQ Modern */
.faq-modern {
    padding: 60px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card-modern {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 10px var(--black-05);
}

.faq-card-modern:hover {
    box-shadow: 0 5px 20px var(--black-08);
    border-color: var(--primary-color);
}

.faq-question-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-modern h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 18px;
}

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

.faq-card-modern .minus-icon {
    display: none;
}

.faq-card-modern.active .plus-icon {
    display: none;
}

.faq-card-modern.active .minus-icon {
    display: block;
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-card-modern.active .faq-answer-modern {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer-modern p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* CTA Modern */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-2) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content-modern h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content-modern p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--danger-3);
}

.btn-cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--danger-4);
    color: var(--white);
    text-decoration: none;
}

.cta-footer {
    margin-top: 30px;
}

.rules-link-modern {
    color: var(--white);
    opacity: 0.7;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.rules-link-modern:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 42px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .store-tables {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-modern {
        font-size: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content-animated > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content-animated > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content-animated > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content-animated > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content-animated > *:nth-child(4) { animation-delay: 0.4s; }

.benefit-card-modern, .step-simple, .bonus-category, .faq-card-modern {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hovered {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--danger-1);
}

/* Additional Animations */
@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.flash {
    animation: flash 0.3s ease;
}

.step-active .step-circle {
    animation: step-pulse 1s ease-in-out infinite !important;
    transform: scale(1.15);
    box-shadow: 0 15px 40px var(--pink-red-6) !important;
}

.step-active .step-number {
    animation: bounce 0.6s ease;
}

.extra-glow {
    animation: extra-glow-effect 1s ease !important;
}

@keyframes extra-glow-effect {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px var(--primary-green-3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 20px 50px var(--primary-green-7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px var(--primary-green-3);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .steps-flow {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .bonus-animated-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Panda and products responsive */
    .panda-container {
        height: 350px;
    }
    
    .panda-image {
        max-height: 280px;
    }
    
    .product-1 {
        width: 80px;
        height: 80px;
        top: 8%;
        left: 5%;
    }
    
    .product-2 {
        width: 70px;
        height: 70px;
        top: 15%;
        right: 8%;
    }
    
    .product-3 {
        width: 60px;
        height: 60px;
        bottom: 5%;
        right: 10%;
    }
    
    .product-4 {
        width: 55px;
        height: 55px;
        bottom: 8%;
        left: 12%;
    }

}

@media (max-width: 768px) {
    .loyalty-hero-curved {
        padding: 60px 0 100px;
        min-height: auto;
    }
    
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-side {
        text-align: center;
    }
    

    
    .hero-illustration {
        height: 300px;
    }
    
    .hero-title-animated {
        font-size: 28px;
    }

    .section-title-modern {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card-premium {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile panda and products */
    .panda-container {
        height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .panda-image {
        max-height: 200px;
        position: relative;
        z-index: 3;
    }
    
    .product-orbit {
        position: relative;
        width: 100%;
        height: 80px;
        margin-top: 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .product-1, .product-2, .product-3, .product-4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 60px;
        height: 60px;
    }
    
    .product-1 { order: 1; }
    .product-2 { order: 2; }
    .product-3 { order: 3; }
    .product-4 { order: 4; }
}

/* Extra small screens */
@media (max-width: 480px) {
    .loyalty-hero-curved {
        padding: 40px 0 80px;
    }
    .hero-badge-animated{
        font-size: 14px;
    }
    .hero-title-animated {
        font-size: 24px;
    }
    
    .title-highlight-main {
        font-size: 1.1em;
        padding: 5px 20px 0 20px;
    }
    
    .panda-container {
        height: 240px;
    }
    
    .panda-image {
        max-height: 160px;
    }
    
    .product-orbit {
        height: 60px;
        margin-top: 15px;
    }
    
    .product-1, .product-2, .product-3, .product-4 {
        width: 45px;
        height: 45px;
    }
    
    /* Hide some static decorations on very small screens */
    .static-hexagon,
    .static-grid,
    .static-wave-line,
    .static-oval {
        display: none;
    }
    
    .floating-shape {
        opacity: 0.5;
    }
    
    .hero-checkboxes .checkbox-item {
        opacity: 0.7;
    }
}
@media (max-width: 320px) {
    .hero-badge-animated{
        font-size: 12px;
    }
}