/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #c2e215;
    --primary-dark: #a0b812;
    --secondary-color: #d4f03a;
    --accent-color: #c2e215;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-dark: #000000;
    --bg-light: #0a0a0a;
    --bg-white: #1a1a1a;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --gradient-1: linear-gradient(135deg, #000000 0%, #c2e215 100%);
    --gradient-2: linear-gradient(135deg, #c2e215 0%, #000000 100%);
    --gradient-3: linear-gradient(135deg, #000000 0%, #c2e215 50%, #000000 100%);
    --gradient-4: linear-gradient(45deg, #c2e215 0%, rgba(194, 226, 21, 0.3) 50%, #000000 100%);
    --gradient-5: linear-gradient(180deg, #000000 0%, rgba(194, 226, 21, 0.1) 50%, #000000 100%);
    --gradient-6: radial-gradient(circle at top right, rgba(194, 226, 21, 0.2) 0%, transparent 50%);
    --gradient-7: radial-gradient(circle at bottom left, rgba(194, 226, 21, 0.15) 0%, transparent 50%);
    --shadow-sm: 0 2px 4px rgba(194, 226, 21, 0.1);
    --shadow-md: 0 4px 6px rgba(194, 226, 21, 0.2);
    --shadow-lg: 0 10px 25px rgba(194, 226, 21, 0.3);
    --shadow-xl: 0 20px 40px rgba(194, 226, 21, 0.4);
    --shadow-glow: 0 0 20px rgba(194, 226, 21, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-dark);
    position: relative;
    letter-spacing: -0.01em;
}

/* Apply Monument Extended to all headings */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.work-talks-title,
.how-it-works-title,
.founder-title,
.founder-name,
.solution-title,
.testimonials-title,
.video-portfolio-title,
.why-not-growing-title,
.step-title,
.solution-card-title,
.testimonial-text,
.author-name {
    font-family: var(--font-heading);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(194, 226, 21, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(194, 226, 21, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Removed body > * z-index rule to prevent conflicts */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(194, 226, 21, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border: 1px solid rgba(194, 226, 21, 0.2);
    padding: 0.5rem 2rem;
    margin: 1rem 0 0;
    border-radius: 100px;
    width: auto;
    min-width: fit-content;
    max-width: calc(100% - 2rem);
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(194, 226, 21, 0.2);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    margin-top: 0.5rem;
    padding: 0.4rem 2rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 2rem;
    white-space: nowrap;
    position: relative;
}

.navbar .container {
    width: auto;
    padding: 0;
    max-width: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
    padding: 0;
    margin: 0;
    transition: var(--transition);
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(194, 226, 21, 0.5));
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(194, 226, 21, 0.8));
    transform: scale(1.05);
}

.logo:focus {
    outline: none;
}

.logo:focus-visible {
    outline: 2px solid rgba(194, 226, 21, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li:last-child {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(194, 226, 21, 0.2);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c2e215 0%, rgba(194, 226, 21, 0.5) 100%);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(194, 226, 21, 0.5);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(194, 226, 21, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-btn {
    background: linear-gradient(135deg, rgba(194, 226, 21, 0.9) 0%, rgba(160, 184, 18, 0.9) 100%);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #000000 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(194, 226, 21, 0.3);
    box-shadow: 0 4px 15px rgba(194, 226, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background: linear-gradient(135deg, rgba(212, 240, 58, 0.95) 0%, rgba(194, 226, 21, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(194, 226, 21, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: none;
    color: #000000 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(194, 226, 21, 0.5);
    pointer-events: none;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 5rem;
    overflow: hidden;
    z-index: 5;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: -1;
}

.mascot-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-mascot.png');
    background-size: contain;
    background-position: center 40%;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    animation: float-mascot 8s ease-in-out infinite;
}

@keyframes float-mascot {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-20px) scale(1.02);
        opacity: 0.5;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(194, 226, 21, 0.15) 0%, rgba(194, 226, 21, 0.08) 30%, rgba(194, 226, 21, 0.03) 60%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin-top: 8rem;
}

.hero-content {
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    color: #F0FFA1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(240, 255, 161, 0.3);
}

.highlight {
    background: linear-gradient(120deg, #c2e215 0%, #d4f03a 50%, #c2e215 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(194, 226, 21, 0.5);
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(194, 226, 21, 0.9) 0%, rgba(160, 184, 18, 0.9) 100%);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(194, 226, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(194, 226, 21, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 226, 21, 0.6);
    background: linear-gradient(135deg, #d4f03a 0%, #c2e215 100%);
}

.btn-secondary {
    background: rgba(194, 226, 21, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: #c2e215;
    border: 1px solid rgba(194, 226, 21, 0.4);
    box-shadow: 0 0 15px rgba(194, 226, 21, 0.3);
}

.btn-secondary:hover {
    background: rgba(194, 226, 21, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #d4f03a;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(194, 226, 21, 0.5);
    border-color: rgba(212, 240, 58, 0.6);
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   YouTubers Section
   ============================================ */
.youtubers-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.youtubers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.youtubers-section > * {
    position: relative;
    z-index: 1;
}

.youtubers-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #c2e215 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.youtubers-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.youtubers-slider {
    display: flex;
    width: fit-content;
    animation: slide-infinite 30s linear infinite;
    position: relative;
    z-index: 1;
    padding: 0;
    transform: translateX(-50%);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.youtubers-slide {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes slide-infinite {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.youtuber-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(194, 226, 21, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(194, 226, 21, 0.2);
    position: relative;
    z-index: 1;
}

.youtuber-logo:hover {
    transform: scale(1.1);
    z-index: 10;
}

.youtuber-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.placeholder-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194, 226, 21, 0.3) 0%, rgba(194, 226, 21, 0.1) 100%);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(194, 226, 21, 0.5);
}

/* ============================================
   Thumbnails & Videos Section
   ============================================ */
.thumbnails-videos-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.thumbnails-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0 10px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.thumbnails-slider {
    display: flex;
    width: fit-content;
    animation: slide-thumbnails 90s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    transition: none;
}

.thumbnails-slider-wrapper {
    transform: translateZ(0);
}

.thumbnails-slider-wrapper:hover .thumbnails-slider {
    animation-play-state: paused;
}

.thumbnails-slide:hover .thumbnails-slider {
    animation-play-state: paused;
}

.thumbnails-slide {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.thumbnails-slide:has(.thumbnail-card:hover) .thumbnails-slider,
.thumbnails-slide:has(.thumbnail-card:hover) ~ .thumbnails-slide .thumbnails-slider {
    animation-play-state: paused;
}

@keyframes slide-thumbnails {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.thumbnail-card {
    width: 450px;
    height: 253px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(194, 226, 21, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(194, 226, 21, 0.1);
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.thumbnail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(194, 226, 21, 0.4);
    box-shadow: 0 8px 25px rgba(194, 226, 21, 0.3), 0 0 20px rgba(194, 226, 21, 0.2);
}

.thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.videos-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 10px 0 20px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.videos-slider {
    display: flex;
    width: fit-content;
    animation: slide-videos 60s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    transition: none;
}

.videos-slider-wrapper {
    transform: translateZ(0);
}

.videos-slider-wrapper:hover .videos-slider {
    animation-play-state: paused;
}

.videos-slide:hover .videos-slider {
    animation-play-state: paused;
}

.videos-slide {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.videos-slide:has(.video-card:hover) .videos-slider,
.videos-slide:has(.video-card:hover) ~ .videos-slide .videos-slider {
    animation-play-state: paused;
}

@keyframes slide-videos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.videos-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.video-card {
    text-decoration: none;
    display: block;
    width: calc((100vw - 4rem) / 2);
    max-width: 600px;
    height: calc(((100vw - 4rem) / 2) * 0.5625);
    max-height: 338px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(194, 226, 21, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(194, 226, 21, 0.1);
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(194, 226, 21, 0.4);
    box-shadow: 0 8px 25px rgba(194, 226, 21, 0.3), 0 0 20px rgba(194, 226, 21, 0.2);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    display: block;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 5rem 0;
    padding-top: 0 !important;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats-section > * {
    position: relative;
    z-index: 10;
}

.stats-section .container {
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.stat-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    border-color: rgba(194, 226, 21, 0.6);
    box-shadow: 0 0 20px rgba(194, 226, 21, 0.3);
    transform: scale(1.1);
}

.stat-card:hover .stat-icon i {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(194, 226, 21, 0.5);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   Why Your Channel Isn't Growing Section
   ============================================ */
.why-not-growing-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.why-not-growing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(194, 226, 21, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(194, 226, 21, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.why-not-growing-section > * {
    position: relative;
    z-index: 10;
}

.why-not-growing-section .container {
    position: relative;
    z-index: 10;
}

.why-not-growing-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.why-not-growing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
    perspective: 2000px;
}

.why-not-growing-card {
    background: 
        linear-gradient(135deg, rgba(194, 226, 21, 0.08) 0%, rgba(160, 184, 18, 0.05) 100%),
        rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 32px;
    padding: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    animation: card-float 6s ease-in-out infinite;
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    height: auto;
}


.why-not-growing-card:nth-child(1) {
    animation-delay: 0s;
}

.why-not-growing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-not-growing-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes card-float {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg) rotateY(1deg);
    }
}

.why-not-growing-card:hover,
.why-not-growing-card.card-hovered {
    border-color: rgba(194, 226, 21, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation-play-state: paused !important;
}


.why-not-growing-icon {
    width: calc(100% - 4rem);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 2rem 2.5rem 2rem;
    padding-left: 1rem;
    color: #ffffff;
    font-size: 4rem;
    position: relative;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    z-index: 2;
    flex-shrink: 0;
    background: 
        linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 20px;
}

.why-not-growing-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.why-not-growing-card:hover .why-not-growing-icon {
    transform: translateZ(30px) scale(1.02);
}

.why-not-growing-card:hover .why-not-growing-icon i {
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.3));
}

.why-not-growing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    transition: all 0.4s ease;
    transform: translateZ(20px);
    position: relative;
    z-index: 2;
    flex-grow: 0;
    padding: 0 2rem;
    text-align: left;
}

.why-not-growing-card:hover .why-not-growing-card-title {
    color: #ffffff;
    transform: translateZ(30px);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.2);
}

.why-not-growing-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    transition: all 0.4s ease;
    transform: translateZ(10px);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    padding: 0 2rem 2.5rem 2rem;
    text-align: left;
}

.why-not-growing-card:hover .why-not-growing-card-description {
    color: rgba(255, 255, 255, 0.95);
    transform: translateZ(20px);
}

.why-not-growing-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.why-not-growing-btn {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(194, 226, 21, 0.5);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(194, 226, 21, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.why-not-growing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 226, 21, 0.3), transparent);
    transition: left 0.6s ease;
}

.why-not-growing-btn:hover {
    border-color: rgba(194, 226, 21, 0.8);
    box-shadow: 
        0 8px 30px rgba(194, 226, 21, 0.4),
        0 0 50px rgba(194, 226, 21, 0.3),
        inset 0 0 20px rgba(194, 226, 21, 0.1);
    transform: translateY(-3px) scale(1.05);
    color: var(--primary-color);
}

.why-not-growing-btn:hover::before {
    left: 100%;
}

@media (max-width: 1200px) {
    .why-not-growing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 900px;
    }
    
    .why-not-growing-card {
        min-height: 480px;
    }
    
    .why-not-growing-icon {
        width: calc(100% - 3rem);
        margin: 1.5rem 1.5rem 2rem 1.5rem;
        padding-left: 1rem;
    }
    
    .why-not-growing-card-title {
        padding: 0 1.5rem;
    }
    
    .why-not-growing-card-description {
        padding: 0 1.5rem 2rem 1.5rem;
    }
}

@media (max-width: 968px) {
    .why-not-growing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .why-not-growing-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .why-not-growing-card {
        padding: 2.5rem 2rem;
        min-height: auto;
    }
    
    .why-not-growing-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        justify-content: center;
    }
    
    .why-not-growing-card-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        text-align: left;
        padding: 0 1.5rem;
    }
    
    .why-not-growing-card-description {
        font-size: 0.9rem;
        text-align: left;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* ============================================
   Solution Section
   ============================================ */
.solution-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.solution-section > * {
    position: relative;
    z-index: 10;
}

.solution-section .container {
    position: relative;
    z-index: 10;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(194, 226, 21, 0.1);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.solution-badge i {
    font-size: 1rem;
}

.solution-content {
    margin-bottom: 4rem;
}

.solution-left {
    max-width: 800px;
}

.solution-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-dot {
    color: var(--primary-color);
}

.solution-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.solution-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
}

.solution-cards-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-card {
    background: 
        linear-gradient(135deg, rgba(194, 226, 21, 0.05) 0%, rgba(160, 184, 18, 0.03) 100%),
        rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 226, 21, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    overflow: hidden;
}

.solution-card-large {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    max-width: 100%;
}

.solution-card:hover {
    border-color: rgba(194, 226, 21, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.solution-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 226, 21, 0.1);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 16px;
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.solution-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.italic-text {
    font-style: italic;
}

.solution-card-visual {
    margin-top: auto;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(194, 226, 21, 0.2);
    padding: 1.5rem;
    max-width: 100%;
}

.ctr-thumbnail-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ctr-thumbnail-row {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.ctr-thumbnail-slide {
    display: flex;
    gap: 0.75rem;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: none;
}

.ctr-row-rtl .ctr-thumbnail-slide {
    animation-name: slide-rtl;
}

.ctr-row-ltr .ctr-thumbnail-slide {
    animation-name: slide-ltr;
}

@keyframes slide-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slide-ltr {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.ctr-thumbnail-item {
    min-width: 180px;
    max-width: 180px;
    width: 180px;
    height: 101px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ctr-thumbnail-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(194, 226, 21, 0.3);
    z-index: 10;
}

.ctr-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .solution-cards {
        max-width: 100%;
    }
    
    .ctr-thumbnail-item {
        min-width: 150px;
        max-width: 150px;
        width: 150px;
        height: 84px;
    }
}

@media (max-width: 968px) {
    .solution-section {
        padding: 5rem 0;
    }
    
    .solution-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
    
    .solution-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .solution-subtitle {
        font-size: 1rem;
    }
    
    .solution-content {
        margin-bottom: 3rem;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .solution-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .solution-card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .ctr-thumbnail-item {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
        height: 68px;
        border-radius: 8px;
    }
    
    .solution-card-visual {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .ctr-thumbnail-slider {
        gap: 0.75rem;
    }
    
    .ctr-thumbnail-slide {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .solution-title {
        font-size: 1.75rem;
    }
    
    .solution-subtitle {
        font-size: 0.95rem;
    }
    
    .solution-card {
        padding: 1.25rem;
    }
    
    .solution-card-title {
        font-size: 1.1rem;
    }
    
    .solution-card-description {
        font-size: 0.85rem;
    }
    
    .ctr-thumbnail-item {
        min-width: 100px;
        max-width: 100px;
        width: 100px;
        height: 56px;
        border-radius: 6px;
    }
    
    .solution-card-visual {
        padding: 0.75rem;
    }
    
    .ctr-thumbnail-slider {
        gap: 0.5rem;
    }
    
    .ctr-thumbnail-slide {
        gap: 0.4rem;
    }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.how-it-works-section > .container {
    position: relative;
    z-index: 10;
}

.how-it-works-section > * {
    position: relative;
    z-index: 10;
}

.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(194, 226, 21, 0.1);
    border: 1px solid rgba(194, 226, 21, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.how-it-works-badge i {
    font-size: 1rem;
}

.how-it-works-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.how-it-works-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.how-it-works-video-card {
    max-width: 700px;
    margin: 0 auto 4rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(194, 226, 21, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(194, 226, 21, 0.05) inset;
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 16 / 9;
    /* Fallback for older browsers */
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

@supports (aspect-ratio: 16 / 9) {
    .how-it-works-video-card {
        padding-bottom: 0;
    }
}

.how-it-works-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(194, 226, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

.how-it-works-video-card:hover::before {
    opacity: 1;
}

.how-it-works-video-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(194, 226, 21, 0.3),
                0 0 0 1px rgba(194, 226, 21, 0.1) inset;
    transform: translateY(-5px);
}

.how-it-works-video-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.how-it-works-steps {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-it-works-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(194, 226, 21, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.how-it-works-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(194, 226, 21, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.how-it-works-step:hover::before {
    opacity: 1;
}

.how-it-works-step:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(194, 226, 21, 0.2),
                0 0 0 1px rgba(194, 226, 21, 0.1) inset;
}

.step-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 226, 21, 0.1);
    border: 2px solid rgba(194, 226, 21, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.how-it-works-step:hover .step-icon-wrapper {
    background: rgba(194, 226, 21, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(194, 226, 21, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 226, 21, 0.1);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.how-it-works-step:hover .step-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.how-it-works-step:hover .step-icon i {
    color: #000000;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.how-it-works-button-wrapper {
    text-align: center;
}

.how-it-works-btn {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    color: #000000;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(194, 226, 21, 0.4);
    transition: all 0.3s ease;
}

.how-it-works-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(194, 226, 21, 0.5);
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .how-it-works-section {
        padding: 6rem 0;
    }

    .how-it-works-title {
        font-size: 2.8rem;
    }

    .how-it-works-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .how-it-works-video-card {
        margin-bottom: 3rem;
        border-radius: 16px;
    }

    .how-it-works-video-card video {
        border-radius: 14px;
    }

    .how-it-works-steps {
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .how-it-works-step {
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 5rem 0;
    }

    .how-it-works-title {
        font-size: 2.2rem;
    }

    .how-it-works-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .how-it-works-video-card {
        margin-bottom: 2.5rem;
        border-radius: 14px;
    }

    .how-it-works-video-card video {
        border-radius: 12px;
    }

    .how-it-works-steps {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .how-it-works-step {
        padding: 1.5rem;
        gap: 1rem;
        flex-direction: row;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1.15rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .how-it-works-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 4rem 0;
    }

    .how-it-works-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .how-it-works-title {
        font-size: 1.75rem;
    }

    .how-it-works-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .how-it-works-video-card {
        margin-bottom: 2rem;
        border-radius: 12px;
    }

    .how-it-works-video-card video {
        border-radius: 10px;
    }

    .how-it-works-steps {
        gap: 0.875rem;
        margin-bottom: 2rem;
    }

    .how-it-works-step {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .step-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
    }

    .step-icon i {
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .how-it-works-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 8rem 0;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.15) 0%, rgba(194, 226, 21, 0.1) 25%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.testimonials-section > * {
    position: relative;
    z-index: 10;
}

.testimonials-left {
    position: sticky;
    top: 120px;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(194, 226, 21, 0.15) 0%, rgba(160, 184, 18, 0.1) 100%);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.testimonials-badge i {
    font-size: 1rem;
    color: var(--primary-color);
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-right {
    display: flex;
    gap: 2rem;
    position: relative;
    height: 800px;
    overflow: hidden;
}

.testimonials-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-column-1 {
    animation: scrollUp 60s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.testimonials-column-2 {
    animation: scrollDown 60s linear infinite;
    will-change: transform;
    margin-top: 4rem;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes scrollUp {
    from {
        transform: translateY(0) translateZ(0);
    }
    to {
        transform: translateY(-50%) translateZ(0);
    }
}

@keyframes scrollDown {
    from {
        transform: translateY(-50%) translateZ(0);
    }
    to {
        transform: translateY(0) translateZ(0);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(194, 226, 21, 0.08) 0%, rgba(160, 184, 18, 0.05) 100%), rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(194, 226, 21, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Hover effects removed as per user request */

.testimonial-content {
    flex-grow: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(194, 226, 21, 0.2);
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(194, 226, 21, 0.3);
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a8b915 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: none;
    box-shadow: 0 10px 30px rgba(194, 226, 21, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(194, 226, 21, 0.4);
    background: linear-gradient(135deg, #d4f525 0%, var(--primary-color) 100%);
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonials-container {
        grid-template-columns: 40% 60%;
        gap: 3rem;
    }

    .testimonials-title {
        font-size: 2.8rem;
    }

    .testimonials-right {
        height: 700px;
    }
}

@media (max-width: 968px) {
    .testimonials-section {
        padding: 5rem 0;
        overflow: hidden;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .testimonials-left {
        position: relative;
        top: 0;
        text-align: center;
        align-items: center;
    }

    .testimonials-header {
        align-items: center;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

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

    .testimonials-right {
        flex-direction: row;
        height: 400px;
        overflow: hidden;
        width: 100%;
        gap: 1.5rem;
    }

    .testimonials-column {
        animation: mobileScrollLeft 50s linear infinite !important;
        flex-direction: row;
        min-width: fit-content;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .testimonials-column-1 {
        animation: mobileScrollLeft 50s linear infinite !important;
    }

    .testimonials-column-2 {
        margin-top: 0;
        animation: mobileScrollLeft 50s linear infinite !important;
    }

    @keyframes mobileScrollLeft {
        from {
            transform: translateX(0) translateZ(0);
        }
        to {
            transform: translateX(-50%) translateZ(0);
        }
    }

    .testimonial-card {
        padding: 2rem;
        min-width: 320px;
        max-width: 320px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-right {
        gap: 1.5rem;
        height: 350px;
    }

    .testimonial-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-details {
        font-size: 0.85rem;
    }

    .testimonials-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   The Work Talks Itself Section
   ============================================ */
.work-talks-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.work-talks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.work-talks-section > * {
    position: relative;
    z-index: 10;
}

.work-talks-section .container {
    position: relative;
    z-index: 10;
}

.work-talks-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.work-talks-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.work-talks-slider {
    display: flex;
    width: fit-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.work-talks-ltr {
    animation: slide-work-ltr 60s linear infinite;
}

.work-talks-rtl {
    animation: slide-work-rtl 60s linear infinite;
}

.work-talks-slider-wrapper:hover .work-talks-slider {
    animation-play-state: paused;
}

@keyframes slide-work-ltr {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slide-work-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.work-talks-slide {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.work-talks-card {
    width: 450px;
    height: 253px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(194, 226, 21, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(194, 226, 21, 0.1);
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.work-talks-card:hover {
    transform: translateY(-5px);
    border-color: rgba(194, 226, 21, 0.4);
    box-shadow: 0 8px 25px rgba(194, 226, 21, 0.3), 0 0 20px rgba(194, 226, 21, 0.2);
}

.work-talks-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive for Work Talks Section */
@media (max-width: 968px) {
    .work-talks-section {
        padding: 5rem 0;
    }

    .work-talks-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .work-talks-card {
        width: 350px;
        height: 197px;
    }

    .work-talks-slide {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .work-talks-title {
        font-size: 2rem;
    }

    .work-talks-card {
        width: 300px;
        height: 169px;
    }

    .work-talks-slide {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .work-talks-section {
        padding: 4rem 0;
    }

    .work-talks-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .work-talks-card {
        width: 280px;
        height: 158px;
    }

    .work-talks-slider-wrapper {
        padding: 10px 0;
    }
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 5;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.portfolio-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(194, 226, 21, 0.05);
    border: 2px solid rgba(194, 226, 21, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.portfolio-tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(194, 226, 21, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.portfolio-tab-btn:hover::before {
    width: 300px;
    height: 300px;
}

.portfolio-tab-btn:hover {
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(194, 226, 21, 0.3);
}

.portfolio-tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
    box-shadow: 0 5px 20px rgba(194, 226, 21, 0.4);
}

.portfolio-tab-btn.active::before {
    display: none;
}

.portfolio-tab-btn i,
.portfolio-tab-btn span {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Portfolio Content */
.portfolio-content {
    position: relative;
}

.portfolio-tab-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.portfolio-tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
}

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

/* Video Grid */
.portfolio-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-video-item {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(194, 226, 21, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(194, 226, 21, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.portfolio-video-item:hover::before {
    opacity: 1;
}

.portfolio-video-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(194, 226, 21, 0.3);
}

.video-card-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000000;
}

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

/* Graphics Grid */
.portfolio-graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-graphic-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.graphic-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 2px solid rgba(194, 226, 21, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.portfolio-graphic-item:hover .graphic-image-wrapper {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(194, 226, 21, 0.3);
    transform: translateY(-5px);
}

.graphic-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-graphic-item:hover .graphic-image-wrapper img {
    transform: scale(1.05);
}

.graphic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.portfolio-graphic-item:hover .graphic-overlay {
    opacity: 1;
}

.graphic-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.portfolio-graphic-item:hover .graphic-overlay i {
    transform: scale(1.1);
}

/* ============================================
   Photo Viewer Lightbox
   ============================================ */
.photo-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-viewer.active {
    display: flex;
    opacity: 1;
}

.photo-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.photo-viewer-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.photo-viewer-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-viewer.active .photo-viewer-content img {
    opacity: 1;
    animation: photoViewerFadeIn 0.3s ease;
}

@keyframes photoViewerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.photo-viewer-close {
    position: absolute;
    z-index: 3;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(194, 226, 21, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.photo-viewer-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
    transform: scale(1.1);
}

.photo-viewer-close {
    top: 20px;
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .photo-viewer-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .photo-viewer-content {
        max-width: 95%;
    }
    
    .photo-viewer-content img {
        max-height: 80vh;
    }
}

@media (max-width: 768px) {
    .portfolio-video-grid,
    .portfolio-graphics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(194, 226, 21, 0.08) 50%, #0a0a0a 100%);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(194, 226, 21, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(194, 226, 21, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.cta-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.cta-logo i {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(194, 226, 21, 0.5));
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.cta-dot {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(194, 226, 21, 0.8);
}


.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(194, 226, 21, 0.3), inset 0 0 20px rgba(194, 226, 21, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(194, 226, 21, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: rgba(194, 226, 21, 0.1);
    border-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(194, 226, 21, 0.5), 0 5px 25px rgba(194, 226, 21, 0.3), inset 0 0 30px rgba(194, 226, 21, 0.15);
}

.cta-button i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button span,
.cta-button {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-logo {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .portfolio-tabs {
        gap: 1rem;
    }
    
    .portfolio-tab-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #c2e215 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffffff 0%, #c2e215 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--bg-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-5);
    pointer-events: none;
    z-index: 0;
}

.services > * {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 1px rgba(194, 226, 21, 0.1);
    border: 1px solid rgba(194, 226, 21, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 226, 21, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(194, 226, 21, 0.4), inset 0 0 2px rgba(194, 226, 21, 0.3);
    border-color: rgba(194, 226, 21, 0.4);
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #c2e215 0%, #a0b812 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    box-shadow: 0 0 20px rgba(194, 226, 21, 0.5);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}


/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-6), var(--gradient-7);
    pointer-events: none;
    z-index: 0;
}

.about > * {
    position: relative;
    z-index: 1;
}

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

.about-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(194, 226, 21, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(26, 26, 26, 0.4);
    border-color: rgba(194, 226, 21, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(194, 226, 21, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c2e215 0%, #d4f03a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(194, 226, 21, 0.5);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.about-card {
    width: 300px;
    height: 300px;
    background: rgba(194, 226, 21, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c2e215;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(194, 226, 21, 0.4), inset 0 0 1px rgba(194, 226, 21, 0.3);
    border: 1px solid rgba(194, 226, 21, 0.3);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 226, 21, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

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

.about-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-4);
    pointer-events: none;
    z-index: 0;
}

.contact > * {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(194, 226, 21, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(26, 26, 26, 0.4);
    border-color: rgba(194, 226, 21, 0.2);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c2e215 0%, #a0b812 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(194, 226, 21, 0.5);
}

.info-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(194, 226, 21, 0.8);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(194, 226, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(194, 226, 21, 0.3);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(212, 240, 58, 0.9);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 6px 25px rgba(194, 226, 21, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(212, 240, 58, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(194, 226, 21, 0.2);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--text-dark);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(194, 226, 21, 0.2), 0 0 20px rgba(194, 226, 21, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   Founder Section
   ============================================ */
.founder-section {
    position: relative;
    padding: 0;
    min-height: 600px;
    overflow: visible;
    background: var(--bg-dark);
    z-index: 5;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    align-items: start;
}

.founder-left {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
    align-self: start;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.founder-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.founder-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.founder-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.founder-right {
    display: flex;
    align-items: flex-start;
    padding: 4rem;
    background: var(--bg-dark);
    position: relative;
    min-height: 100vh;
}

.founder-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(194, 226, 21, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.founder-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(194, 226, 21, 0.1);
    border: 1px solid rgba(194, 226, 21, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-badge i {
    font-size: 1rem;
}

.founder-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.founder-role {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founder-description-wrapper {
    position: relative;
    margin-top: 1rem;
}

.founder-description {
    position: relative;
}

.founder-description-fade-top,
.founder-description-fade-bottom {
    display: none;
}

.founder-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

.founder-description-fade-top,
.founder-description-fade-bottom {
    display: none;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(194, 226, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.faq-section > .container {
    position: relative;
    z-index: 10;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.faq-badge i {
    font-size: 1rem;
    color: #ffffff;
}

.faq-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-title .title-dot {
    color: var(--primary-color);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(194, 226, 21, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(194, 226, 21, 0.4);
    background: rgba(20, 20, 20, 0.6);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

.faq-icon {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
        min-height: 3.75rem;
    }
    
    .faq-question span {
        font-size: 1.05rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        min-width: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .faq-list {
        gap: 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 3.5rem;
    }

    .faq-icon {
        font-size: 1.1rem;
        min-width: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

}

/* Responsive Design */
@media (max-width: 992px) {
    .founder-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .founder-left {
        min-height: 400px;
    }

    .founder-image-wrapper {
        min-height: 400px;
        padding: 1.5rem;
    }

    .founder-right {
        padding: 3rem 2rem;
    }

    .founder-name {
        font-size: 2.8rem;
    }

    .founder-role {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }


    .founder-description p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .founder-left {
        min-height: 350px;
    }

    .founder-image-wrapper {
        min-height: 350px;
        padding: 1.25rem;
    }

    .founder-right {
        padding: 2.5rem 1.5rem;
    }

    .founder-name {
        font-size: 2.2rem;
    }

    .founder-role {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }


    .founder-description p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .founder-left {
        min-height: 300px;
    }

    .founder-image-wrapper {
        min-height: 300px;
        padding: 1rem;
    }

    .founder-right {
        padding: 2rem 1.25rem;
    }

    .founder-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .founder-name {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .founder-role {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }


    .founder-description p {
        font-size: 0.9rem;
    }

    .mascot-bg {
        top: -186px;
    }

}

/* ============================================
   Navigation Responsive Styles
   ============================================ */
@media (max-width: 968px) {
    .navbar {
        width: calc(100% - 2rem);
        margin: 0.5rem auto 0;
        padding: 0.5rem 1.5rem;
        border-radius: 15px;
        left: 50%;
        transform: translateX(-50%);
        overflow: visible;
    }

    .navbar.scrolled {
        margin-top: 0.25rem;
        padding: 0.4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 2rem);
        margin: 0.5rem auto 0;
        padding: 0.5rem 1.5rem;
        border-radius: 15px;
        left: 50%;
        transform: translateX(-50%);
        overflow: visible;
        max-width: calc(100vw - 2rem);
    }

    .navbar.scrolled {
        margin-top: 0.25rem;
        padding: 0.4rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateX(-100vw);
        width: calc(100% - 2rem);
        max-width: calc(100vw - 2rem);
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        margin: 0;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(194, 226, 21, 0.3);
        transition: transform 0.3s ease;
        border: 1px solid rgba(194, 226, 21, 0.2);
        border-radius: 20px;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 999;
        height: calc(100vh - 100px);
        align-items: center;
        justify-content: flex-start;
    }

    .nav-menu.active {
        transform: translateX(-50%);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .nav-menu li:last-child {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-link.nav-btn {
        margin: 1rem 0 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: auto;
        display: inline-block;
        min-width: 140px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 1rem);
        margin: 0.5rem auto 0;
        padding: 0.5rem 1rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-menu {
        width: calc(100% - 1rem);
        max-width: calc(100vw - 1rem);
        top: 70px;
        left: 50%;
        transform: translateX(-50%) translateX(-100vw);
        margin: 0;
    }
    
    .nav-menu.active {
        transform: translateX(-50%);
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.9rem;
    }
    
    .nav-link.nav-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        min-width: 120px;
    }

    .hero .container {
        margin-top: 0rem;
    }

}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, #000000 0%, rgba(194, 226, 21, 0.05) 50%, #000000 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(194, 226, 21, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c2e215 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.newsletter-form input {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    border: 1px solid rgba(194, 226, 21, 0.2);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: rgba(194, 226, 21, 0.8);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #000000;
    border: 1px solid rgba(194, 226, 21, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(194, 226, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newsletter-form button:hover {
    background: rgba(212, 240, 58, 0.9);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 6px 25px rgba(194, 226, 21, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(212, 240, 58, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(194, 226, 21, 0.8);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: #000000;
    border: 1px solid rgba(194, 226, 21, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(194, 226, 21, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: 999;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.back-to-top:hover {
    background: rgba(212, 240, 58, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(194, 226, 21, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(212, 240, 58, 0.6);
}

.back-to-top.show {
    display: flex;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero {
        padding-bottom: 4rem;
    }

    .mascot-bg {
        background-size: 80%;
        opacity: 0.3;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .youtuber-logo {
        width: 70px;
        height: 70px;
    }
}


@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    

    .hero {
        padding-bottom: 3rem;
    }

    .mascot-bg {
        background-size: 70%;
        opacity: 0.25;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

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


    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .youtubers-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .youtuber-logo {
        width: 60px;
        height: 60px;
    }

    .youtubers-slide {
        gap: 1rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .thumbnail-card {
        width: 350px;
        height: 197px;
    }

    .thumbnails-slide {
        gap: 1rem;
    }

    .video-card {
        width: calc((100vw - 3rem) / 2);
        height: calc(((100vw - 3rem) / 2) * 0.5625);
    }

    .videos-slide {
        gap: 1rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    
    .faq-question {
        font-size: 0.98rem;
        padding: 1rem 1.1rem;
    }
    
    .faq-question span {
        font-size: 0.98rem;
    }
    
    .faq-answer p {
        font-size: 0.92rem;
    }

    .hero {
        padding-bottom: 2rem;
    }

    .mascot-bg {
        background-size: 60%;
        opacity: 0.2;
    }

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

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

    .about-card {
        width: 250px;
        height: 250px;
    }

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

    .service-card {
        padding: 1.5rem;
    }


    .contact-content {
        gap: 2rem;
    }

    .stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .youtubers-title {
        font-size: 1.25rem;
    }

    .youtuber-logo {
        width: 50px;
        height: 50px;
    }

    .youtubers-section {
        padding: 3rem 0;
    }

    .stats-grid {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .thumbnail-card {
        width: 300px;
        height: 169px;
    }

    .thumbnails-slide {
        gap: 0.75rem;
    }

    .video-card {
        width: calc(100vw - 2rem);
        height: calc((100vw - 2rem) * 0.5625);
        max-width: none;
        max-height: none;
    }

    .videos-slide {
        gap: 0.75rem;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* Additional responsive enhancements */
@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth gradient animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(194, 226, 21, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(194, 226, 21, 0.8);
    }
}

/* Enhanced scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c2e215 0%, #a0b812 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4f03a 0%, #c2e215 100%);
}


