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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Color Variables - Exact Golden Theme */
:root {
    --primary-gold: #FFB800;
    --secondary-gold: #FFC83D;
    --accent-gold: #E6A500;
    --dark-bg: #000000;
    --card-bg: #0D0D0D;
    --card-border: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #808080;
    --gradient-gold: linear-gradient(135deg, #FFB800 0%, #FFC83D 100%);
    --gradient-card: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
}

/* Navigation - Exact Match */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.nav-logo h2 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a.cta-button {
    background: var(--gradient-gold);
    color: #000000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-menu a.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

/* Language Switcher Dropdown */
.language-switcher {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 184, 0, 0.3);
}

.flag {
    font-size: 16px;
}

.lang-text {
    font-size: 14px;
    font-weight: 600;
}

.lang-current i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-current i {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 12px;
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.lang-dropdown.open .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.lang-option.active {
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Hero Section - Video Background */
.hero-main {
    padding: 140px 0 0;
    background: linear-gradient(to bottom, 
        #000000 0%, 
        #000000 60%, 
        rgba(0, 0, 0, 0.9) 70%, 
        rgba(13, 13, 13, 0.8) 80%, 
        rgba(13, 13, 13, 0.9) 90%, 
        #0D0D0D 100%
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 150px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mask: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 60%, 
        rgba(0,0,0,0.8) 75%, 
        rgba(0,0,0,0.4) 85%, 
        rgba(0,0,0,0.1) 95%, 
        rgba(0,0,0,0) 100%
    );
    -webkit-mask: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 60%, 
        rgba(0,0,0,0.8) 75%, 
        rgba(0,0,0,0.4) 85%, 
        rgba(0,0,0,0.1) 95%, 
        rgba(0,0,0,0) 100%
    );
}

.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255, 184, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 70% 80%, rgba(255, 200, 61, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    animation: shimmerMove 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 184, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 200, 61, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 184, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 200, 61, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 184, 0, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 15s linear infinite;
    pointer-events: none;
    opacity: 0.6;
    z-index: 2;
}

@keyframes shimmerMove {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateX(10px) translateY(-5px) scale(1.05);
        opacity: 1;
    }
    50% { 
        transform: translateX(-5px) translateY(10px) scale(0.95);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(-10px) translateY(-10px) scale(1.02);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
    100% { 
        transform: translateY(0px) rotate(360deg);
        opacity: 0.6;
    }
}

.hero-main-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-main-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
}

.highlight-promise {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-promise::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-main-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-cta {
    margin-bottom: 60px;
}

.cta-button-large {
    background: var(--gradient-gold);
    color: #000000;
    padding: 20px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button-large::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.5s;
}

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

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.4);
}

/* Hero Features List */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    background: rgba(255, 184, 0, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 184, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-feature-item:hover::before {
    opacity: 1;
}

.hero-feature-item:hover {
    background: rgba(255, 184, 0, 0.06);
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.1);
}

.feature-check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

.hero-partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 1;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.partner-logo-img {
    height: 48px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(1.1) grayscale(30%);
}

.partner-logo-img:hover {
    opacity: 1;
    filter: brightness(1.2) grayscale(0%);
    transform: translateY(-3px);
}

/* Testimonials Section - Separated */
.testimonials-section {
    padding: 120px 0;
    background: var(--card-bg);
    position: relative;
}

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

.hero-content {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Testimonials - Exact Layout */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--card-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.1);
}

.testimonial-card.active {
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.15);
}

.testimonial-card.active::before {
    opacity: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Audio Player - Exact Match */
.audio-player {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.play-btn, .record-btn, .volume-btn, .fullscreen-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.record-btn, .volume-btn, .fullscreen-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 12px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.record-btn:hover, .volume-btn:hover, .fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.audio-time, .audio-duration {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 32px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    margin: 0 8px;
}

.progress {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 0.3s ease;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--primary-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-btn:hover {
    background: var(--primary-gold);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.2);
}

/* Services Section - Exact Match */
.services {
    padding: 120px 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(13, 13, 13, 0.3) 15%,
        rgba(13, 13, 13, 0.6) 30%,
        rgba(13, 13, 13, 0.8) 45%,
        var(--card-bg) 60%,
        var(--card-bg) 100%
    );
    position: relative;
    margin-top: -100px;
    padding-top: 200px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Uniform Grid */
.services-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-tile {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    min-height: 280px;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-tile:hover::before {
    opacity: 1;
}

.service-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.1);
}

.tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-tile:hover .tile-icon {
    background: rgba(255, 184, 0, 0.2);
    transform: scale(1.1);
}

.tile-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.tile-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-tile:hover .tile-content h3 {
    color: var(--primary-gold);
}

.tile-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 16px;
}

.service-tile:hover .tile-content p {
    opacity: 1;
}

.tile-arrow {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-tile:hover .tile-arrow {
    opacity: 1;
    transform: translateX(0);
}

.tile-arrow i {
    color: var(--primary-gold);
    font-size: 16px;
}

/* FAQ Section - Exact Match */
.faq {
    padding: 120px 0;
    background: var(--dark-bg);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--gradient-card);
}

.faq-item:hover {
    border-color: rgba(255, 184, 0, 0.3);
}

.faq-question {
    padding: 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 32px 32px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

/* Comparison Section - Exact Match */
.comparison {
    padding: 120px 0;
    background: var(--card-bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.comparison-column {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comparison-column:last-child::before {
    opacity: 1;
}

.column-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--card-border);
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.column-title.golden {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom-color: var(--primary-gold);
}

.comparison-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.golden-column::before {
    opacity: 1;
}

.comparison-item.negative {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-item.positive {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.comparison-item i {
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-item.negative i {
    color: #EF4444;
}

.comparison-item.positive i {
    color: #22C55E;
}

.comparison-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
}

/* Platform Section - Luxurious Design */
.platforms {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.platform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 184, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255, 200, 61, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(255, 184, 0, 0.02) 50%, transparent 100%);
    animation: luxuryShimmer 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes luxuryShimmer {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05) rotate(1deg);
    }
}

.platform-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.platform-text {
    flex: 1;
    text-align: left;
}

.platform-text h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
}

.platform-cta {
    flex: 0 0 auto;
    text-align: center;
}

.cta-button-platform {
    background: var(--gradient-gold);
    color: #000000;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(255, 184, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button-platform::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;
}

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

.cta-button-platform:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(255, 184, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.platform-cta-sub {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 184, 0, 0.6);
    font-weight: 500;
}

/* Results Section - Exact Match */
.results {
    padding: 120px 0;
    background: var(--dark-bg);
}

.results-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* Earnings Showcase - New Structure */
.earnings-showcase {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.earnings-row {
    margin-bottom: 32px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.earnings-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.earnings-row:hover {
    padding-left: 16px;
    border-bottom-color: rgba(255, 184, 0, 0.2);
}

.earnings-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.earnings-info {
    flex: 1;
}

.earnings-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.earnings-row:hover .earnings-info h3 {
    color: var(--primary-gold);
}

.earnings-info p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.earnings-row:hover .earnings-info p {
    opacity: 1;
}

.earnings-image {
    width: 300px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.earnings-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.earnings-row:hover .earnings-image {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.2);
}

.screenshot-clickable {
    cursor: pointer;
    position: relative;
}

.screenshot-clickable::after {
    content: '🔍';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-gold);
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-clickable:hover::after {
    opacity: 1;
}

.result-card:hover .result-screenshot img {
    transform: scale(1.02);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: #000000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    display: block;
}

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

.result-card {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 400px;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-card:hover::before {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.1);
}

/* Result Content Layout */
.result-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 2;
}

.result-text {
    flex: 1;
    min-width: 0;
}

.result-text h3 {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.result-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
}

.result-screenshot {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.result-screenshot img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.result-card:hover .result-screenshot img {
    transform: scale(1.02);
}

.result-header h3 {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex: 1;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.statistics-badge {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.earnings-table {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', monospace;
    font-weight: 500;
}

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

.earnings-row span:first-child {
    color: var(--text-secondary);
    font-size: 14px;
}

.earnings-row span:last-child {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    text-align: center;
    margin-top: 80px;
}

.stats-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.stats-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-weight: 400;
}

/* World Map */
.world-map {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.map-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Promise Section - Exact Match */
.promise {
    padding: 120px 0;
    background: var(--card-bg);
    text-align: center;
}

.promise-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promise-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
    opacity: 0.4;
}

.partner-logos img {
    height: 32px;
    filter: brightness(0.6);
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: brightness(1);
    opacity: 1;
}

.promise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.promise-card {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promise-card:hover::before {
    opacity: 1;
}

.promise-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 25px 80px rgba(255, 184, 0, 0.1);
}

.promise-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.promise-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.promise-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Footer - Exact Match */
.footer {
    padding: 60px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.footer-logo-icon {
    height: 28px;
    width: auto;
}

.footer-logo h3 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.footer-left p {
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

.footer-right h4 {
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-right ul {
    list-style: none;
}

.footer-right ul li {
    margin-bottom: 8px;
}

.footer-right ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-right ul li a:hover {
    color: var(--primary-gold);
}

/* CTA Button Global Style */
.cta-button {
    background: var(--gradient-gold);
    color: #000000;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.3);
}

/* Responsive Design - Exact Breakpoints */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .promise-title {
        font-size: 48px;
    }
    
    .earnings-image {
        width: 250px;
        height: 160px;
    }
}

@media (max-width: 1100px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 184, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 16px 0;
    }
    
    .hero-main-title {
        font-size: 56px;
    }
    
    .hero-main-subtitle {
        font-size: 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hero-feature-item {
        padding: 24px 20px;
    }
    
    .hero-partner-logos {
        gap: 20px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .earnings-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .earnings-image {
        width: 100%;
        height: 180px;
    }
    
    .earnings-info h3 {
        font-size: 20px;
    }
    
    .world-map {
        margin: 40px 0;
    }
    
    .map-image {
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .promise-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .promise-title {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-main {
        padding: 120px 0 80px;
    }
    
    .hero-main-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .hero-main-subtitle {
        font-size: 18px;
    }
    
    .cta-button-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .hero-feature-item {
        gap: 12px;
        padding: 20px 16px;
    }
    
    .feature-check {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .feature-content h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .hero-partner-logos {
        gap: 16px;
    }
    
    .partner-logo-img {
        height: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .promise-title {
        font-size: 32px;
    }
    
    .services-masonry {
        grid-template-columns: 1fr;
    }
    
    .service-tile {
        min-height: auto;
    }
    
    .world-map {
        margin: 30px 0;
    }
    
    .map-image {
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card,
    .service-card,
    .promise-card {
        padding: 24px;
    }
    
    .result-card {
        padding: 24px;
        min-height: auto;
    }
    
    .result-text h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .result-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .comparison-item {
        padding: 16px;
    }
    
    .faq-question {
        padding: 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .platform-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .platform-text h2 {
        font-size: 40px;
    }
    
    .platform-text p {
        font-size: 16px;
    }
    
    .cta-button-platform {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .audio-player {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .play-btn, .record-btn, .volume-btn, .fullscreen-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .progress-bar {
        margin: 0 4px;
    }
}