/* ===================================
   PROMOTE INTELLIGENCE MODULE - CSS
   ULTRA-MODERN DESIGN 2026
   ================================== */

/* Hero Section - Premium Dark Design */
.promote-hero {
    position: relative;
    padding: 3rem 0 3rem;
    background: 
        linear-gradient(135deg, 
            #0a0e0e 0%, 
            #0F2A2A 25%,
            #1A3A3A 50%, 
            #0D4F4F 75%,
            #0a1a1a 100%
        );
    overflow: hidden;
}

/* Animated Gradient Mesh Background */
.promote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(127, 255, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 240, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(13, 79, 79, 0.2) 0%, transparent 60%);
    animation: meshMove 20s ease-in-out infinite;
    pointer-events: none;
}

/* Particle Grid Effect */
.promote-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(127, 255, 0, 0.03) 2px, rgba(127, 255, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(127, 255, 0, 0.03) 2px, rgba(127, 255, 0, 0.03) 4px);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Premium Badge with Glow */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.15), rgba(0, 255, 240, 0.1));
    border: 1px solid rgba(127, 255, 0, 0.4);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 30px rgba(127, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 50px rgba(127, 255, 0, 0.4);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 30px rgba(127, 255, 0, 0.2); }
    50% { box-shadow: 0 0 50px rgba(127, 255, 0, 0.35); }
}

.hero-badge i {
    width: 18px;
    height: 18px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Ultra-Modern Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(127, 255, 0, 0.3);
    animation: titleReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Enhanced Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, 
        #7FFF00 0%, 
        #00FFF0 50%, 
        #7FFF00 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #7FFF00, #00FFF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

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

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Stats Cards */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.stat {
    position: relative;
    text-align: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(26, 58, 58, 0.6), rgba(13, 79, 79, 0.4));
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

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

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(127, 255, 0, 0.3),
        0 0 60px rgba(127, 255, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7FFF00, #00FFF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 0 30px rgba(127, 255, 0, 0.5);
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* Ultra-Premium CTA Button */
.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 30px rgba(127, 255, 0, 0.4),
        0 0 60px rgba(127, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 400px;
    height: 400px;
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(127, 255, 0, 0.6),
        0 0 100px rgba(127, 255, 0, 0.4);
}

.btn-large:active {
    transform: translateY(-3px) scale(1.02);
}

.btn-large i {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-large:hover i {
    transform: rotate(15deg) scale(1.1);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.cta-note i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

/* Glassmorphism Floating Cards */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(26, 58, 58, 0.8), 
        rgba(13, 79, 79, 0.6)
    );
    border: 1px solid rgba(127, 255, 0, 0.4);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(127, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(127, 255, 0, 0.4);
    border-color: var(--primary-color);
}

.floating-card i {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(127, 255, 0, 0.6));
}

.floating-card span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.floating-card strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(127, 255, 0, 0.5);
}

.card-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 8%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 12%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% { 
        transform: translateY(-30px) rotate(0deg); 
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Premium Trust Section */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        rgba(10, 26, 26, 0.8) 0%, 
        rgba(15, 42, 42, 0.6) 100%
    );
    border-top: 1px solid rgba(127, 255, 0, 0.15);
    border-bottom: 1px solid rgba(127, 255, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 255, 0, 0.05), transparent);
    animation: trustShine 8s linear infinite;
}

@keyframes trustShine {
    to { left: 100%; }
}

.trust-logos {
    text-align: center;
}

.trust-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(127, 255, 0, 0.05);
    border: 1px solid rgba(127, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(127, 255, 0, 0.1);
    border-color: rgba(127, 255, 0, 0.3);
    transform: translateY(-3px);
}

/* Modern How It Works Section */
.how-it-works {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 400;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
}

/* Connection Line Between Steps */
.steps::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(127, 255, 0, 0.3) 20%, 
        rgba(127, 255, 0, 0.3) 80%, 
        transparent 100%
    );
    z-index: 0;
}

.step {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(26, 58, 58, 0.4), 
        rgba(13, 79, 79, 0.2)
    );
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.step:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 50px rgba(127, 255, 0, 0.3),
        0 0 60px rgba(127, 255, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -1.25rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7FFF00, #00FFF0);
    color: #0F2A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 
        0 5px 20px rgba(127, 255, 0, 0.5),
        0 0 30px rgba(127, 255, 0, 0.3);
    border: 3px solid #0F2A2A;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.15), 
        rgba(0, 255, 240, 0.1)
    );
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 30px rgba(127, 255, 0, 0.3),
        inset 0 0 20px rgba(127, 255, 0, 0.1);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #7FFF00, #00FFF0);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover .step-icon::before {
    opacity: 1;
}

.step-icon i {
    width: 42px;
    height: 42px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(127, 255, 0, 0.5));
    transition: transform 0.3s ease;
}

.step:hover .step-icon i {
    transform: scale(1.2) rotate(10deg);
}

.step h3 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

/* Premium Discover Section */
.discover-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        rgba(10, 26, 26, 0.6) 0%, 
        rgba(15, 42, 42, 0.8) 100%
    );
    position: relative;
    overflow: hidden;
}

.discover-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(127, 255, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 240, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* 3D Card Effect */
.discover-card {
    background: linear-gradient(135deg, 
        rgba(26, 58, 58, 0.6), 
        rgba(13, 79, 79, 0.4)
    );
    border: 1px solid rgba(127, 255, 0, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Shine Effect on Hover */
.discover-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(127, 255, 0, 0.1) 50%, 
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.discover-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.discover-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.4), 
        rgba(0, 255, 240, 0.2)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.discover-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 60px rgba(127, 255, 0, 0.3),
        0 0 80px rgba(127, 255, 0, 0.2),
        inset 0 0 30px rgba(127, 255, 0, 0.1);
}

.discover-card:hover::after {
    opacity: 1;
}

.discover-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.2), 
        rgba(0, 255, 240, 0.1)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(127, 255, 0, 0.3);
    transition: all 0.4s ease;
}

.discover-card:hover .discover-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 50px rgba(127, 255, 0, 0.5);
}

.discover-icon i {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(127, 255, 0, 0.6));
}

.discover-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s;
}

.discover-card:hover h3 {
    color: var(--primary-color);
}

.discover-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.discover-example {
    padding: 1.25rem;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.08), 
        rgba(0, 255, 240, 0.05)
    );
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.discover-example::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(127, 255, 0, 0.1);
    font-family: Georgia, serif;
}

.discover-example strong {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Why Different / Comparison */
.why-different {
    padding: 6rem 0;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.comparison-side {
    background: rgba(26, 58, 58, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
}

.comparison-side h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-side h3 i {
    width: 28px;
    height: 28px;
}

.comparison-left {
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.comparison-left h3 {
    color: #ff6b6b;
}

.comparison-left h3 i {
    color: #ff6b6b;
}

.comparison-right {
    border: 1px solid var(--primary-color);
}

.comparison-right h3 {
    color: var(--primary-color);
}

.comparison-right h3 i {
    color: var(--primary-color);
}

.comparison-side ul {
    list-style: none;
}

.comparison-side li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.comparison-left li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.comparison-right li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.comparison-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: rgba(10, 26, 26, 0.5);
}

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

.testimonial-card {
    background: rgba(26, 58, 58, 0.3);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(127, 255, 0, 0.1);
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-result i {
    width: 16px;
    height: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    background: rgba(26, 58, 58, 0.3);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item h3 i {
    width: 24px;
    height: 24px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.1) 0%, rgba(13, 79, 79, 0.2) 100%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.cta-guarantee i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

/* Ultra-Responsive Design - Mobile First */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .promote-hero {
        padding: 2.5rem 0 2.5rem;
    }
    
    .floating-card {
        font-size: 0.875rem;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 1024px) {
    .promote-hero {
        padding: 2.5rem 0 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-divider {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .promote-hero {
        padding: 2rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .stat {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps::before {
        display: none;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discover-card {
        padding: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .logos {
        gap: 1rem;
    }
    
    .logo-item {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        width: 32px;
        height: 32px;
    }
    
    .discover-icon {
        width: 60px;
        height: 60px;
    }
    
    .discover-icon i {
        width: 30px;
        height: 30px;
    }
}

/* Print Styles */
@media print {
    .promote-hero::before,
    .promote-hero::after,
    .floating-card,
    .hero-badge,
    .btn-large,
    .navbar {
        display: none;
    }
    
    .promote-hero {
        padding: 2rem 0;
        background: white;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-badge,
    .stat,
    .step,
    .discover-card {
        border-width: 2px;
    }
    
    .gradient-text {
        -webkit-text-fill-color: var(--primary-color);
    }
}
