/* ==================== CSS RESET & VARIABLES ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Dark Navy Theme */
    --bg-primary: #0a0f1a;
    --bg-secondary: #0f1629;
    --bg-tertiary: #151d33;
    --bg-card: rgba(15, 22, 41, 0.8);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b8c4;
    --text-muted: #6b7280;

    /* Accent Colors */
    --accent-amber: #f59e0b;
    --accent-amber-dark: #ea580c;
    --accent-green: #22c55e;
    --accent-green-dark: #16a34a;

    /* Gradients */
    --gradient-amber: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 15, 26, 0) 0%, #0a0f1a 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-amber: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-glow-green: 0 0 40px rgba(34, 197, 94, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* ==================== STICKY HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: var(--space-4) 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled State - Glassmorphism */
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-3) 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    font-size: var(--font-size-xl);
    letter-spacing: -0.02em;
}

.logo-bold {
    font-weight: 800;
    color: var(--text-primary);
}

.logo-light {
    font-weight: 300;
    color: var(--text-secondary);
}

.logo-dot {
    color: #22c55e;
    font-weight: 800;
    font-size: var(--font-size-2xl);
    line-height: 0;
    margin-left: 2px;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: var(--space-2) 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #E76F51;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* CTA Button */
.header-cta {
    padding: var(--space-2) var(--space-5);
    background: transparent;
    border: 1.5px solid #22c55e;
    border-radius: var(--radius-full);
    color: #22c55e;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #22c55e;
    color: #000;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    gap: 5px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Active State */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-2xl);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: #E76F51;
    transform: translateX(8px);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: #22c55e;
    border-radius: var(--radius-full);
    color: #000;
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--space-8);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.mobile-cta svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Overlay */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive: Hide hamburger on desktop */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.highlight {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTON STYLES ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: var(--shadow-glow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.5);
}

.btn-secondary {
    background: var(--gradient-amber);
    color: white;
    box-shadow: var(--shadow-glow-amber);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

.btn-xl {
    padding: var(--space-6) var(--space-12);
    font-size: var(--font-size-xl);
}

/* ==================== FLOATING CTA (Smart WhatsApp Widget) ==================== */
.floating-cta {
    position: fixed;
    /* Mobile: Thumb Zone positioning (bottom-right, easily reachable) */
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow-green), var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: subtlePulse 3s ease-in-out infinite;
    /* GPU acceleration for smooth animations */
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.floating-cta:hover {
    transform: scale(1.08) translateZ(0);
    box-shadow: 0 0 80px rgba(34, 197, 94, 0.6), var(--shadow-lg);
}

.floating-cta:active {
    transform: scale(0.98) translateZ(0);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.cta-text {
    font-size: var(--font-size-base);
    white-space: nowrap;
}

/* Subtle pulse - always active */
@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: var(--shadow-glow-green), var(--shadow-lg);
    }

    50% {
        box-shadow: 0 0 50px rgba(34, 197, 94, 0.4), var(--shadow-lg);
    }
}

/* Heartbeat / Attention-grabbing pulse - when user is IDLE (5s inactivity) */
.floating-cta.idle-pulse {
    animation: heartbeatPulse 1.2s ease-in-out infinite;
}

@keyframes heartbeatPulse {
    0% {
        transform: scale(1) translateZ(0);
        box-shadow: var(--shadow-glow-green), var(--shadow-lg);
    }

    14% {
        transform: scale(1.15) translateZ(0);
        box-shadow: 0 0 70px rgba(34, 197, 94, 0.7), var(--shadow-lg);
    }

    28% {
        transform: scale(1) translateZ(0);
        box-shadow: var(--shadow-glow-green), var(--shadow-lg);
    }

    42% {
        transform: scale(1.1) translateZ(0);
        box-shadow: 0 0 60px rgba(34, 197, 94, 0.5), var(--shadow-lg);
    }

    70%,
    100% {
        transform: scale(1) translateZ(0);
        box-shadow: var(--shadow-glow-green), var(--shadow-lg);
    }
}

/* Notification badge style (optional) */
.floating-cta::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--accent-amber);
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    animation: notificationPing 2s ease-in-out infinite;
}

@keyframes notificationPing {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* ==================== SCROLL CTAs ==================== */
.scroll-cta {
    position: fixed;
    left: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    z-index: 999;
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    transition: all var(--transition-slow);
}

.scroll-cta.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.scroll-cta span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.scroll-cta a {
    color: var(--accent-amber);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.scroll-cta a:hover {
    color: var(--accent-green);
}

.scroll-cta-25 {
    bottom: 40%;
}

.scroll-cta-50 {
    bottom: 50%;
}

.scroll-cta-75 {
    bottom: 60%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-20) 0;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(15, 22, 41, 1) 0%, rgba(10, 15, 26, 1) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--accent-amber);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-6xl));
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    max-width: 500px;
}

.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.stats-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-10);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==================== E-COMMERCE PAGE STYLES ==================== */
/* Abstract Visual Card */
.ecommerce-visual-card {
    position: relative;
    width: 500px;
    height: 380px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(34, 197, 94, 0.1);
    z-index: 10;
}

.dashboard-header {
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ef4444;
}

.dot.yellow {
    background-color: #f59e0b;
}

.dot.green {
    background-color: #22c55e;
}

.dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.chart-container {
    flex: 1;
    background: rgba(10, 15, 26, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-2);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.metric-item {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.metric-val {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
}

/* Stat Cards for Social Proof */
.ecommerce-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    margin-bottom: var(--space-2);
}

.text-green {
    color: var(--accent-green);
}

.text-amber {
    color: var(--accent-amber);
}

.stat-desc {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.stat-client {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
}

/* Full Width Bento Card */
.bento-card.full-width {
    grid-column: 1 / -1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ecommerce-visual-card {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .bento-card.full-width {
        grid-column: 1 / -1;
        /* Keep full width on mobile too */
    }
}



/* ==================== SECTION BADGES ==================== */
.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--accent-amber);
    margin-bottom: var(--space-4);
}

.badge-light {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--accent-green);
}

.section-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.section-title-sm {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
    color: var(--text-secondary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
}

/* ==================== AUTHORITY SECTION (Berk Kosova Kimdir?) ==================== */
.authority-section {
    position: relative;
    padding: var(--space-24) 0;
    background: #0d1220;
    overflow: hidden;
}

.authority-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: center;
}

/* Portrait Side */
.authority-portrait {
    position: relative;
}

.portrait-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.portrait-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    margin: 0 auto;
}

.portrait-placeholder svg {
    width: 100%;
    height: 100%;
}

/* When real image is added, use this class */
.portrait-image {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

/* Soft edge fade overlay */
.portrait-fade-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 70%, #0d1220 100%),
        linear-gradient(to left, transparent 70%, #0d1220 100%),
        linear-gradient(to bottom, transparent 80%, #0d1220 100%),
        linear-gradient(to top, transparent 90%, #0d1220 100%);
    pointer-events: none;
}

/* Director's accent badge */
.director-accent {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(15, 22, 41, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--accent-amber);
    backdrop-filter: blur(10px);
}

.accent-icon {
    font-size: var(--font-size-lg);
}

/* Content Side */
.authority-content {
    padding: var(--space-8) 0;
}

.authority-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.authority-title {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-8);
}

/* Story content */
.authority-story {
    margin-bottom: var(--space-8);
}

.authority-story p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.story-year {
    color: var(--accent-amber);
    font-weight: 700;
}

.highlight-word {
    color: var(--accent-green);
    font-weight: 600;
}

/* Pillars (Sinema + Psikoloji + Veri) */
.authority-pillars {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.pillar-icon {
    font-size: var(--font-size-xl);
}

.pillar-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pillar-divider {
    font-size: var(--font-size-xl);
    color: var(--accent-amber);
    font-weight: 300;
}

/* Digital Signature */
.authority-signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.signature-svg {
    width: 150px;
    height: 45px;
    opacity: 0.9;
}

.signature-name {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Authority CTA Button */
.authority-cta {
    margin-top: var(--space-8);
    display: inline-flex;
    border-color: rgba(245, 158, 11, 0.4);
}

.authority-cta:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent-amber);
    color: var(--accent-amber);
}

/* Slide-in Animations */
.slide-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
}

.slide-from-left.animate-in,
.slide-from-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .authority-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }

    .authority-portrait {
        order: -1;
    }

    .portrait-placeholder {
        max-width: 280px;
    }

    .authority-pillars {
        justify-content: center;
    }

    .authority-signature {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .authority-section {
        padding: var(--space-16) 0;
    }

    .authority-title {
        font-size: var(--font-size-3xl);
    }

    .authority-story p {
        font-size: var(--font-size-base);
    }

    .pillar {
        padding: var(--space-2) var(--space-4);
    }

    .pillar-text {
        font-size: var(--font-size-xs);
    }
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: var(--space-24) 0;
    background: var(--bg-secondary);
}

.problem-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.pain-card {
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.pain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.pain-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.pain-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.problem-cta {
    text-align: center;
}

.problem-cta .cta-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

/* ==================== SOCIAL PROOF WALL ==================== */
.proof-wall-section {
    position: relative;
    padding: var(--space-24) 0;
    background: #080c14;
    overflow: hidden;
}

.proof-wall-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.proof-wall-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.badge-proof {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: var(--accent-green);
}

.proof-subtitle {
    margin: 0 auto;
    opacity: 0.7;
}

/* Masonry Grid */
.proof-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

/* Card Sizes */
.proof-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.proof-card--normal {
    grid-row: span 2;
}

.proof-card--tall {
    grid-row: span 3;
}

.proof-card--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.proof-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

/* Blur-to-Clear Effect */
.proof-card-inner {
    filter: blur(2px) grayscale(70%);
}

.proof-card:hover .proof-card-inner {
    filter: blur(0) grayscale(0%);
    transform: scale(1.03);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.15);
}

/* Placeholder styling */
.proof-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.8), rgba(20, 30, 50, 0.9));
}

.proof-placeholder[data-type="whatsapp"] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(20, 60, 40, 0.8));
}

.proof-placeholder[data-type="roas"] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(20, 40, 80, 0.8));
}

.proof-placeholder[data-type="instagram"] {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(80, 30, 60, 0.8));
}

.proof-icon {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    color: var(--text-secondary);
}

.proof-placeholder span {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Real image */
.proof-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay with type badge */
.proof-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--space-3);
}

.proof-card:hover .proof-overlay {
    opacity: 1;
}

.proof-type-badge {
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: white;
    backdrop-filter: blur(4px);
}

/* CTA Button */
.proof-wall-cta {
    text-align: center;
}

.proof-cta-btn {
    font-size: var(--font-size-lg);
    padding: var(--space-5) var(--space-10);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.proof-cta-btn:hover {
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.5);
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .proof-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 100px;
    }

    .proof-card--wide {
        grid-column: span 2;
    }
}

/* Responsive: Mobile - Horizontal Swipe */
@media (max-width: 768px) {
    .proof-masonry {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-4);
        padding: var(--space-4) 0;
        margin: 0 calc(-1 * var(--space-4));
        padding-left: var(--space-4);
        padding-right: var(--space-4);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .proof-masonry::-webkit-scrollbar {
        display: none;
    }

    .proof-card {
        flex: 0 0 280px;
        height: 350px;
        scroll-snap-align: start;
    }

    .proof-card--normal,
    .proof-card--tall,
    .proof-card--wide {
        grid-column: auto;
        grid-row: auto;
    }

    /* Remove blur on mobile for better UX */
    .proof-card-inner {
        filter: none;
    }

    .proof-overlay {
        opacity: 1;
    }

    .proof-cta-btn {
        font-size: var(--font-size-base);
        padding: var(--space-4) var(--space-6);
    }
}

@media (max-width: 480px) {
    .proof-card {
        flex: 0 0 260px;
        height: 320px;
    }
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    padding: var(--space-24) 0;
    background: var(--bg-primary);
}

.solution-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
}

.solution-card {
    position: relative;
    padding: var(--space-8);
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-number {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.solution-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.solution-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* ==================== SERVICES BENTO GRID ==================== */
.services-section {
    position: relative;
    padding: var(--space-24) 0;
    background: #0a0a0a;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(231, 111, 81, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.badge-services {
    background: rgba(231, 111, 81, 0.1);
    border-color: rgba(231, 111, 81, 0.3);
    color: #E76F51;
}

.services-subtitle {
    margin: 0 auto;
    opacity: 0.7;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: var(--space-4);
}

/* Card Base */
.bento-card {
    position: relative;
    padding: var(--space-6);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Card Sizes */
.bento-card--large {
    grid-column: span 2;
    grid-row: span 2;
    padding: var(--space-8);
}

.bento-card--medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card--small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Hover Effects */
.bento-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

/* Green Glow */
.bento-card[data-glow="green"]:hover {
    box-shadow:
        0 0 20px rgba(34, 197, 94, 0.3),
        0 0 40px rgba(34, 197, 94, 0.1),
        inset 0 0 20px rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.5);
}

.bento-card[data-glow="green"]:hover .bento-icon {
    color: #22c55e;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

/* Orange Glow */
.bento-card[data-glow="orange"]:hover {
    box-shadow:
        0 0 20px rgba(231, 111, 81, 0.3),
        0 0 40px rgba(231, 111, 81, 0.1),
        inset 0 0 20px rgba(231, 111, 81, 0.05);
    border-color: rgba(231, 111, 81, 0.5);
}

.bento-card[data-glow="orange"]:hover .bento-icon {
    color: #E76F51;
    filter: drop-shadow(0 0 10px rgba(231, 111, 81, 0.5));
}

/* Icon */
.bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.bento-card--large .bento-icon {
    width: 64px;
    height: 64px;
}

.bento-icon svg {
    width: 100%;
    height: 100%;
}

/* Title */
.bento-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    line-height: 1.3;
}

.bento-card--large .bento-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
}

/* Description */
.bento-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.bento-card--large .bento-desc {
    font-size: var(--font-size-base);
    max-width: 90%;
}

/* Tag */
.bento-tag {
    margin-top: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    display: inline-block;
    width: fit-content;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card--large {
        grid-column: span 2;
    }

    .bento-card--medium {
        grid-column: span 2;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .bento-card--large,
    .bento-card--medium,
    .bento-card--small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        padding: var(--space-5);
    }

    .bento-icon {
        width: 40px;
        height: 40px;
    }

    .bento-title {
        font-size: var(--font-size-base);
    }

    .bento-card--large .bento-title {
        font-size: var(--font-size-lg);
    }
}

/* ==================== SOCIAL PROOF MARQUEE ==================== */
.social-proof-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.social-proof-section .container {
    text-align: center;
    margin-bottom: var(--space-12);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: var(--space-16);
    padding: 0 var(--space-8);
}

.brand-logo {
    flex-shrink: 0;
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.brand-logo:hover {
    opacity: 1;
    border-color: rgba(245, 158, 11, 0.3);
}

.brand-logo svg {
    width: 100%;
    height: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta-section {
    padding: var(--space-24) 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        var(--bg-primary);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.final-cta-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* ==================== PREMIUM FOOTER ==================== */
.premium-footer {
    position: relative;
    padding: var(--space-20) 0 var(--space-8);
    background: #000000;
}

/* 3-Column Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: #888888;
    line-height: 1.7;
    font-weight: 300;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-green);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-cta:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateX(4px);
}

.footer-cta svg {
    width: 16px;
    height: 16px;
}

/* Navigation Column */
.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-nav-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    color: #888888;
    font-size: var(--font-size-sm);
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #E76F51;
    padding-left: 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #E76F51;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 8px;
}

/* Social Column */
.footer-social-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-socials {
    display: flex;
    gap: var(--space-4);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid #333;
    border-radius: var(--radius-lg);
    color: #888888;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
}

/* Instagram Glow */
.social-icon--instagram:hover {
    border-color: transparent;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

.social-icon--instagram:hover svg {
    stroke: white;
    fill: white;
}

/* YouTube Glow */
.social-icon--youtube:hover {
    border-color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.social-icon--youtube:hover svg {
    stroke: #FF0000;
}

/* LinkedIn Glow */
.social-icon--linkedin:hover {
    border-color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
    box-shadow: 0 0 20px rgba(10, 102, 194, 0.4);
}

.social-icon--linkedin:hover svg {
    stroke: #0A66C2;
}

/* Copyright Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid #222;
}

.footer-copyright {
    color: #555;
    font-size: var(--font-size-xs);
    font-weight: 300;
}

.footer-credit {
    color: #333;
    font-size: var(--font-size-xs);
    font-weight: 300;
}

.footer-credit span {
    color: #444;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    right: var(--space-8);
    bottom: var(--space-16);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #111;
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #1a1a1a;
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand-col {
        grid-column: span 2;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-brand-col {
        grid-column: span 1;
        align-items: center;
    }

    .footer-cta {
        margin: var(--space-2) auto 0;
    }

    .footer-nav-col {
        align-items: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-social-col {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    .back-to-top {
        right: var(--space-4);
        bottom: var(--space-4);
        width: 40px;
        height: 40px;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-wrapper {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--space-8);
    }

    .stats-card {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-10);
    }

    .stat-item {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: var(--space-4);
        right: var(--space-4);
        padding: var(--space-3) var(--space-5);
    }

    .cta-text {
        display: none;
    }

    .scroll-cta {
        left: var(--space-4);
        right: var(--space-4);
        bottom: 80px !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero {
        padding: var(--space-16) 0;
        min-height: auto;
    }

    .hero-content {
        padding: 0 var(--space-4);
    }

    .stats-card {
        flex-direction: column;
        padding: var(--space-6);
    }

    .pain-points {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .btn-xl {
        padding: var(--space-4) var(--space-8);
        font-size: var(--font-size-base);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --space-6: 1rem;
        --space-8: 1.5rem;
        --space-10: 1.75rem;
        --space-12: 2rem;
        --space-16: 2.5rem;
        --space-20: 3rem;
        --space-24: 4rem;
    }

    .hero-badge {
        font-size: var(--font-size-xs);
    }

    .section-badge {
        font-size: var(--font-size-xs);
    }

    .pain-card {
        padding: var(--space-6);
    }

    .solution-card {
        padding: var(--space-6);
    }
}

/* ==================== SCROLL ANIMATIONS (Fade-In-Up) ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.pain-card:nth-child(1) {
    transition-delay: 0.05s;
}

.pain-card:nth-child(2) {
    transition-delay: 0.1s;
}

.pain-card:nth-child(3) {
    transition-delay: 0.15s;
}

.pain-card:nth-child(4) {
    transition-delay: 0.2s;
}

.solution-card:nth-child(1) {
    transition-delay: 0.05s;
}

.solution-card:nth-child(2) {
    transition-delay: 0.1s;
}

.solution-card:nth-child(3) {
    transition-delay: 0.15s;
}

.solution-card:nth-child(4) {
    transition-delay: 0.2s;
}

/* ==================== REDUCED MOTION (Accessibility) ==================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-cta {
        animation: none;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marquee-track {
        animation: none;
    }
}

.reduce-motion .animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* ==================== MOBILE THUMB ZONE OPTIMIZATION ==================== */
@media (max-width: 768px) {

    /* WhatsApp button in thumb-friendly zone */
    .floating-cta {
        bottom: 20px;
        right: 16px;
        padding: 14px 18px;
        /* Larger touch target for mobile */
        min-width: 56px;
        min-height: 56px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    /* Hide notification badge on mobile for cleaner look */
    .floating-cta::after {
        display: none;
    }
}

/* ==================== PERFORMANCE: GPU ACCELERATION ==================== */
.hero-glow,
.stats-card,
.pain-card,
.solution-card,
.marquee-track,
.floating-cta {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==================== TOUCH DEVICE IMPROVEMENTS ==================== */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    .btn:hover,
    .pain-card:hover,
    .solution-card:hover,
    .brand-logo:hover {
        transform: none;
    }

    /* Active states for touch feedback */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .pain-card:active,
    .solution-card:active {
        transform: scale(0.98);
        border-color: rgba(245, 158, 11, 0.3);
    }
}

/* ==================== SERVICE PAGE STYLES ==================== */
/* Abstract Service Visual Card (Calendar/Notifications) */
.service-visual-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 480px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    /* more rounded, like a phone/app */
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(245, 158, 11, 0.1);
    z-index: 10;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-header .month {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.calendar-header .dots {
    display: flex;
    gap: 6px;
}

.calendar-grid-visual {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: auto;
}

.c-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-secondary);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.c-day.faded {
    opacity: 0.3;
}

.c-day.booked {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-weight: 700;
    position: relative;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Notifications */
.appointment-notification {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(20px);
    opacity: 0;
}

.notif-1 {
    animation-delay: 0.5s;
    margin-top: auto;
}

.notif-2 {
    animation-delay: 1.2s;
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.notif-text {
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-xs);
}

.notif-text strong {
    color: var(--text-primary);
}

.notif-text span {
    color: var(--text-muted);
}

@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive for Service Card */
@media (max-width: 768px) {
    .service-visual-card {
        max-width: 100%;
        height: 400px;
    }

    .appointment-notification {
        padding: var(--space-2) var(--space-3);
    }
}

/* ==================== SUCCESS STORIES GALLERY ==================== */
.success-gallery {
    margin-top: var(--space-12);
    margin-bottom: var(--space-12);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.success-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    aspect-ratio: 4/5;
    /* Portrait aspect ratio for mobile screenshots/vertical layouts */
    cursor: pointer;
}

.success-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-lg);
}

.success-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.success-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
    padding: var(--space-4);
}

/* Actual image would be: .success-img { width: 100%; height: 100%; object-fit: cover; } */

.success-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 1;
    transition: opacity var(--transition-base);
}

.success-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.success-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
}

.success-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: var(--space-2);
}

.success-metric {
    font-size: var(--font-size-sm);
    color: var(--accent-green);
    font-weight: 600;
}

/* Landscape/Wide card option */
.success-card.landscape {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .success-card.landscape {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
}

/* ==================== EDUCATION SPECIFIC STYLES ==================== */
.education-visual-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 480px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(16, 185, 129, 0.15);
    /* Greenish glow */
    z-index: 10;
    overflow: hidden;
}

.funnel-container {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.funnel-layer {
    width: 90%;
    height: 60px;
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.8) 0%, rgba(34, 197, 94, 0.1) 50%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.funnel-layer.layer-2 {
    width: 70%;
    border-color: rgba(245, 158, 11, 0.3);
}

.funnel-layer.layer-3 {
    width: 50%;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.6) 0%, rgba(245, 158, 11, 0.6) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.layer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
    animation: moveDown 2s linear infinite;
}

@keyframes moveDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.student-count-badge {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: var(--shadow-md);
}

.count-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.count-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.revenue-badge {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .education-visual-card {
        height: 400px;
    }
}

/* ==================== CORPORATE SPECIFIC STYLES ==================== */
.corporate-visual-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 480px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(15, 23, 42, 0.5);
    /* Deep dark shadow */
    z-index: 10;
    overflow: hidden;
}

/* Map Grid Background */
.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.location-pin {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-head {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    animation: bouncePin 2s ease-in-out infinite;
}

.brand-logo-initial {
    transform: rotate(45deg);
    color: #fff;
    font-weight: 800;
    font-size: 24px;
}

.pin-pulse {
    width: 20px;
    height: 10px;
    background: rgba(245, 158, 11, 0.5);
    border-radius: 50%;
    filter: blur(4px);
    margin-top: -10px;
    animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes bouncePin {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-10px);
    }
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.review-popup {
    position: absolute;
    top: 55%;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    width: 85%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: 0.5s;
}

.stars {
    color: var(--accent-orange);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 6px;
}

.review-text {
    font-size: 13px;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.4;
}

.reviewer {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
}

.stats-badge.top-right {
    position: absolute;
    top: var(--space-6);
    right: -20px;
    background: var(--accent-green);
    color: #fff;
    padding: 8px 30px 8px 20px;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    font-weight: 700;
    font-size: 13px;
    z-index: 5;
    transition: transform 0.3s ease;
}

.corporate-visual-card:hover .stats-badge.top-right {
    transform: rotate(0) scale(1.05);
}

@media (max-width: 768px) {
    .corporate-visual-card {
        height: 400px;
    }
}