/* ===== Reset & Base ===== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Announcement Bar ===== */

.announcement-bar {
    position: relative;
    z-index: 100;
    background-color: #0049d4;
    color: #ffffff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 12px 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== Particles Background ===== */

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    will-change: transform;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) translateX(30px) scale(0.5);
        opacity: 0;
    }
}

/* ===== Scroll Reveal ===== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%), #0a0a0a;
    padding: 60px 40px 20px;
}

/* Binary-style subtle background pattern */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero-glow--left {
    background: rgba(255, 255, 255, 0.06);
    top: -100px;
    left: -150px;
}

.hero-glow--right {
    background: rgba(255, 255, 255, 0.04);
    bottom: -100px;
    right: -100px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* ===== Hero Content (Left) ===== */

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 5;
    /* Keep text above the image's invisible padding */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    animation: badgePulse 2s ease-in-out infinite;
}

.vip-gold {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.hero-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #0049d4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.55rem;
}

@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.08);
    }
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.5px;
}

.highlight {
    color: #ffffff;
    position: relative;
    display: inline;
}

.highlight-gold {
    background: linear-gradient(to left, #ffffff, #e0e0e0, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    position: relative;
    font-weight: 900;
}

.highlight-white {
    color: #ffffff;
}

.highlight-yt {
    color: #ffffff;
}

.hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 520px;
}

/* ===== CTA Button ===== */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0049d4;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 73, 212, 0.35);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 73, 212, 0.55);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.cta-btn.pulse {
    animation: ctaPulse 0.6s ease;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 0 4px 40px rgba(255, 255, 255, 0.35);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    }
}

.cta-btn--large {
    font-size: 1.15rem;
    padding: 22px 50px;
}

/* ===== Trust Items ===== */

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

.hero-visual {
    position: relative;
    flex: 0 0 580px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -60px;
}

.hero-ring {
    position: absolute;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.hero-person {
    position: relative;
    z-index: 2;
    width: 580px;
    max-height: 580px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 20px;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.1)) blur(0.5px);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at center 45%, rgba(0,0,0,1) 45%, rgba(0,0,0,0.3) 72%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse 90% 90% at center 45%, rgba(0,0,0,1) 45%, rgba(0,0,0,0.3) 72%, rgba(0,0,0,0) 100%);
}

/* ===== Scroll Indicator ===== */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: rotate(45deg) translateY(8px);
        opacity: 1;
    }
}

/* ===== VIDEO BLOCK (inside hero) ===== */

.hero-video-block {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
}

.video-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.video-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #0049d4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 73, 212, 0.35);
    animation: iconPulseGlow 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes iconPulseGlow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 73, 212, 0.35);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 73, 212, 0.55);
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Custom Video Player ===== */

.video-wrapper--custom {
    padding-bottom: 0;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.custom-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.custom-player:fullscreen {
    border-radius: 0;
}

.custom-player__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

/* Overlay with big play */
.custom-player__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.custom-player__overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.custom-player__big-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.custom-player__big-play:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.custom-player__big-play svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
}

/* Controls bar */
.custom-player__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-player:hover .custom-player__controls,
.custom-player__controls.visible {
    opacity: 1;
}

.custom-player__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.custom-player__btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.custom-player__btn svg {
    width: 20px;
    height: 20px;
}

/* Progress bar */
.custom-player__progress {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: height 0.15s ease;
}

.custom-player__progress:hover {
    height: 8px;
}

.custom-player__progress-filled {
    height: 100%;
    background: #fff;
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.custom-player__progress-filled::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255,255,255,0.4);
    transition: transform 0.15s ease;
}

.custom-player__progress:hover .custom-player__progress-filled::after {
    transform: translateY(-50%) scale(1);
}

/* Time display */
.custom-player__time {
    font-family: 'Inter', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 85px;
    text-align: center;
}

/* Volume */
.custom-player__volume {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.custom-player__vol-slider {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: width 0.2s ease;
}

.custom-player__vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.custom-player__vol-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .custom-player__big-play {
        width: 60px;
        height: 60px;
    }

    .custom-player__big-play svg {
        width: 28px;
        height: 28px;
    }

    .custom-player__time {
        display: none;
    }

    .custom-player__vol-slider {
        width: 40px;
    }

    .custom-player__controls {
        gap: 6px;
        padding: 8px 10px;
    }
}

/* ===== BENEFITS SECTION ===== */

.benefits {
    position: relative;
    background: #fff;
    padding: 80px 40px 80px;
    color: #1a1a1a;
}

.wave-divider {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.benefits-inner {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.benefits-left {
    flex: 1;
}

.benefits-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.red-box {
    background: #0049d4;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 900;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 12px 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefits-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #0049d4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.benefits-right {
    flex: 0 0 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.money-visual {
    position: relative;
    margin-top: -100px;
    margin-bottom: -100px;
    z-index: 10;
}

.money-image {
    max-width: 350px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

@keyframes moneyBounce {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-15px) rotate(2deg) scale(1.02);
    }
}

/* Reference Card (Second Block) */

.benefits-card+.benefits-card {
    margin-top: 40px;
}

.reference-card {
    background: #f9f9f9;
    gap: 40px;
}

.reference-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-img {
    max-width: 130%;
    width: 120%;
    margin-left: -10%;
    border-radius: 12px;
    transform: perspective(1000px) rotateY(8deg) rotateX(2deg) rotateZ(-2deg);
    box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.tablet-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.05);
}

.reference-right {
    flex: 1;
}

.reference-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.monetization-badge {
    background: #0049d4;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 900;
}

.reference-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reference-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 12px 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reference-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ref-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #0049d4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* ===== PILLARS SECTION ===== */

.pillars {
    background: #0a0a0a;
    padding: 100px 40px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #0049d4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
}

.pillars-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.35;
    color: #fff;
}

.pillars-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.05);
}

.pillar-card--bonus {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.pillar-card--bonus:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.pillar-card.pillar-card--bonus h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pillar-icon--bonus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #0049d4;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pillar-icon--red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.pillar-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== SOCIAL PROOF SECTION ===== */

.proof {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    padding: 100px 40px;
    text-align: center;
}

.proof-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.proof-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}

/* Carousel */

.proof-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 16px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 12px;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 73, 212, 0.35);
    background: rgba(0, 73, 212, 0.15);
    color: #0049d4;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
    background: rgba(0, 73, 212, 0.3);
    border-color: rgba(0, 73, 212, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 73, 212, 0.25);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 73, 212, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #0049d4;
    box-shadow: 0 0 10px rgba(0, 73, 212, 0.4);
    transform: scale(1.2);
}

.carousel-dot:hover:not(.active) {
    background: rgba(0, 73, 212, 0.55);
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease forwards;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}

/* ===== FINAL CTA ===== */

.final-cta {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, #0a0a0a 70%);
    padding: 100px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
}

.final-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 40px;
}

.final-cta-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 32px;
}

.price-from {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.price-from s {
    color: rgba(255, 255, 255, 0.5);
}

.price-to {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
}

.price-value strong {
    color: #ffffff;
}

.price-cash {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */

.footer {
    background: #050505;
    padding: 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer {
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .mobile-only {
        display: flex !important;
    }
    .desktop-only {
        display: none !important;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }
    .hero-content {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-badge {
        display: none !important;
    }
    .hero-glow {
        display: none !important;
    }
    .hero-subtext {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto 30px;
        /* Center and add space below */
    }
    .hero-headline {
        font-size: 2rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    .benefits-card {
        flex-direction: column;
        text-align: center;
    }
    .benefits-right {
        display: none;
    }
    .reference-left {
        width: 100%;
        justify-content: center;
    }
    .tablet-img {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        transform: none;
    }
    .tablet-img:hover {
        transform: scale(1.02);
    }
    .float-badge--1 {
        right: 0;
        top: 20px;
    }
    .float-badge--2 {
        left: 0;
        bottom: 40px;
    }
    .hero-video-block {
        padding-top: 30px;
    }
    .video-section-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 600px) {
    .announcement-bar {
        box-shadow: none;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    .hero {
        padding: 30px 20px 50px;
    }
    .hero-headline {
        font-size: 1.6rem;
    }
    .hero-subtext {
        font-size: 0.95rem;
    }
    .cta-btn {
        font-size: 0.85rem;
        padding: 16px 28px;
    }
    .cta-btn--large {
        font-size: 0.95rem;
        padding: 18px 32px;
    }
    .hero-video-block {
        padding-top: 20px;
    }
    .video-section-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
        gap: 10px;
    }
    .video-title-icon {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }
    .video-wrapper {
        border-radius: 10px;
    }
    .benefits,
    .pillars,
    .proof,
    .final-cta {
        padding: 60px 20px;
    }
    .benefits-card {
        padding: 24px 20px;
    }
    .benefits-list li,
    .reference-list li {
        font-size: 0.85rem;
        padding: 16px;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    .pillar-card {
        padding: 32px 20px;
    }
    .pillars-title,
    .proof-title,
    .final-cta-title {
        font-size: 1.5rem;
    }
    .benefits-left h2 {
        font-size: 1.4rem;
    }
    .price-value {
        font-size: 1.7rem;
    }
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
}