/* =========================================
   CSS Variables & Theme
   ========================================= */
:root {
    --bg-color: #0b0f19;
    --bg-secondary: #131a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-green: #00d26a;
    --accent-green-hover: #00ea76;
    --accent-blue: #3b82f6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.outfit-font {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.highlight {
    color: var(--accent-green);
    background: -webkit-linear-gradient(180deg, var(--accent-green) 0%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   Glassmorphism Utilities
   ========================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
}

/* =========================================
   Buttons & CTAs
   ========================================= */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.huge-green-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, #009649 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.3);
    font-size: 1.4rem;
    padding: 1.75rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.huge-green-cta:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.6);
}

.secondary-cta {
    background-color: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.secondary-cta:hover {
    background-color: var(--accent-green);
    color: #000;
    transform: translateY(-2px);
}

.primary-cta {
    background: linear-gradient(135deg, #00d26a 0%, #009649 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.outline-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.outline-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.glow-effect {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 210, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 106, 0);
    }
}

/* =========================================
   Floating Horizontal Menu (Pill)
   ========================================= */
.floating-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all var(--transition-medium);
    border-radius: 50px;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 210, 106, 0.15);
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    width: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

.nav-brand:hover {
    filter: brightness(1.15);
}

/* Logo Container with Glow */
.logo-container {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-glow {
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: conic-gradient(
        from 0deg,
        rgba(0, 210, 106, 0.6),
        rgba(59, 130, 246, 0.4),
        rgba(147, 51, 234, 0.3),
        rgba(0, 210, 106, 0.6)
    );
    filter: blur(8px);
    opacity: 0.5;
    animation: logoGlowRotate 4s linear infinite;
    z-index: 0;
}

.logo-ring {
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    );
    z-index: 1;
    animation: logoGlowRotate 3s linear infinite;
}

.logo-ring::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 9px;
    background: #0d1220;
}

@keyframes logoGlowRotate {
    to { transform: rotate(360deg); }
}

.nav-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Brand Text */
.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    letter-spacing: 0.5px;
}

.brand-fx {
    color: #fff;
    letter-spacing: 1.5px;
}

.brand-accent {
    background: linear-gradient(135deg, var(--accent-green) 0%, #34d399 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(160, 174, 192, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tagline-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 6px var(--accent-green), 0 0 12px rgba(0, 210, 106, 0.4);
    animation: taglinePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes taglinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.horizontal-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding-right: 1rem;
    list-style: none;
    margin: 0;
}

.horizontal-menu a:not(.nav-cta) {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast), transform var(--transition-fast);
    position: relative;
    padding: 0.5rem;
}

.horizontal-menu a:not(.nav-cta):hover {
    color: var(--accent-green);
    transform: scale(1.05);
    /* Slight pop effect */
}

.horizontal-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-green);
    transition: width var(--transition-fast), left var(--transition-fast);
    box-shadow: 0 0 10px var(--accent-green);
    border-radius: 3px;
}

.horizontal-menu a:not(.nav-cta):hover::after {
    width: 100%;
    left: 0;
}

.nav-cta {
    background: var(--accent-green);
    border: 1px solid var(--accent-green);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent-green);
    box-shadow: 0 0 15px rgba(0, 210, 106, 0.6);
}

/* =========================================
   1. Hero Section
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    /* Increased top padding for the fixed nav */
    background: radial-gradient(circle at center, #1b263b 0%, var(--bg-color) 70%);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    bottom: -50%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPHBhdGggZD0iTTAgMGg4djhIMHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+');
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
    will-change: transform;
}

/* Particles.js Canvas */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    will-change: transform;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.5) 0%, transparent 70%);
    top: -10%;
    right: 0; /* Changed from -5% to prevent horizontal scroll */
    animation: floatOrb 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    bottom: -15%;
    left: -5%;
    animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

/* Badge Label */
.badge-label {
    display: inline-block;
    background: rgba(0, 210, 106, 0.15);
    border: 1px solid rgba(0, 210, 106, 0.3);
    color: var(--accent-green);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 210, 106, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 210, 106, 0.4);
    }
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.proof-avatars {
    display: flex;
    gap: -0.25rem;
}

.avatar-dot {
    font-size: 0.6rem;
    animation: blink 2s ease-in-out infinite;
}

.avatar-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.avatar-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* ---- Glow Aura behind image ---- */
.image-glow-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 24px;
    background: conic-gradient(
        from 0deg,
        rgba(0, 210, 106, 0.35),
        rgba(59, 130, 246, 0.25),
        rgba(147, 51, 234, 0.2),
        rgba(0, 210, 106, 0.35)
    );
    filter: blur(50px);
    opacity: 0.6;
    animation: auraRotate 6s linear infinite;
    z-index: 0;
}

@keyframes auraRotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- Image Frame with animated gradient border ---- */
.image-frame {
    position: relative;
    border-radius: 18px;
    padding: 3px;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    );
    animation: frameRotate 4s linear infinite;
    z-index: 1;
}

.image-frame-border {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    );
    opacity: 0.5;
    filter: blur(12px);
    z-index: -1;
    animation: frameRotate 4s linear infinite;
}

@keyframes frameRotate {
    to { background: conic-gradient(
        from 360deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    ); }
}

.hero-personal-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    position: relative;
    z-index: 1;
}

/* ---- Floating Badges - Premium Redesign ---- */
.floating-badge {
    position: absolute;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 3;
    min-width: 150px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 210, 106, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 210, 106, 0.15);
}

.badge-top-right {
    top: 8%;
    right: -12%;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-bottom-left {
    bottom: 12%;
    left: -15%;
    animation: floatBadge 3s ease-in-out infinite 1.5s;
}

.badge-bottom-right {
    bottom: -5%;
    right: -10%;
    animation: floatBadge 3s ease-in-out infinite 0.75s;
}

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

.badge-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 210, 106, 0.12);
    border: 1px solid rgba(0, 210, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(160, 174, 192, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-green), #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: badgePulse 2s ease-in-out infinite;
    margin-left: auto;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ---- Verified Trader Badge ---- */
.verified-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 1rem;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.15);
    white-space: nowrap;
}

.verified-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    will-change: transform, opacity;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
}

.hero-headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.05;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subheadline {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 90%;
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* (hero-personal-image styles are defined above with gradient border) */

.media-container {
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* =========================================
   2. Despre Mine Section - Premium Redesign
   ========================================= */
.about-section {
    padding: 8rem 0;
    background: radial-gradient(ellipse at 30% 50%, #1b263b 0%, var(--bg-color) 60%);
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Orbs */
.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.35;
    will-change: transform;
    pointer-events: none;
}

.about-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.45) 0%, transparent 70%);
    top: -5%;
    right: 10%;
    animation: floatOrb 9s ease-in-out infinite alternate;
}

.about-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    bottom: -10%;
    left: -3%;
    animation: floatOrb 11s ease-in-out infinite alternate-reverse;
}

.about-orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: floatOrb 13s ease-in-out infinite alternate;
}

/* Grid Overlay */
.about-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPC9zdmc+');
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Section Badge */
.about-section-badge {
    display: inline-block;
    background: rgba(0, 210, 106, 0.12);
    border: 1px solid rgba(0, 210, 106, 0.25);
    color: var(--accent-green);
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: shimmer 3s ease-in-out infinite;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-description p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-description strong {
    color: #fff;
    font-weight: 600;
}

/* ---- About Cards Grid - Premium Redesign ---- */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.about-card {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.3), rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.15));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 210, 106, 0.05);
    display: flex;
}

.about-card:hover {
    background: conic-gradient(
        from 0deg,
        rgba(0, 210, 106, 0.7),
        rgba(59, 130, 246, 0.5),
        rgba(147, 51, 234, 0.4),
        rgba(0, 210, 106, 0.7)
    );
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 210, 106, 0.12);
}

.about-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border-radius: 14px;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex: 1;
    width: 100%;
}

.about-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(0, 210, 106, 0.08) 0%,
        transparent 70%
    );
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.about-card:hover .about-card-glow {
    opacity: 1;
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(0, 210, 106, 0.12) 0%,
        transparent 70%
    );
}

.about-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 210, 106, 0.15);
    border: 1px solid rgba(0, 210, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 12px rgba(0, 210, 106, 0.1);
}

.about-card:hover .about-card-icon-wrap {
    background: rgba(0, 210, 106, 0.22);
    border-color: rgba(0, 210, 106, 0.5);
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.3);
}

.about-card .card-content {
    position: relative;
    z-index: 1;
}

.about-card .card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
}

.about-card .card-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

/* ---- Video Column - Premium Redesign ---- */
.about-video-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.featured-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(160, 174, 192, 0.8);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green), 0 0 16px rgba(0, 210, 106, 0.4);
    animation: taglinePulse 2s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

/* Animated gradient border frame for video */
.about-video-frame {
    position: relative;
    border-radius: 14px;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    );
    animation: frameRotate 4s linear infinite;
}

.about-video-frame-border {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    );
    opacity: 0.35;
    filter: blur(12px);
    z-index: -1;
    animation: frameRotate 4s linear infinite;
}

.about-video-frame .video-wrapper {
    padding: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.video-info {
    padding: 1.1rem 1.25rem;
    background: rgba(19, 26, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.video-info p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.video-disclaimer {
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.5;
    line-height: 1.5;
    padding: 0 0.25rem;
}


/* =========================================
   3. Payouts Section
   ========================================= */
.payouts-section {
    padding: 8rem 0;
    background: radial-gradient(ellipse at 70% 50%, #1b263b 0%, var(--bg-color) 60%);
    position: relative;
    overflow: hidden;
}

.payouts-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    gap: 2rem;
    text-align: left;
}

.payouts-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex-shrink: 0;
}

.payouts-middle-text {
    flex: 1;
    max-width: 500px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 2px solid rgba(0, 210, 106, 0.4);
    padding-left: 1.5rem;
    margin: 0 auto;
}

.payouts-total {
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 16px;
    padding: 1.25rem 3rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 210, 106, 0.1);
    animation: pulseGlow 4s infinite alternate;
    flex-shrink: 0;
}

.payouts-total-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.2rem;
}

.payouts-total-label {
    font-size: 0.9rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.payouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.payout-card {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.4), rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.payout-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 210, 106, 0.2);
}

.payout-card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        transparent,
        var(--accent-blue),
        transparent,
        var(--accent-green)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: frameRotate 4s linear infinite;
    z-index: 0;
}

.payout-card:hover .payout-card-border {
    opacity: 1;
}

.payout-card-inner {
    position: absolute;
    inset: 2px;
    background: rgba(11, 15, 25, 0.95);
    border-radius: 14px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payout-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity 0.3s ease, color 0.3s ease;
    width: 100%;
    height: 100%;
}

.payout-card:hover .payout-placeholder {
    opacity: 1;
    color: var(--accent-green);
}

.payout-placeholder svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(0, 210, 106, 0.2));
}

.payout-placeholder span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.payout-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* =========================================
   Lightbox Modal
   ========================================= */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Centering logic */
    display: none; /* Controlled by JS but styled for flex */
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal.show {
    opacity: 1;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 95vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: contain;
}

.image-modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-secondary);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.close-modal:hover {
    color: var(--accent-green);
    transform: scale(1.1);
}

/* =========================================
   4. Certification Section
   ========================================= */
.certification-section {
    padding: 8rem 0;
    background: radial-gradient(ellipse at 30% 50%, #1b263b 0%, var(--bg-color) 60%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cert-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cert-visual-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 210, 106, 0.15);
}

.image-glow-aura {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle at center, rgba(0, 210, 106, 0.25) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.cert-visual-wrapper:hover .image-glow-aura {
    opacity: 1;
}

.image-frame {
    position: relative;
    padding: 3px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(0, 210, 106, 0.05);
}

.image-frame-border {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(130deg, var(--accent-green) 0%, rgba(59, 130, 246, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.cert-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.cert-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.cert-hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.cert-neon-text {
    background: linear-gradient(135deg, var(--accent-green) 0%, rgba(59, 130, 246, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 210, 106, 0.5);
    font-weight: 800;
    display: inline-block;
    padding-top: 8px;
}

.about-section-badge {
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.2), rgba(0, 210, 106, 0.05));
    color: var(--accent-green);
    border: 1px solid rgba(0, 210, 106, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.2), inset 0 0 10px rgba(0, 210, 106, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cert-description {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cert-description p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.cert-description strong {
    color: #fff;
    font-weight: 600;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.skill-tags-fullwidth {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

/* =========================================
   Scroll Reveal Animations
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.skill-tag {
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 210, 106, 0.4);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.skill-tag:hover {
    color: #000;
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 25px rgba(0, 210, 106, 0.5);
    transform: translateY(-4px) scale(1.05);
}

/* =========================================
   5. Mentorat Section
   ========================================= */
.mentorship-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feedback-swiper-container {
    width: 100%;
    padding: 0 0 1rem;
    position: relative;
    overflow: hidden;
}

.feedback-swiper {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.swiper-slide.feedback-gallery-card {
    background-position: center;
    background-size: cover;
    width: 220px !important;
    height: auto;
    background: transparent;
    border: none;
    cursor: grab;
}

.modern-telegram-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
    overflow: hidden;
    z-index: 1;
    border: none;
    background: transparent;
}

.modern-telegram-btn::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 350%;
    top: -125%;
    left: -75%;
    background: conic-gradient(
        from 0deg,
        var(--accent-green),
        var(--accent-blue),
        #9333ea,
        var(--accent-green)
    );
    animation: btnRingRotate 3s linear infinite;
    z-index: -2;
}

.modern-telegram-btn::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 47px;
    background: linear-gradient(135deg, #00d26a 0%, #009649 100%);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes btnRingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modern-telegram-btn span {
    color: #0b0f19;
    font-weight: 800;
    transition: color 0.4s ease;
}

.modern-telegram-btn .tg-icon {
    color: #0b0f19;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.4s ease;
}

.modern-telegram-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 210, 106, 0.6);
}

.modern-telegram-btn:hover::after {
    background: linear-gradient(135deg, #00eba0 0%, var(--accent-green) 100%);
}

.modern-telegram-btn:hover span {
    color: #000;
}

.modern-telegram-btn:hover .tg-icon {
    transform: rotate(15deg) scale(1.15);
    color: #000;
}

.swiper-slide:active {
    cursor: grabbing;
}

/* Custom Swiper Navigation */
.feedback-swiper .swiper-button-next,
.feedback-swiper .swiper-button-prev {
    color: var(--accent-green);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 106, 0.3);
    transition: all 0.3s ease;
}

.feedback-swiper .swiper-button-next:after,
.feedback-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.feedback-swiper .swiper-button-next:hover,
.feedback-swiper .swiper-button-prev:hover {
    background: var(--accent-green);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.4);
}

.feedback-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.feedback-swiper .swiper-pagination-bullet-active {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

@media (max-width: 768px) {
    .swiper-slide.feedback-gallery-card {
        width: 280px !important;
    }
    
    .feedback-swiper .swiper-button-next,
    .feedback-swiper .swiper-button-prev {
        display: none; /* Hide arrows on mobile for better touch experience */
    }
}

.feedback-gallery-card {
    position: relative;
    border-radius: 12px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feedback-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 106, 0.15);
    z-index: 10;
}

.feedback-card-border {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.1), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s ease;
}

.feedback-gallery-card:hover .feedback-card-border {
    background: linear-gradient(130deg, var(--accent-green) 0%, rgba(59, 130, 246, 0.5) 100%);
}

.feedback-card-inner {
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.5);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.feedback-image {
    width: 100%;
    height: 100%;
    min-height: 150px;
    max-height: 40vh;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
    background-color: rgba(255, 255, 255, 0.05);
    display: block;
}

.feedback-gallery-card:hover .feedback-image {
    transform: scale(1.03);
}

/* =========================================
   6. Grup Telegram / Comunitate Section
   ========================================= */
.community-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.community-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.community-features-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 210, 106, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 210, 106, 0.1);
}

.feature-icon {
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15), rgba(0, 210, 106, 0.05));
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--accent-green);
    flex-shrink: 0;
    border: 1px solid rgba(0, 210, 106, 0.2);
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

.feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: #fff;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.community-visual {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 15, 25, 0.8);
}

.community-highlight-glow {
    color: var(--accent-green);
    background: linear-gradient(135deg, #00eba0 0%, var(--accent-green) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 210, 106, 0.6), 0 0 40px rgba(0, 210, 106, 0.3);
    font-size: 1.1em;
    display: inline-block;
    letter-spacing: 1px;
}

.community-swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
}

.community-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-slider-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.community-slider-img:active {
    cursor: grabbing;
}

/* Custom Navigation for Community Swiper */
.community-swiper .swiper-button-next,
.community-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-swiper .swiper-button-next:after,
.community-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.community-swiper .swiper-button-next:hover,
.community-swiper .swiper-button-prev:hover {
    background: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
}

.community-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.community-swiper .swiper-pagination-bullet-active {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

/* =========================================
   5. Legal Footer Section
   ========================================= */
.legal-footer {
    background-color: #05080f;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.disclaimer {
    color: #4a5568;
    font-size: 0.8rem;
    max-width: 900px;
    line-height: 1.6;
}

.copyright {
    color: #4a5568;
    font-size: 0.85rem;
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 210, 106, 0.3);
    z-index: 9999;
    padding: 1.5rem 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.accept-btn {
    background: var(--accent-green);
    color: #0b0f19;
    border: none;
}

.accept-btn:hover {
    background: #00eba0;
    box-shadow: 0 0 15px rgba(0, 210, 106, 0.4);
}

.settings-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* =========================================
   Hamburger Menu Button
   ========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    margin-left: auto;
}

.hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   Responsive Design
   ========================================= */
.hide-on-desktop {
    display: none !important;
}

@media (max-width: 900px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .hide-on-desktop {
        display: block !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text-col {
        align-items: center;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .payouts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .community-content {
        text-align: center;
    }
    
    .community-content .section-title,
    .community-content .section-description {
        text-align: center !important;
    }
    
    .community-features-list li {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .about-text-col, .cert-text-col {
        text-align: center;
        align-items: center;
    }

    .skill-tags {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
        padding: 0 10px;
    }

    .skill-tag {
        padding: 0.5rem 0.2rem;
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modern-telegram-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Hamburger visible on mobile */
    .hamburger {
        display: flex;
    }

    /* Nav pill adjustments */
    .floating-nav {
        width: 92%;
        top: 0.75rem;
        padding: 0.5rem 0.75rem;
        gap: 0;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-brand {
        border-right: none;
        padding-right: 0;
        gap: 0.6rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .brand-tagline {
        font-size: 0.45rem;
        letter-spacing: 1.5px;
    }

    .logo-container {
        width: 32px;
        height: 32px;
    }

    .nav-logo {
        width: 28px;
        height: 28px;
    }

    /* Mobile drawer */
    .horizontal-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    padding 0.3s ease;
        padding: 0;
        margin: 0;
        order: 10;
    }

    .horizontal-menu.open {
        max-height: 350px;
        opacity: 1;
        padding: 0.75rem 0 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 0.5rem;
    }

    .horizontal-menu a:not(.nav-cta) {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .horizontal-menu a:not(.nav-cta):hover {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }

    .horizontal-menu a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }
}

/* Adjust floating badges for medium and small desktops to prevent horizontal scroll */
@media (max-width: 1300px) {
    .badge-top-right {
        right: 0 !important;
    }
    .badge-bottom-right {
        right: 0 !important;
    }
    .badge-bottom-left {
        left: 0 !important;
    }
}

/* Mobile styles for smaller screens */
@media (max-width: 600px) {
    .hero-headline {
        font-size: 2rem;
    }

    .huge-green-cta {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .payouts-header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .payouts-title-wrapper {
        align-items: center;
    }

    .payouts-middle-text {
        border-left: none;
        border-top: 1px solid rgba(0, 210, 106, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
        text-align: center;
    }

    .payouts-total {
        width: 100%;
        align-items: center;
        padding: 1.25rem;
    }

    .payouts-grid {
        grid-template-columns: 1fr;
    }

    /* Stats - compact single row */
    .hero-stats {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.25rem;
        padding-top: 1rem;
        width: 100%;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        padding: 0.6rem 0.4rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        gap: 0.15rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    /* CTA buttons */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    /* Floating badges - reposition for mobile */
    .badge-top-right {
        top: 2%;
        right: 2%;
    }

    .badge-bottom-left {
        bottom: 8%;
        left: 2%; /* Move slightly inside to avoid horizontal scroll */
    }

    .badge-bottom-right {
        bottom: -8%;
        right: 2%; /* Move slightly inside to avoid horizontal scroll */
    }

    .hero-visual-wrapper {
        margin-bottom: 4rem; /* Additional space for bottom badges on mobile */
    }

    .hero-section {
        padding-bottom: 8rem !important;
    }

    .floating-badge {
        padding: 0.5rem 0.7rem;
        min-width: 120px;
        border-radius: 10px;
    }

    .badge-icon-wrap {
        width: 26px;
        height: 26px;
        border-radius: 7px;
    }

    .badge-icon-wrap svg {
        width: 12px;
        height: 12px;
    }

    .badge-value {
        font-size: 0.9rem;
    }

    .badge-title {
        font-size: 0.5rem;
    }

    .badge-pulse-dot {
        width: 5px;
        height: 5px;
    }

    .verified-badge {
        padding: 0.3rem 0.75rem;
    }

    .verified-badge span {
        font-size: 0.6rem;
    }
}