/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 1.5rem 2rem;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #0a1930 0%, #1a365d 100%),
        radial-gradient(circle at 20% 20%, rgba(64, 144, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(64, 144, 255, 0.15) 0%, transparent 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 
        inset 0 0 150px rgba(0, 0, 0, 0.4),
        inset 0 0 50px rgba(64, 144, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Overlay and Glow Effects */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>'),
        radial-gradient(circle at 30% 30%, rgba(64, 144, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(64, 144, 255, 0.1) 0%, transparent 60%);
    mix-blend-mode: overlay;
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(64, 144, 255, 0.2) 0%, rgba(64, 144, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glow 12s infinite alternate ease-in-out;
    filter: blur(60px);
    mix-blend-mode: screen;
}

.hero-glow:nth-child(2) {
    right: -20%;
    top: -20%;
    animation-delay: -6s;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128, 179, 255, 0.2) 0%, rgba(128, 179, 255, 0) 70%);
}

/* Particles Animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    animation: float 20s infinite linear;
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(64, 144, 255, 0.4);
}

/* Main Content Layout */
.hero-content {
    position: relative;
    max-width: 1400px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    z-index: 1;
}

/* Left Side Content */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Badge Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: #fff;
    max-width: fit-content;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-badge:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.badge-icon img {
    width: 18px;
    height: auto;
    vertical-align: middle;
}

.badge-highlight {
    background: linear-gradient(135deg, #4090ff 0%, #80b3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(64, 144, 255, 0.3);
}

/* Heading Styles */
.hero-left h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #4090ff 0%, #80b3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: none;
    animation: shimmer 3s infinite;
    background-size: 200% 100%;
}

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

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 85%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.cta-button.primary {
    background: linear-gradient(135deg, #4090ff 0%, #80b3ff 100%);
    color: #fff;
    box-shadow: 
        0 4px 20px rgba(64, 144, 255, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button.primary::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: 0.6s;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(64, 144, 255, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

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

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-value {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.trust-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Right Side Content */
.hero-right {
    position: relative;
    perspective: 2000px;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transform: rotateY(-5deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px) translateZ(30px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-card.active {
    background: rgba(64, 144, 255, 0.15);
    border: 1px solid rgba(64, 144, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(64, 144, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.card-price {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-before {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-after {
    background: linear-gradient(135deg, #4090ff 0%, #80b3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

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

/* Bottom Scroll Indicator */
.hero-bottom {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -0.5rem;
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
}

.scroll-indicator:hover {
    color: #fff;
    transform: translateY(-3px);
}

.scroll-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.scroll-icon {
    font-size: 1.4rem;
    animation: bounce 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes glow {
    0% {
        opacity: 0.4;
        transform: translate(-15%, -15%) scale(0.8);
    }
    100% {
        opacity: 0.7;
        transform: translate(15%, 15%) scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding: 0 2rem;
    }

    .hero-badge, .hero-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-left h1 {
        font-size: 3.2rem;
    }

    .feature-cards {
        transform: none;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 1.5rem;
    }

    .hero-content {
        margin-top: 0.2rem;
    }

    .hero-badge {
        margin-top: -0.8rem;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}
