/* =============================================
   YEKWORK - DIJITAL REKLAM VE PAZARLAMA AJANSI
   Modern Dark Theme Website
   ============================================= */

/* =============================================
   CSS VARIABLES (DESIGN TOKENS)
   ============================================= */
:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #00d9ff;
    --accent-hover: #00a8cc;
    --accent-gradient: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);

    /* Typography */
    --font-primary: 'Archivo', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.7);
    --shadow-accent: 0 4px 20px rgba(0, 217, 255, 0.3);
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =============================================
   LOADING SCREEN
   ============================================= */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-secondary);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 9998;
    transition: width 0.1s ease;
    box-shadow: var(--shadow-accent);
}

/* =============================================
   PREMIUM NAVIGATION MENU - LUXURY DESIGN
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 9997;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 0 10px 50px rgba(0, 217, 255, 0.15),
                0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-normal);
    position: relative;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
    transition: var(--transition-normal);
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    color: var(--accent);
    font-size: 2rem;
    animation: dotPulse 2s ease-in-out infinite;
}

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

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo:hover .logo-image {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
}

.link-text {
    position: relative;
    z-index: 1;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active .link-underline {
    width: 100%;
}

/* Premium CTA Button in Nav */
.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--accent-gradient);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover .cta-shine {
    left: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
}

.toggle-bar {
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

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

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

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 3rem 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        padding: 1.5rem 0;
        font-size: 1.25rem;
    }

    .nav-cta {
        margin-top: 2rem;
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 1rem 2rem;
    }
}

@media (max-width: 767px) {
    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* =============================================
   SECTION TITLES - PREMIUM STYLING
   ============================================= */
.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
    z-index: 1;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1.5s ease;
    max-width: 1200px;
    padding: 0 2rem 3rem 2rem;
}

/* ===== HERO TITLE ===== */
.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -2px;
    color: var(--text-primary);
}

.hero-title .title-line {
    display: block;
}

.hero-title .typing-line {
    background: linear-gradient(135deg, #00d9ff 0%, #0099ff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.hero-title .typing-text {
    display: inline-block;
    min-width: 20px;
    min-height: 1em;
}

/* Typed.js cursor styling */
.typed-cursor {
    color: var(--accent);
    opacity: 1;
    animation: blink 0.7s infinite;
}

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

/* ===== HERO SUBTITLE ===== */
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-subtitle .highlight-text {
    color: var(--accent);
    font-weight: 600;
    position: relative;
}

/* ===== HERO CTA GROUP (Dual Buttons) ===== */
.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta-group .cta-button {
    position: relative;
    overflow: hidden;
}

.hero-cta-group .cta-primary {
    background: linear-gradient(135deg, #00d9ff 0%, #0099ff 50%, #0066ff 100%);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

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

.hero-cta-group .cta-secondary {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.5);
    box-shadow: none;
    color: var(--accent);
}

.hero-cta-group .cta-secondary:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent);
}

.hero-cta-group .cta-icon {
    margin-right: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-cta-group .cta-secondary:hover .cta-icon {
    transform: translateX(3px);
}

/* ===== HERO PARTNERS ===== */
.hero-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-partners .partners-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-partners .partners-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-partners .partner-name {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-partners .partner-name:hover {
    color: var(--accent);
}

.hero-partners .partner-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator .scroll-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator .scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-indicator .scroll-arrow svg {
    stroke: var(--accent);
}

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

/* =============================================
   CTA BUTTON - PREMIUM DESIGN
   ============================================= */
.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #00d9ff 0%, #0099ff 50%, #0066ff 100%);
    background-size: 200% 200%;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4),
                0 0 20px rgba(0, 217, 255, 0.3) inset;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4),
                    0 0 20px rgba(0, 217, 255, 0.3) inset;
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 10px 50px rgba(0, 217, 255, 0.6),
                    0 0 30px rgba(0, 217, 255, 0.4) inset;
    }
}

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

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease;
}

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

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.6),
                0 0 40px rgba(0, 217, 255, 0.5) inset,
                0 0 80px rgba(0, 217, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* =============================================
   AI REVOLUTION VIDEO SECTION - HERO SPOTLIGHT
   ============================================= */
/* =============================================
   AI REVOLUTION SECTION - REDESIGNED
   Video-centered layout with top/bottom content
   ============================================= */
.ai-revolution-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.ai-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}

.ai-bg-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation: float 20s ease-in-out infinite;
}

.ai-bg-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0066ff 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

/* Header Section (Top) */
.ai-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(0, 217, 255, 0); }
}

.badge-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.badge-label {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 2px;
}

.ai-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent) 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #00ffff);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.ai-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.ai-description strong {
    color: var(--accent);
    font-weight: 600;
}

/* Video Container (Center - Full Width) */
.ai-video-container {
    position: relative;
    margin: 0 0 var(--spacing-lg) 0;
    z-index: 1;
}

.video-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.frame-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--accent), #0066ff, #00ffff);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.video-frame:hover .frame-glow {
    opacity: 0.9;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-frame:hover .video-poster {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-frame:hover .video-play-overlay {
    opacity: 1;
}

.ai-play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-play-button:hover {
    transform: scale(1.15);
}

.play-circle {
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(0, 217, 255, 0.9));
    animation: pulseSlow 2.5s ease-in-out infinite;
}

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

.ai-play-button:hover .play-circle {
    filter: drop-shadow(0 25px 70px rgba(0, 217, 255, 1));
}

.play-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.video-corner-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.7);
    z-index: 2;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(0, 217, 255, 0);
    }
}

.badge-text {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 1.5px;
}

/* Features Grid (Bottom) */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.ai-feature-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #00ffff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.ai-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 8px 20px rgba(0, 217, 255, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.ai-feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* CTA Buttons (Bottom Center) */
.ai-cta-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ai-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #00d9ff 0%, #0099ff 50%, #0066ff 100%);
    background-size: 200% 200%;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.5);
    transition: all 0.4s ease;
    animation: buttonPulse 3s ease-in-out infinite;
}

.ai-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 217, 255, 0.7);
}

.cta-icon {
    font-size: 1.25rem;
}

.ai-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: transparent;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.ai-cta-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.ai-cta-secondary .arrow {
    transition: transform 0.3s ease;
}

.ai-cta-secondary:hover .arrow {
    transform: translateX(5px);
}

.ai-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Responsive - AI Revolution */
@media (max-width: 991px) {
    .ai-revolution-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ai-content {
        justify-content: flex-start;
    }

    .video-embed {
        aspect-ratio: 16 / 9;
        flex: 0 0 auto;
    }

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

    .ai-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .ai-revolution-section {
        padding: 4rem 0;
    }

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

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

    .ai-cta-wrapper {
        flex-direction: column;
    }

    .ai-cta-primary,
    .ai-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .ai-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* =============================================
   FEATURED WORK SHOWCASE - SENTETIKA STYLE
   ============================================= */
.featured-work {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.featured-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.featured-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.featured-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(0, 217, 255, 0.5);
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.featured-video-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.featured-video-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), #0066ff, #00ffff);
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.featured-video-card:hover::before {
    opacity: 1;
}

.featured-video-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: transparent;
    box-shadow: 0 40px 100px rgba(0, 217, 255, 0.6),
                0 0 80px rgba(0, 217, 255, 0.4) inset;
}

.video-wrapper {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-video-card:hover .video-thumbnail img {
    transform: scale(1.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-video-card:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-play-btn:hover {
    transform: scale(1.2) rotate(90deg);
}

.play-icon svg {
    filter: drop-shadow(0 10px 30px rgba(0, 217, 255, 0.8));
    transition: all 0.5s ease;
}

.video-play-btn:hover .play-icon svg {
    filter: drop-shadow(0 15px 50px rgba(0, 217, 255, 1));
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    font-size: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.video-badge span:last-child {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.video-content {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.video-category {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.video-duration {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.featured-video-card:hover .video-title {
    transform: translateX(5px);
}

.video-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.video-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 255, 0.4));
}

.stat-value {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.featured-video-card:hover .stat-value {
    color: var(--text-primary);
}

.featured-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.featured-cta .cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Responsive - Featured Work */
@media (max-width: 991px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .video-thumbnail {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-thumbnail {
        height: 250px;
    }

    .video-content {
        padding: 2rem 1.5rem;
    }

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

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
    }

    .video-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =============================================
   TRUSTED PARTNERS SECTION
   ============================================= */
.trusted-partners {
    padding: var(--spacing-lg) 0;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-grid:hover {
    opacity: 1;
}

.partner-logo {
    transition: all 0.3s ease;
    filter: grayscale(80%) opacity(0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo svg {
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

.partner-text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.partner-logo:hover .partner-text {
    color: var(--accent);
}

@media (max-width: 767px) {
    .partners-grid {
        gap: 1.5rem;
    }

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

/* =============================================
   PROCESS SECTION - ÇALIŞMA SÜRECİMİZ
   ============================================= */
.process {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.process-step {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4),
                0 0 40px rgba(0, 217, 255, 0.2) inset;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.7);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 217, 255, 0.4));
    position: relative;
    z-index: 1;
}

.process-step:hover .step-icon {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 8px 25px rgba(0, 217, 255, 0.7));
}

.step-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-title {
    color: var(--accent);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.process-step:hover .step-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive - Process */
@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

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

/* =============================================
   FAQ SECTION - SIK SORULAN SORULAR
   ============================================= */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Responsive - FAQ */
@media (max-width: 767px) {
    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }

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

    .faq-icon {
        font-size: 1.5rem;
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.about .section-title {
    color: var(--text-primary);
}

.about .section-subtitle {
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.8fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Responsive - Features Grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), #0066ff);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 25px 70px rgba(0, 217, 255, 0.4),
                0 0 50px rgba(0, 217, 255, 0.2) inset;
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 217, 255, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg) translateY(-10px);
    filter: drop-shadow(0 8px 20px rgba(0, 217, 255, 0.6));
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent) 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover h3 {
    transform: scale(1.05);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Analytics Corner Widget */
.analytics-corner {
    margin: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 217, 255, 0.1) inset;
    transition: all 0.4s ease;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.analytics-corner:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 217, 255, 0.3),
                0 0 60px rgba(0, 217, 255, 0.1) inset;
    transform: translateY(-5px);
}

.analytics-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.analytics-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.15);
    border-radius: 10px;
    color: var(--accent);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.analytics-header h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.analytics-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.metric-green {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: pulse 2s infinite;
}

.metric-red {
    background: #ff4d4d;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
    animation: pulse 2s infinite;
}

.metric-cyan {
    background: #00d9ff;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.metric-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.metric-positive {
    color: #00ff88;
}

.metric-negative {
    color: #ff4d4d;
}

.metric-chart {
    height: 30px;
    margin-top: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.metric-item:hover .metric-chart {
    opacity: 1;
}

.metric-chart svg polyline {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive - Analytics Corner */
@media (max-width: 768px) {
    .analytics-corner {
        margin: 0;
    }
}

/* =============================================
   IMPACT NUMBERS SECTION - ELEGANT SINGLE ROW
   ============================================= */
.impact {
    padding: var(--spacing-lg) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.impact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 100px;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 217, 255, 0.1) inset;
    transition: all 0.4s ease;
}

.impact-wrapper:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 12px 48px rgba(0, 217, 255, 0.2),
                0 0 60px rgba(0, 217, 255, 0.1) inset;
    transform: translateY(-2px);
}

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

.impact-item:hover {
    transform: scale(1.05);
}

.impact-item:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.6));
}

.impact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.impact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.impact-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.impact-number {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.5px;
}

.impact-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

/* Colorful Progress Bars */
.impact-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    position: relative;
    box-shadow: 0 0 15px currentColor;
}

.impact-wrapper[data-aos="fade-up"].aos-animate .progress-fill {
    animation: progressGlow 3s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Cyan Progress (Engagement) */
.progress-cyan {
    background: linear-gradient(90deg, #00d9ff 0%, #00ffff 100%);
    color: #00d9ff;
}

.progress-cyan[data-progress="100"] {
    width: 100%;
}

/* Blue Progress (Customers) */
.progress-blue {
    background: linear-gradient(90deg, #0066ff 0%, #0099ff 100%);
    color: #0066ff;
}

.progress-blue[data-progress="85"] {
    width: 85%;
}

/* Purple Progress (Video Views) */
.progress-purple {
    background: linear-gradient(90deg, #8a2be2 0%, #9d4edd 100%);
    color: #8a2be2;
}

.progress-purple[data-progress="95"] {
    width: 95%;
}

/* Green Progress (Satisfaction) */
.progress-green {
    background: linear-gradient(90deg, #00ff88 0%, #00ffaa 100%);
    color: #00ff88;
}

.progress-green[data-progress="100"] {
    width: 100%;
}

.impact-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 217, 255, 0.3) 50%,
        transparent 100%
    );
    flex-shrink: 0;
}

/* Responsive - Impact Numbers */
@media (max-width: 991px) {
    .impact-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding: 2rem 2rem;
        border-radius: 30px;
        gap: 1.5rem;
    }

    .impact-divider {
        display: none;
    }

    .impact-item {
        flex: 0 0 calc(50% - 1rem);
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .impact-wrapper {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .impact-item {
        flex: 1;
        width: 100%;
        justify-content: flex-start;
    }

    .impact-number {
        font-size: 1.5rem;
    }

    .impact-label {
        font-size: 0.75rem;
    }
}

/* =============================================
   SERVICES SECTION - PREMIUM DESIGN
   ============================================= */
.services {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(ellipse at top, rgba(0, 217, 255, 0.02) 0%, var(--bg-primary) 50%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.15), transparent);
    transition: left 0.7s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 25px 70px rgba(0, 217, 255, 0.4),
                0 0 50px rgba(0, 217, 255, 0.2) inset;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 217, 255, 0.4));
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 8px 25px rgba(0, 217, 255, 0.7));
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent);
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Header Layout */
.service-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

/* Service Rating System */
.service-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
}

.service-card:hover .service-rating {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

.stars {
    color: #ffd700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
    transition: all 0.3s ease;
    line-height: 1;
}

.service-card:hover .stars {
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.9));
}

.rating-text {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.service-card:hover .rating-text {
    color: #ffd700;
}

/* Service Badge */
.service-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-card:hover .service-badge {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

/* Colorful Service Border Classes */
.service-cyan {
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.service-cyan:hover {
    border-color: #00d9ff;
    box-shadow: 0 25px 70px rgba(0, 217, 255, 0.5),
                0 0 50px rgba(0, 217, 255, 0.3) inset;
}

.service-blue {
    border: 2px solid rgba(0, 102, 255, 0.3);
}

.service-blue:hover {
    border-color: #0066ff;
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.5),
                0 0 50px rgba(0, 102, 255, 0.3) inset;
}

.service-blue .service-badge:hover,
.service-blue:hover .service-badge {
    background: rgba(0, 102, 255, 0.15);
    border-color: #0066ff;
}

.service-purple {
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.service-purple:hover {
    border-color: #8a2be2;
    box-shadow: 0 25px 70px rgba(138, 43, 226, 0.5),
                0 0 50px rgba(138, 43, 226, 0.3) inset;
}

.service-purple .service-badge:hover,
.service-purple:hover .service-badge {
    background: rgba(138, 43, 226, 0.15);
    border-color: #8a2be2;
}

.service-pink {
    border: 2px solid rgba(255, 20, 147, 0.3);
}

.service-pink:hover {
    border-color: #ff1493;
    box-shadow: 0 25px 70px rgba(255, 20, 147, 0.5),
                0 0 50px rgba(255, 20, 147, 0.3) inset;
}

.service-pink .service-badge:hover,
.service-pink:hover .service-badge {
    background: rgba(255, 20, 147, 0.15);
    border-color: #ff1493;
}

.service-orange {
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.service-orange:hover {
    border-color: #ff8c00;
    box-shadow: 0 25px 70px rgba(255, 140, 0, 0.5),
                0 0 50px rgba(255, 140, 0, 0.3) inset;
}

.service-orange .service-badge:hover,
.service-orange:hover .service-badge {
    background: rgba(255, 140, 0, 0.15);
    border-color: #ff8c00;
}

.service-teal {
    border: 2px solid rgba(0, 206, 209, 0.3);
}

.service-teal:hover {
    border-color: #00ced1;
    box-shadow: 0 25px 70px rgba(0, 206, 209, 0.5),
                0 0 50px rgba(0, 206, 209, 0.3) inset;
}

.service-teal .service-badge:hover,
.service-teal:hover .service-badge {
    background: rgba(0, 206, 209, 0.15);
    border-color: #00ced1;
}

/* =============================================
   TRUST BADGES SECTION - COMPACT SINGLE ROW
   ============================================= */
.trust-badges {
    padding: var(--spacing-lg) 0;
    background: var(--bg-primary);
    position: relative;
}

.badges-pill {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 100px;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 217, 255, 0.1) inset;
    transition: all 0.4s ease;
}

.badges-pill:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 12px 48px rgba(0, 217, 255, 0.2),
                0 0 60px rgba(0, 217, 255, 0.1) inset;
    transform: translateY(-2px);
}

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

.trust-badge-compact:hover {
    transform: scale(1.05);
}

.badge-icon-compact {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-badge-compact:hover .badge-icon-compact {
    transform: rotate(-5deg);
}

/* Badge Color Variants - Compact */
.badge-blue {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 153, 255, 0.15) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #0066ff;
}

.badge-green {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 170, 0.15) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.badge-purple {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #8a2be2;
}

.badge-cyan {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 255, 255, 0.15) 100%);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #00d9ff;
}

.badge-content-compact h4 {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.125rem 0;
    line-height: 1.2;
    white-space: nowrap;
}

.badge-content-compact p {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    flex-shrink: 0;
}

/* Responsive - Trust Badges Compact */
@media (max-width: 991px) {
    .badges-pill {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1.5rem 2rem;
        border-radius: 30px;
        gap: 1.5rem;
    }

    .badge-divider {
        display: none;
    }

    .trust-badge-compact {
        flex: 0 0 calc(50% - 1rem);
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .badges-pill {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .trust-badge-compact {
        flex: 1;
        width: 100%;
        justify-content: flex-start;
    }
}

/* =============================================
   CONTACT SECTION - PREMIUM DESIGN
   ============================================= */
.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Select dropdown styling */
.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

/* Select option styling - kritik! */
.contact-form select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    font-size: 1rem;
}

/* First option (placeholder) */
.contact-form select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

/* Hover state for options */
.contact-form select option:hover {
    background: var(--accent);
    color: #000000;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3),
                0 0 20px rgba(0, 217, 255, 0.2) inset;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
    transform: translateY(-2px);
}

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

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--bg-primary);
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
    border-top: 1px solid var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    color: var(--accent);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-legal span {
    color: var(--text-secondary);
    opacity: 0.5;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
    }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-accent);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.back-to-top::before {
    content: '↑';
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* =============================================
   PARTICLES.JS BACKGROUND
   ============================================= */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

#particles-js canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */
.portfolio {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.portfolioSwiper {
    padding: var(--spacing-lg) 0;
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), #0066ff, #00ffff);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

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

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.5),
                0 0 60px rgba(0, 217, 255, 0.3) inset;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-play {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.portfolio-play:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-accent);
}

.play-icon {
    font-size: 2rem;
    color: var(--text-primary);
    margin-left: 5px;
}

.portfolio-content {
    padding: var(--spacing-md);
}

.portfolio-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.375rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

.tag:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent) !important;
    background: rgba(0, 217, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent);
    color: var(--bg-primary) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem !important;
}

.swiper-pagination-bullet {
    background: var(--text-secondary) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1 !important;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.testimonialsSwiper {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(0, 217, 255, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 25px 70px rgba(0, 217, 255, 0.4),
                0 0 50px rgba(0, 217, 255, 0.2) inset;
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.testimonial-stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* =============================================
   RESPONSIVE DESIGN - TABLET
   ============================================= */
@media (max-width: 991px) {
    :root {
        font-size: 14px;
    }

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

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

    .features-grid,
    .services-grid,
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* =============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================= */
@media (max-width: 767px) {
    :root {
        font-size: 14px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-lg) var(--spacing-sm);
        padding-top: 100px;
    }

    .hero-content {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.5rem;
        min-height: 100px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        padding-left: 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 85px;
        width: 40px;
        height: 40px;
    }

    .back-to-top::before {
        font-size: 1.25rem;
    }

    .impact-number {
        font-size: 2.5rem;
        white-space: normal;
    }

    .impact-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }

    .impact-label {
        font-size: 1rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* =============================================
   MOBILE EXTRA SMALL (< 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

/* =============================================
   AOS VISIBILITY FIX - CRITICAL
   ============================================= */
/*
   IMPORTANT: AOS CSS hides elements by default with opacity:0
   If AOS doesn't initialize, elements stay hidden.
   This ensures elements are visible until AOS takes over.
*/
[data-aos] {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Critical: Ensure hero CTA buttons are ALWAYS visible */
.hero-cta-group {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.hero-cta-group .cta-button {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Additional safeguard - make sure nothing is accidentally hidden */
.section-title,
.section-subtitle,
.feature-card,
.service-card,
.impact-card,
.testimonial-card,
.portfolio-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* =============================================
   LEGAL PAGES STYLING
   ============================================= */
.legal-page {
    padding: 120px 0 var(--spacing-xl) 0;
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.legal-content h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.legal-update {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.legal-section ul.contact-info li::before {
    content: '';
}

.legal-section ul.contact-info li {
    padding-left: 0;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: var(--text-primary);
    text-decoration: none;
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive - Legal Pages */
@media (max-width: 991px) {
    .legal-content {
        padding: 3rem 2.5rem;
    }

    .legal-content h1 {
        font-size: 2.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .legal-page {
        padding: 100px 0 var(--spacing-lg) 0;
    }

    .legal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

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

    .legal-update {
        font-size: 0.8125rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.375rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.9375rem;
    }
}

/* =============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================= */
/* Featured Grid Responsive - Better mobile layout */
@media (max-width: 991px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 650px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Responsive Improvements */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =============================================
   AI REVOLUTION - RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    /* Tablet: Stack features 2 per row */
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .ai-feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-large {
        font-size: 3rem;
    }

    .ai-feature-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    /* Mobile: Stack everything */
    .ai-revolution-section {
        padding: var(--spacing-lg) 0;
    }

    .ai-header {
        margin-bottom: var(--spacing-md);
    }

    .ai-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .badge-icon {
        font-size: 1.25rem;
    }

    .badge-label {
        font-size: 0.8125rem;
        letter-spacing: 1.5px;
    }

    .ai-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .ai-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    /* Video */
    .ai-video-container {
        margin-bottom: var(--spacing-md);
    }

    .video-frame {
        border-radius: 20px;
    }

    .video-embed {
        border-radius: 20px;
    }

    .frame-glow {
        border-radius: 22px;
    }

    .play-circle svg {
        width: 70px;
        height: 70px;
    }

    .play-text {
        font-size: 1.125rem;
        letter-spacing: 2px;
    }

    .video-corner-badge {
        top: 15px;
        right: 15px;
        padding: 0.625rem 1.25rem;
    }

    .badge-text {
        font-size: 0.8125rem;
    }

    /* Features: 1 per row on mobile */
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .ai-feature-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon-large {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .ai-feature-card h3 {
        font-size: 1.125rem;
    }

    .ai-feature-card p {
        font-size: 0.9375rem;
    }

    /* CTA Buttons */
    .ai-cta-wrapper {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .ai-cta-primary,
    .ai-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-icon {
        font-size: 1.125rem;
    }
}
