/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #000000;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.svg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: 2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: white;
}

/* Logo */
.logo {
    margin-bottom: 3rem;
}

.logo-img {
    height: 100px;
    width: auto;
}

/* Typography */
.hero-headline {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #E5E5E5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* VSL Section */
.vsl-section {
    text-align: center;
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
}

.vsl-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.vsl-subheadline {
    font-size: 1.25rem;
    color: #E5E5E5;
    margin-top: 30px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Enhanced Video Container */
.video-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    /* Touch-friendly improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.7);
}

/* Video Player Wrapper Styles */
.video-player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.main-video-player {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Video Thumbnail Overlay */
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero.gif') center/cover no-repeat;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-thumbnail-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    z-index: 1;
}

.play-button-overlay {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.video-thumbnail-overlay:hover .play-button-overlay {
    transform: scale(1.1);
}

.video-thumbnail-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.video-preview-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(26, 26, 26, 0.8) 40%,
        rgba(0, 0, 0, 0.9) 100%
    ),
    radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    opacity: 0.9;
}

.video-content-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4;
}

.video-duration,
.video-quality {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #E5E5E5;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.video-duration:hover,
.video-quality:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.video-duration i,
.video-quality i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.play-button-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: relative;
    z-index: 3;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.7),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
}

.play-button svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.play-button svg circle {
    fill: rgba(212, 175, 55, 0.9);
}

.play-button svg path {
    fill: #000000;
}

.play-button i {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.play-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.video-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 4;
    color: #FFFFFF;
    text-align: left;
}

.video-title-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.video-title-overlay p {
    font-size: 0.9rem;
    color: #E5E5E5;
    opacity: 0.9;
    margin: 0;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.95);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.7);
    border-color: #FFD700;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.video-thumbnail:hover .video-overlay {
    opacity: 0.3;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.2) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.video-container:hover .play-pulse {
    animation-duration: 1.5s;
}

.video-container:hover .video-title-overlay {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.video-container:hover .video-content-overlay {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: 2px solid #D4AF37;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    /* Touch-friendly improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    min-width: 120px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    border-color: #FFD700;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Floating Decorative Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

.element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0.5s;
}

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

.element-3 {
    top: 45%;
    left: 8%;
    animation-delay: 1.5s;
}

.element-4 {
    top: 60%;
    right: 12%;
    animation-delay: 2s;
}

.element-5 {
    top: 75%;
    left: 15%;
    animation-delay: 2.5s;
}

.element-6 {
    top: 80%;
    right: 20%;
    animation-delay: 3s;
}

.icon-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #D4AF37;
    border-radius: 25px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.icon-badge .icon,
.icon-badge i {
    width: 20px;
    height: 20px;
    color: #d4af37;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    font-size: 20px;
    display: inline-block;
}

.icon-badge .icon path {
    fill: #d4af37 !important;
}

.icon-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    white-space: nowrap;
}

.testimonial-snippet {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #D4AF37;
    border-radius: 15px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    max-width: 200px;
}

.testimonial-snippet .quote {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
    font-style: italic;
}

.testimonial-snippet .author {
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 500;
}

/* Statistics Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #D4AF37;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    font-size: 24px;
    display: inline-block;
}

.stat-icon svg path {
    stroke: #1a1a1a !important;
    fill: #1a1a1a !important;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    border-color: #FFD700;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #E5E5E5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Section - Full Width */
.featured-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.featured-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.featured-subtitle {
    font-size: 1.2rem;
    color: #B0B0B0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Moving Logos Marquee */
.logos-marquee {
    width: 100%;
    overflow: hidden;
    margin: 60px 0;
    position: relative;
    padding: 10px;
}

.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
    min-width: 120px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.company-logo:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px) scale(1.05);
    background: rgba(212, 175, 55, 0.1);
}

.company-logo i {
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

/* Support real logo images */
.company-logo img {
    height: 32px;
    width: auto;
    max-width: 140px;
    /* Render all logos as white on dark theme */
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    display: block;
}

.company-logo:hover i {
    transform: scale(1.1);
}

.company-logo:hover img {
    transform: scale(1.1);
}

.company-logo span {
    font-size: 0.9rem;
    color: #E5E5E5;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.company-logo:hover span {
    color: #D4AF37;
}

/* Featured Stats */
.featured-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #B0B0B0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-section {
        padding: 60px 0;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-subtitle {
        font-size: 1rem;
    }
    
    .logos-track {
        gap: 40px;
    }
    
    .company-logo {
        min-width: 100px;
        padding: 16px 20px;
    }
    
    .company-logo i {
        font-size: 24px;
    }
    
    .company-logo img {
        height: 24px;
        max-width: 120px;
    }
    
    .featured-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.rating {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rating i {
    width: 16px;
    height: 16px;
    margin-right: 2px;
    font-size: 16px;
    display: inline-block;
}

.rating svg path {
    fill: #FFD700 !important;
}

.rating span {
    color: #D4AF37;
    font-weight: 700;
    margin-left: 8px;
}

.social-count {
    font-size: 0.95rem;
    color: #E5E5E5;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.trust-badge span {
    font-size: 0.85rem;
    color: #E5E5E5;
    font-weight: 500;
}

.trust-badge i {
    width: 16px;
    height: 16px;
    color: #D4AF37;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    font-size: 16px;
    display: inline-block;
}

.trust-badge svg path,
.trust-badge svg rect,
.trust-badge svg circle {
    stroke: #D4AF37 !important;
    fill: #D4AF37 !important;
}

/* Animations */
@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

/* VSL Modal Styles */
.vsl-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: vslModalFadeIn 0.3s ease-out;
}

.vsl-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.vsl-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    animation: vslModalSlideIn 0.4s ease-out;
}

@keyframes vslModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes vslModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vsl-modal-header {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 3rem;
    color: #D4AF37;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.modal-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.modal-subtitle {
    color: #E5E5E5;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

.vsl-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vsl-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.vsl-close i {
    font-size: 1.2rem;
    color: #888;
    transition: color 0.3s ease;
}

.vsl-close:hover i {
    color: #D4AF37;
}

.vsl-modal-body {
    padding: 30px 40px 40px;
}

.vsl-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #888;
    opacity: 0.8;
}

.vsl-cta-button {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #1a1a1a;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 12px 24px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    /* Touch-friendly improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    min-width: 120px;
}

.vsl-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 18px 36px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.vsl-cta-button:active {
    transform: translateY(-1px);
}

.vsl-cta-button i {
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
}

.trust-item i {
    color: #D4AF37;
    font-size: 1rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #D4AF37;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #D4AF37;
    transition: all 0.3s ease;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Touch-friendly improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
}

.close-btn:hover {
    color: #FFD700;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 2rem;
    color: #E5E5E5;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Styles */
.opt-in-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(229, 229, 229, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(42, 42, 42, 0.9);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: 2px solid #D4AF37;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    /* Touch-friendly improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    min-width: 120px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    border-color: #FFD700;
}

/* Enhanced hero pseudo-elements with sharp texture animations */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 45deg at 20% 30%, transparent 0deg, rgba(212, 175, 55, 0.05) 60deg, transparent 120deg),
        conic-gradient(from 225deg at 80% 70%, transparent 0deg, rgba(255, 215, 0, 0.04) 45deg, transparent 90deg),
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(45deg, transparent 0px, rgba(212, 175, 55, 0.02) 1px, transparent 2px, rgba(255, 215, 0, 0.015) 3px, transparent 4px);
    animation: luxuryFloat 20s ease-in-out infinite, sharpGlimmer 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes luxuryFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-5px) rotate(-0.5deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-15px) rotate(0.8deg);
        opacity: 0.85;
    }
}

@keyframes luxuryShimmer {
    0% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.7;
    }
    25% { 
        background-position: 25% 25%, 10% 10%, 15% 15%;
        opacity: 0.8;
    }
    50% { 
        background-position: 50% 50%, 20% 20%, 30% 30%;
        opacity: 0.9;
    }
    75% { 
        background-position: 75% 75%, 30% 30%, 45% 45%;
        opacity: 0.8;
    }
    100% { 
        background-position: 100% 100%, 40% 40%, 60% 60%;
        opacity: 0.7;
    }
}

@keyframes sharpGlimmer {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        filter: brightness(1);
    }
    20% {
        background-position: 20% 20%, 15% 15%, 10% 10%, 25% 25%, 5% 5%;
        filter: brightness(1.1);
    }
    40% {
        background-position: 40% 40%, 30% 30%, 20% 20%, 50% 50%, 10% 10%;
        filter: brightness(1.05);
    }
    60% {
        background-position: 60% 60%, 45% 45%, 30% 30%, 75% 75%, 15% 15%;
        filter: brightness(1.15);
    }
    80% {
        background-position: 80% 80%, 60% 60%, 40% 40%, 100% 100%, 20% 20%;
        filter: brightness(1.08);
    }
    100% {
        background-position: 100% 100%, 75% 75%, 50% 50%, 125% 125%, 25% 25%;
        filter: brightness(1);
    }
}

@keyframes crystallineShift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
        transform: translateX(0px) translateY(0px);
    }
    25% {
        background-position: 25% 25%, 15% 15%, 10% 10%;
        transform: translateX(2px) translateY(-1px);
    }
    50% {
        background-position: 50% 50%, 30% 30%, 20% 20%;
        transform: translateX(-1px) translateY(2px);
    }
    75% {
        background-position: 75% 75%, 45% 45%, 30% 30%;
        transform: translateX(1px) translateY(1px);
    }
    100% {
        background-position: 100% 100%, 60% 60%, 40% 40%;
        transform: translateX(0px) translateY(0px);
    }
}

/* Animated Background Particles - Desktop Only */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Disable particles completely on mobile */
.is-mobile .particles-container,
.mobile-device .particles-container {
    display: none !important;
}

/* Disable all particle animations on mobile */
.is-mobile .particle,
.mobile-device .particle {
    display: none !important;
}

/* Disable all floating animations on mobile */
.is-mobile *,
.mobile-device * {
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-iteration-count: 0 !important;
    transform: none !important;
    transition: none !important;
}

/* Re-enable essential transitions for mobile UX */
.is-mobile .primary-cta-btn,
.mobile-device .primary-cta-btn,
.is-mobile .secondary-cta-btn,
.mobile-device .secondary-cta-btn,
.is-mobile .faq-item summary,
.mobile-device .faq-item summary {
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Simplify backgrounds and disable heavy effects on mobile */
.is-mobile *,
.mobile-device * {
    backdrop-filter: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Replace complex gradients with solid colors on mobile */
.is-mobile .hero-section,
.mobile-device .hero-section {
    background: #1a1a1a !important;
}

.is-mobile .primary-cta-btn,
.mobile-device .primary-cta-btn {
    background: #D4AF37 !important;
}

.is-mobile .secondary-cta-btn,
.mobile-device .secondary-cta-btn {
    background: #FFD700 !important;
}

/* Disable video overlays on mobile */
.is-mobile .video-overlay,
.mobile-device .video-overlay,
.is-mobile .video-content-overlay,
.mobile-device .video-content-overlay,
.is-mobile .video-title-overlay,
.mobile-device .video-title-overlay,
.is-mobile .testimonial-overlay,
.mobile-device .testimonial-overlay {
    display: none !important;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 10%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.particle-7 {
    width: 3px;
    height: 3px;
    top: 10%;
    left: 90%;
    animation-delay: 6s;
    animation-duration: 7s;
}

.particle-8 {
    width: 5px;
    height: 5px;
    top: 90%;
    left: 40%;
    animation-delay: 7s;
    animation-duration: 9s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(-15px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Benefit Highlights */
.benefit-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    flex-shrink: 0;
    animation: iconPulse 2s infinite ease-in-out;
}

.benefit-icon i {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    font-size: 24px;
    display: inline-block;
}

.benefit-icon svg path {
    fill: #1a1a1a !important;
    stroke: #1a1a1a !important;
}

.benefit-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.benefit-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

@media (max-width: 768px) {
    .benefit-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .benefit-item {
        padding: 15px;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.03) 25%, transparent 50%, rgba(255, 215, 0, 0.025) 75%, transparent 100%),
        linear-gradient(45deg, rgba(26, 26, 26, 0.3) 0%, transparent 30%, rgba(42, 42, 42, 0.2) 70%, transparent 100%),
        repeating-linear-gradient(-45deg, transparent 0px, rgba(212, 175, 55, 0.015) 1px, transparent 3px, rgba(255, 215, 0, 0.01) 4px, transparent 6px);
    animation: luxuryShimmer 25s linear infinite, crystallineShift 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes luxuryShimmer {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    25% { 
        opacity: 0.9;
        transform: scale(1.01);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
    75% { 
        opacity: 0.9;
        transform: scale(1.01);
    }
}

@keyframes textureFloat {
    0% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(-20px, -15px) rotate(0.5deg);
    }
    50% { 
        transform: translate(-40px, -30px) rotate(1deg);
    }
    75% { 
        transform: translate(-60px, -45px) rotate(0.5deg);
    }
    100% { 
        transform: translate(-80px, -60px) rotate(0deg);
    }
}

/* Enhanced luxury scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 6px;
    box-shadow: inset 0 0 5px rgba(212, 175, 55, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37);
    border-radius: 6px;
    border: 2px solid #0a0a0a;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FFD700, #D4AF37, #FFD700);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Luxury selection styling */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #FFD700;
}

::-moz-selection {
    background: rgba(212, 175, 55, 0.3);
    color: #FFD700;
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    /* Hide performance-heavy elements on mobile */
    .particles-container {
        display: none;
    }
    
    .floating-elements {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    .logo-img {
  
    }
    
    .hero-headline {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subheadline {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        padding: 0 10px;
    }
    
    .vsl-section {
        margin: 40px auto;
        padding: 0 10px;
    }
    
    .video-container {
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        border-radius: 16px;
    }
    
    .video-thumbnail {
        border-radius: 15px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .video-title-overlay h3 {
        font-size: 1.2rem;
    }
    
    .video-title-overlay p {
        font-size: 0.9rem;
    }
    
    .social-proof {
        flex-direction: column;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .customer-avatars {
        justify-content: center;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
        min-height: 56px; /* Touch-friendly height */
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        margin: 0 auto;
        display: block;
    }
    
    .trust-badges {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .trust-badge {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .modal {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-height: 85vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .vsl-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .vsl-modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .vsl-modal-body {
        padding: 20px;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .vsl-cta-button {
        padding: 16px 24px;
        font-size: 1.1rem;
        min-height: 56px;
    }
    
    .hero::before {
        background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    }
}

/* Tablet and Large Mobile Optimization */
@media (max-width: 992px) and (min-width: 769px) {
    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .vsl-section {
        padding: 0 15px;
    }
    
    .video-container {
        max-width: 600px;
    }
    
    .cta-button {
        max-width: 350px;
        padding: 1.3rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .social-proof {
        padding: 1.2rem;
    }
    
    .trust-badges {
        gap: 1.2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        padding: 10px 0;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    .logo-img {
       
    }
    
    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .vsl-section {
        margin: 30px auto;
        padding: 0 5px;
    }
    
    .video-container {
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 18px;
    }
    
    .video-title-overlay h3 {
        font-size: 1rem;
    }
    
    .video-title-overlay p {
        font-size: 0.8rem;
    }
    
    .social-proof {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .rating {
        font-size: 1rem;
    }
    
    .social-count {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
        min-height: 52px;
    }
    
    .trust-badges {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: 120px;
        justify-content: center;
    }
    
    .vsl-modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .vsl-modal-header {
        padding: 20px 15px 10px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .vsl-modal-body {
        padding: 15px;
    }
    
    .vsl-cta-button {
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 52px;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    .form-group input,
    .submit-btn {
        padding: 0.9rem 1.2rem;
    }
}

/* Credibility Section Styles */
.credibility-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 50%,
        #0a0a0a 100%
    );
    position: relative;
    overflow: hidden;
}

.credibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.credibility-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.credibility-title {
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

.credibility-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    margin: 0;
    font-weight: 400;
}

.testimonials-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(42, 42, 42, 0.6) 100%
    );
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-block.testimonial-left {
    flex-direction: row ;
}

.testimonial-block.testimonial-right {
    flex-direction: row-reverse ;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-video {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 0;
}

.testimonial-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-block:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.testimonial-block:hover::before {
    opacity: 1;
}

.testimonial-header {
    margin-bottom: 0;
}

.testimonial-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-description {
    font-size: 1rem;
    color: #E5E5E5;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.testimonial-summary {
    font-size: 1rem;
    color: #D4AF37;
    margin: 0;
    font-weight: 500;
}

.testimonial-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-video .video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(
        135deg,
        #2a2a2a 0%,
        #1a1a1a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(
        135deg,
        #2a2a2a 0%,
        #1a1a1a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-video .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(26, 26, 26, 0.8) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

.testimonial-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 25px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-play-button i {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-left: 3px;
}

.video-duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-video:hover .testimonial-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.credibility-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.strategy-call-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.strategy-call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.strategy-call-button:hover::before {
    left: 100%;
}

.strategy-call-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 45px rgba(212, 175, 55, 0.6),
        inset 0 3px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
}

.strategy-call-button i {
    font-size: 1.1rem;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #B0B0B0;
    font-style: italic;
}

/* Responsive Design for Credibility Section */
@media (min-width: 768px) {    
    .credibility-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .credibility-section {
        padding: 100px 0;
    }
    
    .testimonial-block {
        padding: 50px;
    }
    
    .testimonials-timeline {
        gap: 80px;
    }
}

@media (max-width: 1023px) {
    .testimonials-timeline {
        max-width: 800px;
    }
    
    .testimonial-block {
        flex-direction: column !important;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }
    
    .testimonial-content {
        order: 1;
        width: 100%;
    }
    
    .testimonial-video {
        order: 2;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .testimonial-video .video-thumbnail {
        aspect-ratio: 16/9;
        border-radius: 12px;
    }
}

@media (max-width: 767px) {
    .credibility-section {
        padding: 60px 20px;
    }
    
    .credibility-title {
        font-size: 2.2rem;
    }
    
    .credibility-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-timeline {
        gap: 30px;
        padding: 0 10px;
    }
    
    .testimonial-block {
        padding: 20px 18px;
        margin: 0 10px;
        gap: 20px;
        border-radius: 16px;
    }
    
    .testimonial-content {
        padding: 0;
    }
    
    .testimonial-name {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .testimonial-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .testimonial-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-video {
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-video .video-thumbnail {
        border-radius: 10px;
    }
    
    .testimonial-play-button {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-play-button i {
        font-size: 1.2rem;
    }
}
    
    .strategy-call-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }


/* Image Testimonials Section Styles */
.image-testimonials-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.image-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 1;
}

.image-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.image-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-testimonial-block {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.image-testimonial-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(255, 215, 0, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-testimonial-block:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.image-testimonial-block:hover::before {
    opacity: 1;
}

.testimonial-image {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(
        135deg,
        #2a2a2a 0%,
        #1a1a1a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        #1a1a1a 100%
    );
}

.placeholder-content {
    text-align: center;
    color: rgba(212, 175, 55, 0.8);
    z-index: 2;
    position: relative;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.7;
}

.placeholder-content span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
}

.image-placeholder:hover .image-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    position: relative;
    z-index: 2;
}

.testimonial-info .testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.testimonial-result {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.image-testimonials-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.image-testimonials-cta .strategy-call-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.image-testimonials-cta .strategy-call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.image-testimonials-cta .strategy-call-button:hover::before {
    left: 100%;
}

.image-testimonials-cta .strategy-call-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.image-testimonials-cta .strategy-call-button:active {
    transform: translateY(-1px);
}

.image-testimonials-cta .cta-subtext {
    margin-top: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive Design for Image Testimonials */
@media (max-width: 1024px) {
    .image-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 700px;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .image-testimonial-block {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .image-testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .image-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .image-testimonial-block {
        padding: 20px;
        margin: 0 15px;
    }
    
    .testimonial-info .testimonial-name {
        font-size: 1.2rem;
    }
    
    .placeholder-content i {
        font-size: 2.5rem;
    }
    
    .image-testimonials-cta .strategy-call-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Explainer Section Styles */
.explainer-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.explainer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.explainer-section .container {
    position: relative;
    z-index: 2;
}

.explainer-header {
    text-align: center;
    margin-bottom: 60px;
}

.explainer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.explainer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px 0;
}

/* Timeline Central Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(212, 175, 55, 0.3);
    transform: translateX(-50%);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #D4AF37, #FFD700);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transition: height 0.3s ease;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 80px;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Left Side Items */
.timeline-item.left {
    padding-right: calc(50% + 40px);
}

/* Right Side Items */
.timeline-item.right {
    padding-left: calc(50% + 40px);
}

.timeline-item .timeline-content {
    text-align: left;
    margin-left: 20px;
}

.timeline-item .timeline-marker {
    left: calc(50% - 25px);
}

/* Timeline Content */
.timeline-content {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.timeline-content:hover::before {
    transform: scaleX(1);
}

/* Timeline Content Arrow */
.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: rgba(26, 26, 26, 0.9);
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: rgba(26, 26, 26, 0.9);
}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.timeline-item .step-icon {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item .step-icon {
    margin-left: 0;
    margin-right: auto;
}

.step-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.timeline-content:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.timeline-content:hover .step-icon i {
    transform: scale(1.1);
}

/* Step Content */
.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #E5E5E5;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(26, 26, 26, 1), 0 8px 25px rgba(212, 175, 55, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 0 8px rgba(26, 26, 26, 1), 0 12px 30px rgba(212, 175, 55, 0.6);
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: none;
}

/* Explainer Description */
.explainer-description {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.explainer-text {
    font-size: 1.2rem;
    color: #E5E5E5;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-left: 4px solid #D4AF37;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.explainer-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #D4AF37;
    font-family: Georgia, serif;
    opacity: 0.3;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Explainer CTA */
.explainer-cta {
    text-align: center;
}

.explainer-cta-button {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.explainer-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.explainer-cta-button:hover::before {
    left: 100%;
}

.explainer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.explainer-cta-button:active {
    transform: translateY(0);
}

.explainer-cta-button i {
    margin-right: 10px;
    font-size: 1rem;
    color: #1a1a1a;
}

/* Responsive Design */
/* Responsive Design for 6 Steps */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-block {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .explainer-section {
        padding: 60px 0;
    }
    
    .explainer-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-block {
        padding: 30px 20px;
        margin-bottom: 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .explainer-text {
        font-size: 1.1rem;
        padding: 25px 20px;
    }
    
    .explainer-cta-button {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Timeline Mobile Responsive Styles */
    .timeline-container {
        max-width: 100%;
        padding: 20px 15px 40px;
        margin: 0 auto 40px;
    }
    
    /* Mobile Timeline Line - Move to Left */
    .timeline-line {
        left: 30px;
        transform: none;
        width: 3px;
    }
    
    /* Single Column Layout for Mobile */
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 70px;
        padding-right: 15px;
        margin-bottom: 50px;
    }
    
    /* Timeline Content Mobile Optimization */
    .timeline-content {
        padding: 20px;
        border-radius: 15px;
        margin-left: 0;
    }
    
    /* Remove Arrows on Mobile */
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        display: none;
    }
    
    /* Timeline Markers Mobile Position */
    .timeline-item .timeline-marker {
        left: 5px;
        width: 40px;
        height: 40px;
        box-shadow: 0 0 0 6px rgba(26, 26, 26, 1), 0 6px 20px rgba(212, 175, 55, 0.4);
    }
    
    .step-number {
        font-size: 0.9rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Step Content Mobile */
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Step Icon Mobile */
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .explainer-section {
        padding: 60px 15px;
    }
    
    .explainer-title {
        font-size: 1.8rem;
    }
    
    .step-block {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .explainer-text {
        font-size: 1rem;
        padding: 20px 15px;
    }
    
    .explainer-cta-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    /* Timeline Extra Small Mobile Adjustments */
    .timeline-container {
        padding: 15px 10px 30px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 60px;
        padding-right: 10px;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        padding: 18px;
        border-radius: 12px;
    }
    
    .timeline-item .timeline-marker {
        left: 2px;
        width: 35px;
        height: 35px;
        box-shadow: 0 0 0 5px rgba(26, 26, 26, 1), 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    
    .step-number {
        font-size: 0.8rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
}

/* Training Page Styles */
.training-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    color: #FFFFFF;
}

.training-header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.training-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #D4AF37;
}

.training-header .logo i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E5E5E5;
    font-weight: 600;
}

.user-welcome i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.training-main {
    padding: 60px 0;
}

.training-hero {
    text-align: center;
    margin-bottom: 80px;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    color: #22C55E;
    font-weight: 600;
    margin-bottom: 30px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.training-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.training-title .highlight {
    display: block;
    color: #D4AF37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.training-subtitle {
    font-size: 1.3rem;
    color: #E5E5E5;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.video-training {
    margin-bottom: 80px;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.video-container-training {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.training-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.training-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.training-play-btn i {
    font-size: 2rem;
    color: #1a1a1a;
    margin-left: 4px;
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
}

.video-duration,
.video-quality {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #E5E5E5;
    backdrop-filter: blur(10px);
}

.video-duration i,
.video-quality i {
    color: #D4AF37;
}

.video-details h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.training-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.training-points li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.training-points li i {
    color: #22C55E;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.training-points li span {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #E5E5E5;
}

.bonus-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-header p {
    font-size: 1.2rem;
    color: #E5E5E5;
    opacity: 0.8;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.bonus-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.bonus-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.bonus-item p {
    color: #E5E5E5;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.training-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: #E5E5E5;
    margin-bottom: 40px;
    opacity: 0.9;
}

.primary-cta-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #1a1a1a;
    border: none;
    padding: 25px 50px;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 15px 30px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
}

.primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.primary-cta-btn i {
    font-size: 1.3rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #22C55E;
    font-weight: 600;
}

.cta-guarantee i {
    font-size: 1.2rem;
}

.training-footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #E5E5E5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

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

/* Responsive Design for Training Page */
@media (max-width: 1024px) {
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .training-title {
        font-size: 2.8rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .training-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .training-title {
        font-size: 2.2rem;
    }
    
    .training-subtitle {
        font-size: 1.1rem;
    }
    
    .video-details h2 {
        font-size: 1.8rem;
    }
    
    .training-points li {
        padding: 15px;
    }
    
    .training-points li span {
        font-size: 1rem;
    }
    
    .bonus-section {
        padding: 40px 20px;
    }
    
    .bonus-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .primary-cta-btn {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Responsive Design for VSL Modal */
@media (max-width: 768px) {
    .vsl-modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .vsl-modal-header {
        padding: 30px 25px 15px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .vsl-modal-body {
        padding: 25px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* FAQ Section Styles */
.faq-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 50%,
        #0a0a0a 100%
    );
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.5);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(26, 26, 26, 0.8);
}

.faq-item summary {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    list-style: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
    color: #FFD700;
    transform: scale(1.1);
}

.faq-item .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    opacity: 0;
}

.faq-item[open] .faq-content {
    max-height: 300px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
}

.faq-item p {
    padding: 20px 25px 25px;
    color: #E5E5E5;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.2s ease;
    opacity: 1;
}

.faq-item[open] p {
    transform: translateY(0);
    animation: slideInUp 0.4s ease-out 0.1s both;
}

.faq-item:not([open]) p {
    animation: slideOutDown 0.3s ease-in both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Training CTA Section Mobile Styles */
@media (max-width: 768px) {
    .training-cta {
        padding: 60px 20px;
        margin: 15px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .primary-cta-btn {
        padding: 20px 40px;
        font-size: 1.2rem;
        width: 100%;
        max-width: 320px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .training-cta {
        padding: 50px 15px;
        margin: 10px;
    }
    
    .cta-content h2 {
        font-size: 1.9rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .primary-cta-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .cta-guarantee {
        font-size: 0.9rem;
    }
}

/* FAQ Section Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-accordion {
        padding: 0 20px;
    }
    
    .faq-item summary {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-item p {
        padding: 15px 20px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-accordion {
        padding: 0 15px;
    }
    
    .faq-item summary {
        padding: 18px 15px;
        font-size: 1rem;
    }
    
    .faq-item p {
        padding: 12px 15px 18px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .faq-item summary::after {
        font-size: 1.3rem;
    }
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.final-cta-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.final-cta-header {
    margin-bottom: 30px;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
}



.cta-button-wrapper {
    margin: 25px 0 0 0;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    border: none;
    position: relative;
    letter-spacing: 0.5px;
    min-width: 200px;
}



.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
}

.final-cta-button:active {
    transform: translateY(0);
}

.final-cta-button i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.7), 0 0 0 10px rgba(212, 175, 55, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .final-cta-content {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .final-cta-title {
        font-size: 2.2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .final-cta-button {
        font-size: 1.1rem;
        padding: 18px 30px;
        min-width: 280px;
    }
    
    .benefit-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-item i {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .final-cta-button {
        font-size: 1rem;
        padding: 16px 25px;
        min-width: 250px;
    }
    
    .benefits-list {
         gap: 15px;
     }
 }

/* ===== FOOTER ===== */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.disclaimer {
    color: #888888;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.75rem;
    }
}

/* About Me Section Styles */
.about-me-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 50%,
        #0a0a0a 100%
    );
    overflow: hidden;
}

.about-me-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.about-me-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side: Info and Text */
.about-me-info {
    padding-right: 40px;
}

.about-me-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-me-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.verified-badge i.fab {
    font-size: 1.1rem;
}

.verified-icon {
    color: #1DA1F2;
    font-size: 1rem;
}

.about-me-subtitle {
    font-size: 1.3rem;
    color: #D4AF37;
    font-weight: 600;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.about-me-description {
    margin-bottom: 40px;
}

.about-me-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E5E5E5;
    margin-bottom: 20px;
    opacity: 0.9;
}



.social-links {
    margin-top: 30px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: #000000;
}

.instagram-link i {
    font-size: 1.3rem;
}

/* Right Side: Image Placeholder */
.about-me-image {
    position: relative;
    padding-left: 40px;
}

.image-placeholder-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.nick-photo-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nick-photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.nick-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
    transition: all 0.3s ease;
}

.nick-photo-container:hover .nick-photo {
    transform: scale(1.05);
}

.image-overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nick-photo-container:hover .image-overlay-about {
    opacity: 1;
}

/* Image Slider Styles */
.image-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    width: 400%; /* 4 slides * 100% */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%; /* 100% / 4 slides */
    height: 100%;
    flex-shrink: 0;
}

.slide.active .nick-photo-container {
    opacity: 1;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.slider-nav:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.dot.active,
.dot:hover {
    background: rgba(212, 175, 55, 1);
    border-color: rgba(212, 175, 55, 1);
    transform: scale(1.2);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1rem;
}

.badge-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 100px;
    left: -20px;
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design for About Me Section */
@media (max-width: 1024px) {
    .about-me-content {
        gap: 60px;
    }
    
    .about-me-info {
        padding-right: 20px;
    }
    
    .about-me-image {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .about-me-section {
        padding: 60px 20px;
    }
    
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-me-info {
        padding-right: 0;
        order: 2;
    }
    
    .about-me-image {
        padding-left: 0;
        order: 1;
    }
    
    .about-me-header {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-me-title {
        font-size: 2rem;
    }
    
    .image-placeholder-container {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-me-section {
        padding: 40px 10px;
    }
    
    .about-me-title {
        font-size: 1.8rem;
    }
    
    .about-me-subtitle {
        font-size: 1.1rem;
    }
    
    .about-me-description p {
        font-size: 1rem;
    }
    
    .verified-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .instagram-link {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .image-placeholder-container {
        height: 300px;
    }
}

/* Testimonials Screenshots Section */
.testimonials-screenshots-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-screenshots-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #E5E5E5;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Masonry Grid Layout */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.masonry-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(255, 215, 0, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

.masonry-item:hover::before {
    opacity: 1;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 80px;
}

.testimonials-cta-button {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.testimonials-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.testimonials-cta-button:hover::before {
    left: 100%;
}

.testimonials-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(255, 215, 0, 0.5);
}

.testimonials-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.testimonials-cta-button i {
    font-size: 1.1em;
}

.testimonials-cta-subtext {
    margin-top: 15px;
    color: #E5E5E5;
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Responsive Design for Masonry Grid */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .testimonials-screenshots-section {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .testimonials-cta {
        margin-top: 50px;
    }
    
    .testimonials-cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .masonry-item {
        margin-bottom: 15px;
    }
    
    .testimonials-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
