/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 65px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logo-image:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.btn-join-top {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-join-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
}

/* Trustpilot & Live Section */
.trustpilot-live-section {
    padding: 25px 0;
    text-align: center;
}

.trustpilot-live-container {
    max-width: 600px;
    margin: 0 auto;
}

.trustpilot-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trustpilot-rating-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInSlide 0.8s ease-out 0.2s forwards;
}

.trustpilot-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trustpilot-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.trustpilot-logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.stars-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    color: #00b67a;
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    animation: starPopIn 0.6s ease-out forwards;
}

.star:nth-child(1) {
    animation-delay: 0.3s;
}

.star:nth-child(2) {
    animation-delay: 0.4s;
}

.star:nth-child(3) {
    animation-delay: 0.5s;
}

.star:nth-child(4) {
    animation-delay: 0.6s;
}

.star:nth-child(5) {
    animation-delay: 0.7s;
}

@keyframes starPopIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

.star.filled {
    color: #00b67a;
}

.star.partial {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.star-partial-svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.rating-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.spots-available-box {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #00b67a;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    opacity: 0;
    animation: fadeInSlide 0.8s ease-out 0.5s forwards;
}

.live-badge-box {
    margin-bottom: 4px;
}

.live-text-box {
    background: #00b67a;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.spots-available-inline {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 55px;
        max-width: 240px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .trustpilot-icon {
        width: 20px;
        height: 20px;
    }
    
    .trustpilot-logo {
        font-size: 18px;
    }
    
    .star {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .star-partial-svg {
        width: 20px;
        height: 20px;
    }
    
    .rating-text {
        font-size: 14px;
    }
    
    .spots-available-box {
        padding: 16px 24px;
        min-width: 240px;
    }
    
    .live-text-box {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .spots-available-inline {
        font-size: 20px;
    }
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-title .highlight {
    color: #FFD700;
    display: block;
    font-size: 72px;
}

.profit-badge {
    background: #32CD32;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
}

.profit-label {
    margin-right: 8px;
}

.profit-amount {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.features-list {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
    background: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 32px;
    min-width: 40px;
    text-align: center;
}

.gift-icon {
    color: #FFD700;
    font-size: 32px;
}

.check-icon {
    color: #32CD32;
    font-size: 32px;
    font-weight: 700;
}

.members-icon {
    color: #9B59B6;
    font-size: 32px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.accuracy-count,
.members-count {
    display: inline-block;
    color: #32CD32;
    font-weight: 800;
    min-width: 60px;
    text-align: left;
}

.feature-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    letter-spacing: 1px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.6);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #111111;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.section-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-carousel .testimonial-win-card {
    opacity: 1 !important;
    display: flex !important;
    visibility: visible !important;
}

.testimonials-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-win-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 550px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    opacity: 1 !important;
    display: flex !important;
    visibility: visible !important;
}

@keyframes winCardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.testimonial-win-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.5);
    border-color: rgba(255, 165, 0, 0.6);
    background-color: rgba(255, 255, 255, 0.08);
}


.win-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    display: block !important;
    max-height: 800px;
    min-height: 500px;
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-win-card:hover .win-image {
    transform: scale(1.05);
}

.no-images-message {
    padding: 60px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.testimonial-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.testimonial-carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.testimonial-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-carousel-prev {
    left: 20px;
}

.testimonial-carousel-next {
    right: 20px;
}

.testimonial-carousel-btn svg {
    width: 24px;
    height: 24px;
}

.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-carousel-dot:hover {
    background-color: rgba(255, 165, 0, 0.5);
    transform: scale(1.2);
}

.testimonial-carousel-dot.active {
    background-color: #FFD700;
    border-color: #FFA500;
    transform: scale(1.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 165, 0, 0.4);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: rgba(255, 165, 0, 0.7);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.testimonial-name-container {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    color: #FFD700;
    display: block;
}

.testimonial-name-full {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-subtext {
    font-size: 14px;
    color: #2ECC71;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-response {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Real Cases Section */
.real-cases-section {
    padding: 80px 0;
}

.cases-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
}

.cases-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 10px 0;
}

.case-card {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 340px;
    flex-shrink: 0;
    animation: fadeInSlide 0.6s ease-out;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.case-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 165, 0, 0.4);
    background: rgba(35, 35, 35, 0.98);
}

.case-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.case-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 26px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.case-card:hover .case-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.case-avatar-blue {
    background: #4A90E2;
}

.case-avatar-pink {
    background: #E91E63;
}

.case-avatar-green {
    background: #4CAF50;
}

.case-avatar-purple {
    background: #9C27B0;
}

.case-avatar-orange {
    background: #FF9800;
}

.case-avatar-teal {
    background: #009688;
}

.case-country-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #FFD700;
    border: 3px solid #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #0a0a0a;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.case-info {
    flex: 1;
    min-width: 0;
}

.case-name {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.case-profit {
    font-size: 22px;
    font-weight: 800;
    color: #2ECC71;
    margin-bottom: 14px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.detail-icon {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background-color: rgba(255, 165, 0, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: #FFD700;
    border-color: #FFA500;
    transform: scale(1.3);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    letter-spacing: 1px;
    margin-top: 30px;
}

.btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title .highlight {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .testimonial-win-card {
        min-width: 500px;
        padding: 18px;
    }
    
    .win-image {
        max-height: 700px;
        min-height: 450px;
    }
    
    .case-card {
        min-width: 300px;
        padding: 20px 24px;
        gap: 18px;
    }
    
    .case-avatar {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }
    
    .case-country-badge {
        width: 24px;
        height: 24px;
        font-size: 9px;
        border-width: 2.5px;
    }
    
    .case-name {
        font-size: 17px;
    }
    
    .case-profit {
        font-size: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .btn-join-top {
        width: 100%;
        text-align: center;
    }
    
    .trustpilot-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-title .highlight {
        font-size: 40px;
        display: inline;
    }
    
    .profit-badge {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .profit-amount {
        font-size: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonial-win-card {
        min-width: 100%;
        padding: 15px;
    }
    
    .win-image {
        max-height: 600px;
        min-height: 400px;
    }
    
    .testimonial-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-carousel-prev {
        left: 10px;
    }
    
    .testimonial-carousel-next {
        right: 10px;
    }
    
    .case-card {
        min-width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .case-avatar {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .case-country-badge {
        width: 22px;
        height: 22px;
        font-size: 8px;
        border-width: 2px;
    }
    
    .case-name {
        font-size: 16px;
    }
    
    .case-profit {
        font-size: 19px;
    }
    
    .case-details {
        font-size: 14px;
        align-items: center;
        gap: 8px;
    }
    
    .detail-item {
        gap: 10px;
    }
    
    .detail-icon {
        width: 14px;
        height: 14px;
        font-size: 11px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 200px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title .highlight {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .star {
        font-size: 18px;
        width: 18px;
        height: 18px;
    }
    
    .star-partial-svg {
        width: 18px;
        height: 18px;
    }
}
