/* ==========================================
   ZEKA REKLAM — PREMIUM DESIGN SYSTEM (CSS)
   ========================================== */

:root {
    /* Core Brand Colors */
    --primary: #F83C0E;
    --primary-rgb: 248, 60, 14;
    --primary-glow: rgba(248, 60, 14, 0.15);
    --primary-glow-heavy: rgba(248, 60, 14, 0.45);
    --primary-dim: rgba(248, 60, 14, 0.06);
    --amber: #FF8C00;
    --amber-glow: rgba(255, 140, 0, 0.12);
    
    /* Neutrals — slightly warmer black */
    --black: #040404;
    --black-matte: #0B0B0B;
    --white: #F5F5F5;
    --gray-dark: #111111;
    --gray-medium: #1E1E1E;
    --gray-light: #7A7A7A;
    --gray-lighter: #AAAAAA;
    
    /* Semantic Colors */
    --success: #25D366;
    --success-rgb: 37, 211, 102;
    
    /* Glassmorphism & UI Tokens */
    --glass-bg: rgba(11, 11, 11, 0.65);
    --glass-border: rgba(255, 255, 255, 0.055);
    --glass-border-hover: rgba(248, 60, 14, 0.28);
    --glass-radial-glow: radial-gradient(circle at top right, rgba(248, 60, 14, 0.07), transparent 65%);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
    
    /* Transitions & Curves */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --transition-fast: all 0.2s var(--ease-out-expo);
    --transition-medium: all 0.45s var(--ease-out-expo);
    --transition-slow: all 0.9s var(--ease-out-expo);
    
    /* Shadows */
    --shadow-premium: 0 24px 60px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 35px rgba(248, 60, 14, 0.28);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   1. RESET & BASE LAYOUTS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--black);
}

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-medium);
    border-radius: 4px;
    border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

/* Headings & Text */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

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

/* Text Gradient — vivid orange burn */
.text-gradient {
    background: linear-gradient(120deg, var(--primary) 0%, #FF7B45 60%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Outline / stroke text style */
.text-stroke {
    -webkit-text-stroke: 1.5px var(--primary);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-orange {
    color: var(--primary);
}

/* ==========================================
   2. IMMERSIVE GLOWS & GRAPHICS
   ========================================== */

/* Film Grain Overlay */
#noise-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    opacity: 0.025;
}

/* Floating Interactive Particles */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Drifting Cosmic Nebulas — boosted intensity */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.glow-1 {
    top: -15vh;
    left: -15vw;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 65%);
    opacity: 0.18;
    animation: orbit-1 32s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: -20vh;
    right: -15vw;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, #ff4520 0%, transparent 65%);
    opacity: 0.15;
    animation: orbit-2 26s ease-in-out infinite alternate-reverse;
}

.glow-3 {
    top: 35vh;
    left: 45vw;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(248, 80, 14, 0.5) 0%, transparent 70%);
    opacity: 0.10;
    animation: orbit-3 38s linear infinite;
}

/* New warm amber glow — adds depth on left */
.glow-4 {
    top: 20vh;
    left: -5vw;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    opacity: 0.07;
    animation: orbit-2 45s ease-in-out infinite alternate;
}

@keyframes orbit-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(12vw, 10vh) scale(1.12); }
}

@keyframes orbit-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10vw, -12vh) scale(1.18); }
}

@keyframes orbit-3 {
    0% { transform: rotate(0deg) translate(6vw) rotate(0deg); }
    100% { transform: rotate(360deg) translate(6vw) rotate(-360deg); }
}

/* Premium Minimal Cursor — white dot only, no distracting orange ring */
.custom-cursor {
    display: none; /* Removed — was distracting */
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

body.hovering-link .custom-cursor-dot {
    transform: translate(-50%, -50%) scale(2.5);
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

/* ==========================================
   3. MODERN CLASSMORPHISM UTILS
   ========================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-radial-glow);
    pointer-events: none;
    z-index: 1;
}

/* Hover lift effect */
.hover-glow-orange:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 40px rgba(248, 60, 14, 0.12), inset 0 0 15px rgba(248, 60, 14, 0.05);
    transform: translateY(-5px);
}

.hover-glow-large:hover {
    border-color: rgba(248, 60, 14, 0.4);
    box-shadow: 0 25px 60px rgba(248, 60, 14, 0.22);
}

/* ==========================================
   4. PREMIUM CONTROLS & BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* Orange Hero Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #f83c0e 0%, #ff6030 55%, #e83000 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(248, 60, 14, 0.45);
}

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

.btn-glow {
    box-shadow: 0 8px 28px rgba(248, 60, 14, 0.35);
}

/* Secondary Button Styling */
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Magnetic Wrapper Animation helper */
.magnetic {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.61, 0.35, 1);
}

/* Pulse animation utility */
.pulse-animation {
    animation: neon-pulse 2.2s infinite;
}

@keyframes neon-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248, 60, 14, 0.5); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(248, 60, 14, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248, 60, 14, 0); }
}

/* Staggered Scroll Reveal System */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.0s var(--ease-out-expo), transform 1.0s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Clip-path reveal for headings (editorial feel) */
.clip-reveal {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.9s var(--ease-out-expo);
}

.clip-reveal.revealed {
    clip-path: inset(0 0 0% 0);
}

/* Slide-in from left */
.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   5. SLEEK NAV BAR SYSTEM
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.1);
    transition: var(--transition-slow);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Nav Menu Items */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--gray-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-medium);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Nav Drawer toggle btn */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-medium);
}

/* Active Mobile menu drawer logic handled via CSS classes */
.navbar.menu-open .mobile-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar.menu-open .mobile-toggle .bar:nth-child(2) {
    opacity: 0;
}

.navbar.menu-open .mobile-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   6. HERO SECTION — CINEMATIC INTRO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    z-index: 2;
    overflow: hidden;
}

/* Giant ghost watermark wordmark behind hero */
.hero::before {
    content: 'ZEKA';
    position: absolute;
    top: 50%;
    left: -0.05em;
    transform: translateY(-55%);
    font-size: clamp(180px, 30vw, 420px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.028);
    pointer-events: none;
    z-index: -1;
    user-select: none;
    white-space: nowrap;
}

/* Vignette bottom fade */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Grid searchlight background */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    mask-image: radial-gradient(ellipse 320px 240px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 320px 240px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    opacity: 0.8;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Editorial left accent line */
.hero-content::before {
    content: '';
    display: block;
    width: 2px;
    height: 64px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(248, 60, 14, 0.07);
    border: 1px solid rgba(248, 60, 14, 0.22);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    color: rgba(248, 60, 14, 0.9);
    box-shadow: 0 0 20px rgba(248, 60, 14, 0.08);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-lighter);
    margin-bottom: 44px;
    max-width: 480px;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats ticker row */
.hero-ticker {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.ticker-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: nowrap;
}

.ticker-num {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    font-family: var(--font-mono);
    line-height: 1;
}

.ticker-num .unit {
    font-size: 1rem;
    color: var(--primary);
}

.ticker-label {
    font-size: 0.72rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.ticker-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

/* 3D Scene Wrapper */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.scene-3d {
    width: 420px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Glow cores behind mockups — stronger */
.core-glow-sphere {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary) 0%, #FF6030 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(55px);
    z-index: 1;
    opacity: 0.55;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.45; transform: scale(0.95); }
    100% { opacity: 0.65; transform: scale(1.05); }
}

.cyber-grid-sphere {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 1px dashed rgba(248, 60, 14, 0.15);
    border-radius: 50%;
    z-index: 2;
    animation: spin 30s linear infinite;
}

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

/* Floating Main Dashboard Card */
.floating-3d-card {
    position: absolute;
    transform-style: preserve-3d;
    z-index: 5;
}

.card-main {
    top: 15%;
    left: 5%;
    width: 380px;
    height: 250px;
    transform: translateZ(40px) rotateY(-8deg) rotateX(10deg);
}

.card-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: linear-gradient(135deg, rgba(248,60,14,0.15), transparent 70%);
    border-radius: 20px;
    z-index: -1;
}

.card-header {
    height: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot.red { background-color: #FF5E57; }
.dot.yellow { background-color: #FFBC2F; }
.dot.green { background-color: #28C840; }

.header-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gray-light);
    margin-left: auto;
    letter-spacing: 0.05em;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: indicator-pulse 1.8s infinite;
}

@keyframes indicator-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

.status-txt {
    font-size: 0.85rem;
    font-weight: 500;
}

.video-timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #FF7A59);
    box-shadow: 0 0 10px var(--primary);
    animation: timeline-render 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes timeline-render {
    0% { width: 0%; opacity: 1; }
    80% { width: 100%; opacity: 1; }
    90% { width: 100%; opacity: 0; }
    100% { width: 0%; opacity: 0; }
}

.timeline-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray-light);
}

.ai-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 15px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric .lbl {
    font-size: 0.7rem;
    color: var(--gray-light);
}

.metric .val {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Secondary Floating Cards */
.card-meta {
    top: 55%;
    right: 5%;
    width: 170px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateZ(80px) rotateY(12deg) rotateX(-5deg);
    animation: float-y 5s ease-in-out infinite alternate;
}

.card-social {
    bottom: 5%;
    left: 10%;
    width: 180px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateZ(60px) rotateY(-10deg) rotateX(10deg);
    animation: float-y 6s ease-in-out infinite alternate-reverse;
}

.icon-neon {
    font-size: 1.6rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary));
}

.icon-neon-alt {
    font-size: 1.6rem;
    color: #E1306C;
    filter: drop-shadow(0 0 8px #E1306C);
}

.mini-card-text {
    display: flex;
    flex-direction: column;
}

.mini-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.mini-desc {
    font-size: 0.65rem;
    color: var(--gray-light);
}

@keyframes float-y {
    0% { transform: translateZ(80px) translateY(0); }
    100% { transform: translateZ(80px) translateY(-15px); }
}

/* Scroll down indicator */
.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-btn i {
    animation: bounce 2s infinite;
}

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

/* ==========================================
   7. SERVICES SECTION — PREMIUM GLASS GRID
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(248, 60, 14, 0.05);
    border: 1px solid rgba(248, 60, 14, 0.16);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    color: rgba(248, 60, 14, 0.85);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 820px;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-lighter);
    max-width: 560px;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

/* Ghost section number — editorial decoration */
.section-num {
    position: absolute;
    top: -0.2em;
    right: 0;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 44px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(248, 60, 14, 0.05), transparent 55%), var(--glass-bg);
    border-left: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--primary), transparent) 1;
    box-shadow: var(--shadow-card);
    transition: var(--transition-medium), box-shadow 0.4s ease;
    overflow: visible;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(248,60,14,0.1);
    transform: translateY(-6px) !important;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 60, 14, 0.12), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none;
    z-index: 0;
}

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

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background-color: rgba(248, 60, 14, 0.06);
    border: 1px solid rgba(248, 60, 14, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: var(--transition-medium);
    z-index: 2;
    position: relative;
    overflow: hidden;
}

/* Shine sweep on icon wrapper */
.card-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-out-expo);
}

.service-card:hover .card-icon-wrapper::after {
    left: 125%;
}

.card-icon {
    font-size: 1.55rem;
    color: var(--primary);
    transition: var(--transition-medium);
    filter: drop-shadow(0 0 6px rgba(248,60,14,0.4));
}

.service-card:hover .card-icon-wrapper {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 12px 28px var(--primary-glow-heavy);
}

.service-card:hover .card-icon {
    transform: scale(1.15);
    color: var(--white);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    z-index: 2;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.93rem;
    color: var(--gray-lighter);
    line-height: 1.7;
    margin-bottom: 32px;
    z-index: 2;
}

.card-footer-arrow {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.card-footer-arrow .footer-txt {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: var(--transition-medium);
}

.service-card:hover .card-footer-arrow .footer-txt {
    color: var(--white);
}

.service-card:hover .arrow-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: rotate(-45deg);
    box-shadow: 0 8px 20px rgba(248,60,14,0.4);
}

/* Shine sweep on entire card hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.025), transparent);
    transform: skewX(-15deg);
    transition: left 0.8s var(--ease-out-expo);
    z-index: 0;
    pointer-events: none;
}

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

/* ==========================================
   8. HOW WE WORK — CHRONO TIMELINE
   ========================================== */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Vertical Timeline Track Line */
.timeline-progress-line {
    position: absolute;
    top: 0;
    left: 45px;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.timeline-progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary), #FF7A59);
    transition: height 0.1s ease-out;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step-num-container {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--black);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    transition: var(--transition-slow);
    letter-spacing: -0.02em;
}

/* Glow shell behind timeline active bullet nodes */
.timeline-step.revealed .step-num {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow), inset 0 0 16px rgba(248,60,14,0.15), 0 0 0 8px rgba(248,60,14,0.04);
}

.step-content {
    padding: 32px 36px;
    width: 100%;
    border-left: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.5s ease;
}

.timeline-step.revealed .step-content {
    border-left-color: rgba(248,60,14,0.15);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.step-content p {
    color: var(--gray-lighter);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ==========================================
   9. ABOUT SECTION — DIGITAL CORE
   ========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-ambient {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(50px);
}

.about-img-box {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-grid-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(248, 60, 14, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    z-index: 2;
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
}

.about-floating-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    border-color: rgba(248, 60, 14, 0.2);
    z-index: 3;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-desc {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.about-desc strong {
    color: var(--white);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
}

.highlight-item i {
    font-size: 1.4rem;
    margin-top: 2px;
}

.highlight-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.highlight-item p {
    font-size: 0.88rem;
    color: var(--gray-light);
}

/* ==========================================
   10. PORTFOLIO — FILTERABLE SHOWCASE
   ========================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gray-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

/* Magazine-style asymmetric portfolio grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 480px 360px;
    gap: 20px;
}

/* First item: featured — 2 column wide */
.portfolio-item:first-child {
    grid-column: span 2;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Project number badge */
.portfolio-item::before {
    content: attr(data-num);
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    z-index: 10;
    pointer-events: none;
}

.portfolio-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out-expo), filter 0.9s ease;
    filter: brightness(0.85) saturate(0.9);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, transparent 20%, rgba(4, 4, 4, 0.55) 55%, rgba(4, 4, 4, 0.97) 100%);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.55s var(--ease-out-expo);
    z-index: 2;
}

.category-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin-bottom: 22px;
}

.portfolio-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    padding: 9px 20px;
    background-color: rgba(248, 60, 14, 0.18);
    border: 1px solid rgba(248, 60, 14, 0.35);
    border-radius: 30px;
    letter-spacing: 0.01em;
    transition: var(--transition-fast);
}

.portfolio-link:hover {
    background-color: var(--primary);
    box-shadow: 0 8px 24px rgba(248,60,14,0.35);
    transform: translateY(-2px);
}

/* Portfolio item hover animations */
.portfolio-item:hover img {
    transform: scale(1.06) rotate(0.3deg);
    filter: brightness(0.7) saturate(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    clip-path: inset(0 0 0% 0);
}

/* Stagger layout filter transitions handled via JS classes */
.portfolio-item.hidden {
    display: none;
}

/* When portfolio is filtered, reset to uniform grid */
.portfolio-grid.filtered .portfolio-item:first-child {
    grid-column: span 1;
}
.portfolio-grid.filtered {
    grid-template-rows: repeat(auto-fill, 360px);
}

/* ==========================================
   11. BEFORE/AFTER SLIDER INTERACTIVE
   ========================================== */
.ba-slider-outer {
    max-width: 950px;
    margin: 40px auto 0 auto;
    border-radius: 28px;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 100%;
    user-select: none;
    cursor: ew-resize;
}

.ba-img-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-img-panel img {
    width: 950px; /* Force locked parent scale to prevent dynamic warp on squeeze */
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.before-panel {
    z-index: 1;
}

.before-panel img {
    filter: brightness(0.7) contrast(0.9) grayscale(20%);
}

.after-panel {
    z-index: 2;
    width: 50%; /* Default cut position */
    border-right: 2px solid var(--primary);
}

.after-panel img {
    filter: brightness(1.05) contrast(1.12) saturate(1.25);
}

.ba-badge {
    position: absolute;
    top: 24px;
    padding: 8px 18px;
    background-color: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    z-index: 5;
    pointer-events: none;
}

.before-badge {
    right: 24px;
}

.after-badge {
    left: 24px;
    border-color: rgba(248, 60, 14, 0.3);
}

/* Slider center draggable line indicator */
.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 4px;
    background-color: var(--primary);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 15px var(--primary);
}

.handle-line {
    width: 100%;
    height: 100%;
}

.handle-ball {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--black-matte);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(248, 60, 14, 0.3);
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
}

.ba-slider:hover .handle-ball {
    background-color: var(--primary);
    color: var(--white);
}

/* ==========================================
   12. CLIENT REVIEWS SLIDER
   ========================================== */
.reviews-slider-container {
    max-width: 1000px;
    margin: 50px auto 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

.reviews-wrapper {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-card {
    min-width: calc(50% - 12px);
    width: calc(50% - 12px);
    flex-shrink: 0;
    padding: 44px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border-left: 2px solid transparent;
    transition: var(--transition-medium), border-color 0.4s ease;
    box-shadow: var(--shadow-card);
}

.review-card:hover {
    border-left-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), -4px 0 20px rgba(248,60,14,0.06);
}

.quote-icon {
    font-size: 5rem;
    color: rgba(248, 60, 14, 0.05);
    position: absolute;
    top: 16px;
    right: 32px;
    line-height: 1;
    font-family: Georgia, serif;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 0.78rem;
}

.rating-stars i {
    filter: drop-shadow(0 0 4px rgba(248,60,14,0.5));
}

.review-comment {
    font-size: 1.02rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
    letter-spacing: 0.01em;
}

.reviewer-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #FF7A59);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info .name {
    font-weight: 600;
    font-size: 0.95rem;
}

.reviewer-info .company {
    font-size: 0.75rem;
    color: var(--gray-light);
}

/* Carousel Control Panels */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
}

.slider-btn:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-medium);
}

.dot-btn.active {
    width: 24px;
    background-color: var(--primary);
    border-radius: 4px;
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   13. FAQ SECTION — ACCORDION
   ========================================== */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    border-radius: 16px;
    border-left: 3px solid transparent;
    transition: var(--transition-medium), border-color 0.4s ease;
}

.faq-card:hover {
    border-left-color: rgba(248,60,14,0.3);
}

.faq-trigger[aria-expanded="true"] + .faq-panel + .faq-trigger,
.faq-card:has(.faq-trigger[aria-expanded="true"]) {
    border-left-color: var(--primary);
}

.faq-trigger {
    width: 100%;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    z-index: 2;
    gap: 20px;
    letter-spacing: -0.01em;
}

/* FAQ question numbering */
.faq-trigger .faq-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(248,60,14,0.5);
    flex-shrink: 0;
    min-width: 28px;
}

.faq-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: var(--transition-medium);
    flex-shrink: 0;
}

.faq-card:hover .faq-icon-box {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(248,60,14,0.35);
}

.faq-trigger[aria-expanded="true"] .faq-icon-box {
    transform: rotate(45deg);
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out-expo);
}

.faq-body {
    padding: 0 32px 28px 32px;
    color: var(--gray-lighter);
    font-size: 0.93rem;
    line-height: 1.75;
}

/* ==========================================
   14. FINAL CTA — EMOTIONAL ENGAGEMENT
   ========================================== */
.cta-card {
    border-radius: 28px;
    padding: 80px 90px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(248,60,14,0.12);
    background: linear-gradient(135deg, rgba(248,60,14,0.06) 0%, rgba(11,11,11,0.9) 60%);
}

/* Diagonal accent strip */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    z-index: 1;
}

.cta-glow-nebula {
    position: absolute;
    top: -30%;
    right: -25%;
    width: 70%;
    height: 130%;
    background: radial-gradient(circle, rgba(248, 60, 14, 0.28) 0%, transparent 65%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.cta-inner-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--gray-lighter);
    max-width: 560px;
    line-height: 1.75;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

/* ==========================================
   15. MODERN FOOTER
   ========================================== */
.footer {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 110px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Giant ghost wordmark behind footer */
.footer::before {
    content: 'ZEKA REKLAM';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.025);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 42px;
    width: auto;
}

.footer-about-txt {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: var(--transition-medium);
}

.social-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.footer-links-col h3, .footer-contact-col h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-contacts li i {
    font-size: 1.15rem;
    margin-top: 4px;
}

.footer-contacts li span {
    font-size: 0.72rem;
    color: var(--gray-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.footer-contacts li a, .footer-contacts li p {
    font-weight: 500;
    font-size: 0.92rem;
}

.footer-contacts li a:hover {
    color: var(--primary);
}

/* Google review card — same hover lift as other contact items */
.footer-contacts li:has(.fa-google) {
    border-radius: 10px;
    padding: 8px 10px;
    margin: -8px -10px;
    border: 1px solid transparent;
    transition: transform 0.28s ease, background 0.28s ease,
                border-color 0.28s ease, box-shadow 0.28s ease;
    cursor: pointer;
}

.footer-contacts li:has(.fa-google):hover {
    transform: translateY(-4px);
    background: rgba(248, 60, 14, 0.05);
    border-color: rgba(248, 60, 14, 0.18);
    box-shadow: 0 8px 24px rgba(248, 60, 14, 0.10);
}

.footer-contacts li:has(.fa-google):hover .fa-google {
    filter: drop-shadow(0 0 6px rgba(66, 133, 244, 0.7))
            drop-shadow(0 0 14px rgba(66, 133, 244, 0.3));
    transform: scale(1.12);
    transition: filter 0.28s ease, transform 0.28s ease;
}

.footer-contacts li:has(.fa-google) a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-light);
}

.footer-meta-links {
    display: flex;
    gap: 20px;
}

/* ==========================================
   16. PULSING FLOATING WHATSAPP LEAD GENERATOR
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
}

.floating-whatsapp i {
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--success);
    z-index: 1;
    animation: whatsapp-pulse 2.2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wa-tooltip-pop {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    padding: 8px 16px;
    border-radius: 20px;
    background-color: var(--black-matte);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-premium);
}

.wa-tooltip-pop::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--black-matte);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.floating-whatsapp:hover .wa-tooltip-pop {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================
   17. SYSTEM PRELOADER ENGINE
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    width: 100%;
}

.preloader-logo {
    position: relative;
    margin-bottom: 40px;
}

.loader-logo-img {
    height: 70px;
    width: auto;
    z-index: 2;
    position: relative;
}

.logo-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: var(--primary);
    filter: blur(25px);
    opacity: 0.45;
    z-index: 1;
    border-radius: 50%;
    animation: preloader-logo-pulse 1.8s infinite alternate;
}

@keyframes preloader-logo-pulse {
    0% { transform: scale(0.9); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.65; }
}

.loader-track {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.1s ease-out;
}

.loader-text {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}

.loader-percentage {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 10px;
}

/* ==========================================
   18. MOBILE NAV SIDE DRAWER STYLING
   ========================================== */
@media (max-width: 992px) {
    /* Reveal button on mobile viewport */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(5, 5, 5, 0.98);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 40px;
        gap: 24px;
        transition: right 0.5s var(--ease-out-expo);
        z-index: 1000;
    }
    
    .navbar.menu-open .nav-menu {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
    }
    
    .btn-nav {
        display: none; /* Hide in small navbar, place in CTA */
    }
}

/* ==========================================
   19. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .section-padding {
        padding: 90px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content::before {
        display: none;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-ticker {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        text-align: center;
        align-items: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .portfolio-item:first-child {
        grid-column: span 2;
        height: 400px;
    }
    .portfolio-item {
        height: 320px;
    }
    
    .review-card {
        min-width: 100%;
        width: 100%;
    }
    
    .cta-inner-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .cta-btn-wrapper {
        justify-content: center;
    }
    
    .cta-card {
        padding: 60px 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
    
    .footer-about-txt {
        max-width: 480px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.035em;
    }
    
    .hero::before {
        font-size: 140px;
        opacity: 0.5;
    }
    
    .hero-ticker {
        display: none;
    }
    
    .scene-3d {
        width: 300px;
        height: 300px;
    }
    
    .card-main {
        width: 280px;
        height: 190px;
    }
    
    .card-meta {
        width: 135px;
        padding: 12px;
    }
    
    .card-social {
        width: 145px;
        padding: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .portfolio-item:first-child {
        grid-column: span 1;
        height: 320px;
    }
    .portfolio-item {
        height: 280px;
    }
    
    .section-num {
        display: none;
    }
    
    .timeline-progress-line {
        left: 25px;
    }
    
    .step-num-container {
        width: 50px;
        height: 50px;
    }
    
    .step-num {
        width: 38px;
        height: 38px;
        font-size: 0.82rem;
    }
    
    .timeline-step {
        gap: 20px;
    }
    
    .step-content {
        padding: 20px 18px;
    }
    
    .ba-slider-outer {
        aspect-ratio: 4 / 3;
    }
    
    .ba-img-panel img {
        width: 768px;
    }
    
    .ba-badge {
        padding: 6px 12px;
        font-size: 0.62rem;
        top: 14px;
    }
    
    .before-badge { right: 14px; }
    .after-badge { left: 14px; }
    
    .cta-card {
        padding: 44px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================
   20. PREMIUM SECTION DIVIDERS
   ========================================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248,60,14,0.2) 30%, rgba(248,60,14,0.2) 70%, transparent);
    position: relative;
    margin: 0;
    z-index: 2;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(248,60,14,0.4);
}

/* Filter btn active state: orange (UI element, not WA) */
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary), #FF6030) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 8px 20px rgba(248,60,14,0.3) !important;
}

/* Floating WhatsApp — premium upgrade */
.floating-whatsapp {
    width: 64px;
    height: 64px;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.2);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 48px rgba(37, 211, 102, 0.55);
}

/* Nav WhatsApp button — green */
.btn-nav {
    background: linear-gradient(135deg, #1DB954, #25D366) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28) !important;
}

.btn-nav:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45) !important;
}

/* Service card arrow WhatsApp buttons — green on hover */
.service-card:hover .arrow-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4) !important;
}

/* Portfolio WhatsApp links — green */
.portfolio-link {
    background-color: rgba(37, 211, 102, 0.12) !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
}

.portfolio-link:hover {
    background-color: #25D366 !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
    border-color: #25D366 !important;
}

/* ==========================================
   21. PREMIUM CONTACT FORM SECTION
   ========================================== */
.contact-form-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
}

.contact-info-col .section-tag {
    margin-bottom: 20px;
    align-self: flex-start;
}

.contact-info-col h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.contact-info-col p {
    color: var(--gray-lighter);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 400px;
}

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-medium);
    text-decoration: none;
    color: var(--white);
}

.contact-quick-item:hover {
    border-color: rgba(248,60,14,0.2);
    background: rgba(248,60,14,0.04);
    transform: translateX(4px);
}

.contact-quick-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248,60,14,0.08);
    border: 1px solid rgba(248,60,14,0.15);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-quick-item .item-text span {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    margin-bottom: 3px;
}

.contact-quick-item .item-text strong {
    font-size: 0.92rem;
    font-weight: 600;
}

/* The Form Card */
.contact-form-card {
    padding: 48px 52px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #25D366, transparent);
    z-index: 1;
}

.form-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--gray-lighter);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-lighter);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out-expo);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AAAAAA' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 44px;
    cursor: pointer;
}

.form-group select option {
    background: #111;
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.04);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.08);
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1DB954, #25D366 50%, #20C55F 100%);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s var(--ease-out-expo);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    display: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.form-status.error {
    display: block;
    background: rgba(248, 60, 14, 0.08);
    border: 1px solid rgba(248, 60, 14, 0.25);
    color: var(--primary);
}

/* ==========================================
   22. ADDITIONAL MOBILE FIXES
   ========================================== */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-card {
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }

    .contact-form-card {
        padding: 28px 22px;
    }

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

    .contact-info-col h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 90px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem !important;
        letter-spacing: -0.03em;
    }

    .hero-badge {
        font-size: 0.65rem;
    }

    .btn-lg {
        padding: 15px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.85rem !important;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

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


/* ==========================================
   23. V2 PREMIUM VISUAL OVERHAUL
   ========================================== */

/* ---- NAVBAR LUXURY REFINEMENTS ---- */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(4, 4, 4, 0.82);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-bottom: 1px solid rgba(255,255,255,0.035);
    box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}

.nav-menu {
    gap: 40px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255,255,255,0.95);
}

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

/* Luxury Zeka Reklam brand wordmark in nav (desktop only) */
.nav-logo-img {
    height: 42px;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.logo-container:hover .nav-logo-img {
    filter: brightness(1.3);
}

/* Mobile toggle only shows on mobile — keep clean */
.nav-actions {
    gap: 16px;
}

/* ---- HERO CINEMATIC ENHANCEMENTS ---- */

/* Stronger Zeka watermark */
.hero::before {
    content: 'ZEKA REKLAM';
    font-size: clamp(60px, 12vw, 160px);
    letter-spacing: 0.15em;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px rgba(255,255,255,0.03);
    opacity: 0.7;
    white-space: nowrap;
}

/* Cinematic fog layer at bottom of hero */
.hero-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top,
        var(--black) 0%,
        rgba(4,4,4,0.8) 40%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Premium cinematic side glow */
.hero-side-glow {
    position: absolute;
    top: 20%;
    left: -15%;
    width: 55%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(248,60,14,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow-breathe 6s ease-in-out infinite alternate;
}

@keyframes hero-glow-breathe {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.08); }
}

/* Hero badge premium upgrade */
.hero-badge {
    background: linear-gradient(135deg, rgba(248,60,14,0.10), rgba(248,60,14,0.04));
    border: 1px solid rgba(248,60,14,0.30);
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    box-shadow: 0 4px 24px rgba(248,60,14,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

/* Hero title improved hierarchy */
.hero-title {
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    letter-spacing: -0.045em;
    line-height: 1.03;
    text-shadow: 0 2px 60px rgba(0,0,0,0.6);
}

/* Richer gradient text */
.text-gradient {
    background: linear-gradient(130deg, var(--primary) 0%, #FF6B30 45%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(248,60,14,0.25));
}

/* ---- BEFORE/AFTER PREMIUM BADGES ---- */
.ba-badge {
    padding: 10px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.before-badge {
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    top: auto;
    bottom: 24px;
}

.after-badge {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(248,60,14,0.3);
    bottom: 24px;
    top: auto;
}

/* Improved slider handle */
.handle-ball {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), #FF6030);
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 0 6px rgba(248,60,14,0.15), 0 8px 24px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

.handle-ball:hover {
    box-shadow: 0 0 0 10px rgba(248,60,14,0.2), 0 12px 32px rgba(0,0,0,0.6);
    transform: scale(1.05);
}

.handle-line {
    background: linear-gradient(to bottom, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
    width: 2px;
    opacity: 0.7;
}

/* ---- CONTACT QUICK ITEMS — LUXURY REDESIGN ---- */
.contact-quick-links {
    gap: 14px;
}

.contact-quick-item {
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.024);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Shine on hover */
.contact-quick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: 0.6s ease;
    pointer-events: none;
}

.contact-quick-item:hover::before {
    left: 140%;
}

.contact-quick-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(248,60,14,0.22);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), -4px 0 20px rgba(248,60,14,0.06);
}

.contact-quick-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-quick-item:hover i {
    transform: scale(1.1) rotate(-3deg);
}

.contact-quick-item .item-text span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.contact-quick-item .item-text strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* Form card left-border upgrade */
.contact-form-card::before {
    background: linear-gradient(to bottom,
        rgba(248,60,14,0.6) 0%,
        rgba(248,60,14,0.2) 50%,
        transparent 100%
    );
    width: 2px;
}

/* ---- BRAND WATERMARKS IN SECTIONS ---- */

/* Services section — subtle Zeka wordmark */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: 'ZEKA';
    position: absolute;
    bottom: -0.1em;
    right: -0.05em;
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.02);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}

/* Portfolio section — subtle branding */
.portfolio-section {
    position: relative;
}

.portfolio-section::before {
    content: 'REKLAM';
    position: absolute;
    top: 2%;
    right: -0.05em;
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.018);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Reviews section — micro branding tag */
.reviews {
    position: relative;
}

/* ---- SECTION HEADER TYPOGRAPHY UPGRADE ---- */
.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(248,60,14,0.06);
    border: 1px solid rgba(248,60,14,0.15);
    border-radius: 100px;
    margin-bottom: 18px;
}

.section-title {
    letter-spacing: -0.04em;
    line-height: 1.08;
}

/* ---- SERVICE CARD MICRO BRANDING ---- */
.service-card::after {
    content: 'ZR';
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
    user-select: none;
}

/* ---- BA SLIDER SECTION UPGRADE ---- */
.ba-slider-outer {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.ba-img-panel img {
    filter: none;
    transition: filter 0.4s ease;
}

.before-panel img {
    filter: saturate(0.7) brightness(0.9);
}

.after-panel img {
    filter: saturate(1.1) brightness(1.05) contrast(1.02);
}

/* ---- GLASS CARD IMPROVEMENTS ---- */
.glass {
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-color: rgba(255,255,255,0.05);
}

/* ---- FOOTER BRAND IDENTITY ---- */
.footer-about-txt {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
    max-width: 300px;
}

.footer-brand-tagline {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248,60,14,0.5);
    border-top: 1px solid rgba(248,60,14,0.15);
    padding-top: 14px;
}

/* ---- SECTION DIVIDERS — PREMIUM UPGRADE ---- */
.section-divider::after {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 16px var(--primary), 0 0 32px rgba(248,60,14,0.5);
}

/* ---- AMBIENT GLOW REFINEMENTS ---- */
.glow-1 {
    opacity: 0.09;
}

.glow-2 {
    opacity: 0.065;
}

/* ---- MOBILE RESPONSIVENESS V2 FIXES ---- */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .hero::before {
        font-size: clamp(32px, 9vw, 80px);
        letter-spacing: 0.08em;
    }

    .ba-badge {
        font-size: 0.62rem;
        padding: 7px 12px;
    }

    .contact-quick-item {
        padding: 14px 16px;
    }

    .contact-info-col h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.04em;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .contact-quick-item i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


/* ==========================================
   24. V3 FINAL REVISION CSS
   ========================================== */

/* ---- HERO TITLE ORANGE + WHITE SPLIT ---- */
.hero-title-orange {
    background: linear-gradient(130deg, var(--primary) 0%, #ff6b30 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(248,60,14,0.35));
    display: inline;
}

.hero-title-white {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    display: inline;
}

/* ---- BEFORE / AFTER V3 REBUILT SLIDER ---- */
.ba-wrapper {
    position: relative;
    max-width: 960px;
    margin: 48px auto 0;
    border-radius: 20px;
    overflow: visible;
}

/* Floating labels above the slider */
.ba-label {
    position: absolute;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 20;
    pointer-events: none;
    white-space: nowrap;
}

.ba-label-left {
    left: 20px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.9);
}

.ba-label-right {
    right: 20px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(248,60,14,0.35);
    color: var(--primary);
}

.ba-label i {
    font-size: 0.85rem;
}

/* The actual slider container */
.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    box-shadow:
        0 2px 0 rgba(248,60,14,0.6),
        0 40px 80px rgba(0,0,0,0.7),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

/* BEFORE — fills entire container (background) */
.ba-before {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.65) brightness(0.82);
    pointer-events: none;
}

/* AFTER — clipped to left half via clip-path, sits on top */
.ba-after {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* clip-path is set dynamically by JS, default 50% */
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0s; /* instant — JS handles smoothness */
}

.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.12) brightness(1.06) contrast(1.04);
    pointer-events: none;
}

/* Divider line + handle */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* JS overrides */
    width: 3px;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.ba-divider-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--primary) 8%,
        var(--primary) 92%,
        transparent 100%
    );
    box-shadow: 0 0 16px rgba(248,60,14,0.7), 0 0 40px rgba(248,60,14,0.3);
}

.ba-divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff6030);
    border: 3px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    box-shadow:
        0 0 0 6px rgba(248,60,14,0.18),
        0 10px 28px rgba(0,0,0,0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: ew-resize;
    pointer-events: all;
}

.ba-container:hover .ba-divider-handle {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
        0 0 0 10px rgba(248,60,14,0.22),
        0 14px 36px rgba(0,0,0,0.7);
}

/* ---- ABOUT HIGHLIGHTS — 2-CARD PREMIUM ---- */
.about-highlights {
    gap: 16px;
}

.highlight-item {
    flex: 1;
    padding: 22px 20px;
}

/* ---- SCROLL-TO-TOP ENSURED via HTML meta ---- */

/* ---- MOBILE BA FIXES ---- */
@media (max-width: 768px) {
    .ba-wrapper {
        margin: 32px auto 0;
    }

    .ba-label {
        font-size: 0.6rem;
        padding: 7px 12px;
        gap: 6px;
    }

    .ba-divider-handle {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ba-label {
        font-size: 0.55rem;
        padding: 6px 10px;
    }

    .ba-divider-handle {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.4rem !important;
    }
}


/* ==========================================
   25. V4 FINAL BRANDING REVISION
   ========================================== */

/* ---- NAVBAR WORDMARK — PREMIUM TEXT LOGO ---- */
.nav-logo-wordmark {
    font-family: 'Inter', 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 0.18em;
}

.nav-logo-reklam {
    background: linear-gradient(130deg, #f83c0e 0%, #ff6b30 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 14px rgba(248,60,14,0.45));
}

.logo-container:hover .nav-logo-wordmark {
    letter-spacing: 0.22em;
    text-shadow: 0 0 30px rgba(255,255,255,0.08);
}

.logo-container:hover .nav-logo-reklam {
    filter: drop-shadow(0 0 20px rgba(248,60,14,0.7));
}

/* ---- HERO TITLE — WHITE OVERRIDE ---- */
/* Ensure Yapay Zekâ and Gücü are pure white, not inherited orange */
.hero-title-white {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    filter: none !important;
    display: inline;
}

/* ZEKA REKLAM in hero — strong orange with letter-spacing */
.hero-title-orange {
    background: linear-gradient(130deg, #f83c0e 0%, #ff6030 45%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 32px rgba(248,60,14,0.4));
    letter-spacing: -0.02em;
    display: inline;
}

/* Hero watermark — slightly more visible (was 0.028) */
.hero::before {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.052) !important;
    opacity: 0.85;
}

/* ---- BA LABELS — PROFESSIONAL vs AMATEUR STYLING ---- */
/* Professional label (left) — orange glow premium */
.ba-label-left {
    background: rgba(10, 10, 10, 0.72) !important;
    border: 1px solid rgba(248, 60, 14, 0.45) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(248,60,14,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}

.ba-label-left i {
    color: var(--primary);
}

/* Amateur label (right) — dark/gray low contrast */
.ba-label-right {
    background: rgba(8, 8, 8, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: rgba(200, 200, 200, 0.65) !important;
    box-shadow: none;
}

.ba-label-right i {
    color: rgba(200, 200, 200, 0.5);
}

/* ---- BA CONTAINER — ORANGE FRAME ---- */
.ba-container {
    box-shadow:
        0 0 0 1.5px rgba(248, 60, 14, 0.35),
        0 40px 90px rgba(0, 0, 0, 0.75),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(248, 60, 14, 0.25) !important;
}

/* ---- BA IMAGES — ENHANCED FILTERS ---- */
/* Amateur side (before/background) — darker, desaturated */
.ba-before img {
    filter: saturate(0.45) brightness(0.72) contrast(0.88) !important;
}

/* Professional side (after/foreground) — vibrant, sharp */
.ba-after img {
    filter: saturate(1.18) brightness(1.08) contrast(1.06) !important;
}

/* BA divider glowing line enhancement */
.ba-divider-line {
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(248,60,14,0.9) 8%,
        #f83c0e 30%,
        #ff6030 70%,
        rgba(248,60,14,0.9) 92%,
        transparent 100%
    ) !important;
    box-shadow: 0 0 20px rgba(248,60,14,0.9), 0 0 50px rgba(248,60,14,0.4) !important;
}

/* BA handle — stronger glow on hover */
.ba-divider-handle {
    box-shadow:
        0 0 0 5px rgba(248,60,14,0.2),
        0 0 30px rgba(248,60,14,0.5),
        0 10px 28px rgba(0,0,0,0.7) !important;
}

.ba-container:active .ba-divider-handle,
.ba-container:hover .ba-divider-handle {
    box-shadow:
        0 0 0 8px rgba(248,60,14,0.28),
        0 0 50px rgba(248,60,14,0.7),
        0 14px 36px rgba(0,0,0,0.8) !important;
    transform: translate(-50%, -50%) scale(1.12) !important;
}

/* ---- HERO CTA — STRONGER GLOW ---- */
.btn-primary {
    background: linear-gradient(135deg, #f83c0e 0%, #ff5020 50%, #e82d00 100%) !important;
    box-shadow: 0 6px 32px rgba(248,60,14,0.45), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff4d1a 0%, #ff6530 50%, #f83c0e 100%) !important;
    box-shadow: 0 16px 50px rgba(248,60,14,0.6), 0 0 0 1px rgba(248,60,14,0.3), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    transform: translateY(-5px) !important;
}

.btn-glow {
    box-shadow: 0 8px 30px rgba(248,60,14,0.4), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

/* ---- MOBILE WORDMARK ---- */
@media (max-width: 768px) {
    .nav-logo-wordmark {
        font-size: 1.05rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 480px) {
    .nav-logo-wordmark {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
}


/* ==========================================
   26. NAVBAR LOGO ICON + WORDMARK COMBO
   ========================================== */

/* Logo container — horizontal flex */
.logo-container {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* The Z icon image */
.nav-logo-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(248,60,14,0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-container:hover .nav-logo-icon {
    filter: drop-shadow(0 0 16px rgba(248,60,14,0.8));
    transform: scale(1.08) rotate(-2deg);
}

/* Mobile — smaller icon */
@media (max-width: 768px) {
    .nav-logo-icon {
        height: 30px;
        width: 30px;
        border-radius: 6px;
    }

    .logo-container {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .nav-logo-icon {
        height: 26px;
        width: 26px;
        border-radius: 5px;
    }

    .logo-container {
        gap: 7px;
    }
}


/* ==========================================
   28. HERO + SERVICES MOBILE + GOOGLE REVIEW
   ========================================== */

/* ---- HERO: Tighter spacing ---- */
.hero { min-height: 100vh; padding-top: 80px; }
.hero-container { align-items: center; gap: 40px; padding-top: 20px; padding-bottom: 20px; }
.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.4rem); line-height: 1.08; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(1rem, 1.6vw, 1.18rem); margin-bottom: 28px; }
.hero-cta { gap: 12px; margin-bottom: 36px; }

/* ---- HERO VISUAL: Larger dashboard ---- */
.scene-3d { width: 100%; max-width: 540px; min-height: 400px; }
.floating-3d-card.card-main { width: 100%; max-width: 420px; padding: 22px 24px; }
.ai-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.metric { background: rgba(248,60,14,0.06); border: 1px solid rgba(248,60,14,0.15); border-radius: 10px; padding: 12px 14px; }
.metric .val { font-size: 1.4rem; font-weight: 800; color: var(--primary); }

/* ---- SERVICES: MOBILE 2-COLUMN COMPACT ---- */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .service-card { padding: 16px 14px !important; }
    .card-icon { width: 38px !important; height: 38px !important; font-size: 1rem !important; }
    .service-card h3 { font-size: 0.82rem !important; line-height: 1.3 !important; margin-bottom: 6px !important; }
    .service-card p {
        font-size: 0.74rem !important; line-height: 1.45 !important;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
        overflow: hidden; margin-bottom: 10px !important;
    }
    .footer-txt { font-size: 0.68rem !important; }
    .arrow-btn { width: 28px !important; height: 28px !important; font-size: 0.75rem !important; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-title { font-size: clamp(2.1rem, 8vw, 3rem); }
}

@media (max-width: 420px) {
    .services-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
}

/* ---- GOOGLE REVIEW BUTTON ---- */
.btn-google-review {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem; font-weight: 500; font-family: var(--font-primary);
    letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
    transition: all 0.3s ease; white-space: nowrap;
}
.btn-google-review:hover {
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22);
    color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.google-icon { width: 18px; height: 18px; flex-shrink: 0; }

.google-review-cta {
    display: flex; justify-content: center;
    margin-top: 24px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-btn-wrapper { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.footer-contacts li .fab.fa-google {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(66,133,244,0.1); border: 1px solid rgba(66,133,244,0.2);
    border-radius: 8px; font-size: 0.9rem; flex-shrink: 0; color: #4285F4;
}

/* ==========================================
   29. PREMIUM AGENCY HERO SHOWCASE
   ========================================== */

/* Agency showcase wrapper */
.agency-showcase {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
}

/* Main reel card */
.agency-reel-card {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(248,60,14,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
    animation: agencyFloat 6s ease-in-out infinite;
}

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

/* Card header bar */
.reel-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
}

.reel-dots {
    display: flex;
    gap: 5px;
}

.reel-label {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.reel-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #22c55e;
    text-transform: uppercase;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

/* Project rows */
.reel-projects {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reel-project-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.reel-project-row:hover {
    background: rgba(248,60,14,0.05);
    border-color: rgba(248,60,14,0.15);
}

.reel-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.reel-project-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reel-project-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-project-type {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.reel-status {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 100px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.reel-status.done {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
}

.reel-status.progress {
    background: rgba(248,60,14,0.12);
    border: 1px solid rgba(248,60,14,0.3);
    color: var(--primary);
}

/* Card footer */
.reel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}

.reel-count strong {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}

.reel-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
}

/* Two stat pill cards below reel card */
.agency-stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.agency-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(248,60,14,0.12);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.agency-stat-card:hover {
    border-color: rgba(248,60,14,0.3);
    transform: translateY(-2px);
}

.agency-stat-card i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.agency-stat-card div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.stat-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

/* CTA btn wrapper — single button, no column stack */
.cta-btn-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
}

/* Hero responsive for agency showcase */
@media (max-width: 900px) {
    .agency-showcase {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .agency-reel-card {
        animation: none;
    }

    .reel-project-row {
        padding: 8px 10px;
    }

    .reel-thumb {
        width: 34px;
        height: 34px;
    }

    .reel-project-name {
        font-size: 0.77rem;
    }

    .agency-stat-cards {
        gap: 8px;
    }

    .agency-stat-card {
        padding: 11px 13px;
        gap: 8px;
    }

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

    .cta-btn-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* ==========================================
   30. CINEMATIC 3D HERO SCENE
   ========================================== */

/* Scene container */
.cinematic-scene {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 480px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient bg radial glow */
.scene-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%,
        rgba(248,60,14,0.13) 0%,
        rgba(248,60,14,0.04) 45%,
        transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* ---- ORB SYSTEM ---- */
.orb-system {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    position: relative;
    width: 110px; height: 110px;
    border-radius: 50%;
    animation: orbBreath 5s ease-in-out infinite;
}

@keyframes orbBreath {
    0%,100% { transform: scale(1); filter: brightness(1); }
    50%      { transform: scale(1.06); filter: brightness(1.15); }
}

.orb-surface {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        #ff7a3d 0%,
        #f83c0e 35%,
        #8b1a00 65%,
        #1a0500 100%);
    box-shadow:
        0 0 40px rgba(248,60,14,0.7),
        0 0 80px rgba(248,60,14,0.35),
        0 0 140px rgba(248,60,14,0.15),
        inset 0 0 30px rgba(255,150,80,0.3);
}

.orb-shimmer {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%, rgba(255,180,120,0.25) 20%,
        transparent 40%, rgba(255,180,120,0.1) 60%,
        transparent 80%, rgba(255,180,120,0.2) 100%
    );
    animation: orbSpin 8s linear infinite;
}

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

.orb-inner-glow {
    position: absolute;
    top: 15%; left: 20%;
    width: 40%; height: 30%;
    background: radial-gradient(circle, rgba(255,220,180,0.6) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
}

/* Halos */
.orb-halo {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    pointer-events: none;
}
.halo-1 {
    width: 160px; height: 160px;
    border-color: rgba(248,60,14,0.25);
    box-shadow: 0 0 20px rgba(248,60,14,0.12);
    animation: haloBreath 5s ease-in-out infinite;
}
.halo-2 {
    width: 220px; height: 220px;
    border-color: rgba(248,60,14,0.12);
    animation: haloBreath 5s ease-in-out infinite 0.8s;
}
.halo-3 {
    width: 290px; height: 290px;
    border-color: rgba(248,60,14,0.06);
    animation: haloBreath 5s ease-in-out infinite 1.6s;
}

@keyframes haloBreath {
    0%,100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.03); }
}

/* Pulse rings */
.orb-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(248,60,14,0.6);
    animation: pulsePing 3.6s ease-out infinite;
    pointer-events: none;
}
.pr-1 { width: 110px; height: 110px; animation-delay: 0s; }
.pr-2 { width: 110px; height: 110px; animation-delay: 1.2s; }
.pr-3 { width: 110px; height: 110px; animation-delay: 2.4s; }

@keyframes pulsePing {
    0%   { transform: scale(1);   opacity: 0.9; }
    100% { transform: scale(3.2); opacity: 0; }
}

/* ---- GYROSCOPE RINGS ---- */
.ring-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 320px; height: 320px;
    z-index: 3;
    perspective: 800px;
}

.gyro-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(248,60,14,0.35);
    box-shadow: 0 0 12px rgba(248,60,14,0.15), inset 0 0 8px rgba(248,60,14,0.08);
}

.ring-a {
    width: 320px; height: 320px;
    margin: -160px 0 0 -160px;
    animation: spinRingA 12s linear infinite;
    border-color: rgba(248,60,14,0.4);
}
.ring-b {
    width: 280px; height: 280px;
    margin: -140px 0 0 -140px;
    animation: spinRingB 18s linear infinite reverse;
    border-color: rgba(248,60,14,0.22);
    border-style: dashed;
}
.ring-c {
    width: 240px; height: 240px;
    margin: -120px 0 0 -120px;
    animation: spinRingC 9s linear infinite;
    border-color: rgba(248,100,14,0.18);
}

@keyframes spinRingA {
    0%   { transform: rotateX(70deg) rotateZ(0deg); }
    100% { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes spinRingB {
    0%   { transform: rotateY(60deg) rotateX(30deg) rotateZ(0deg); }
    100% { transform: rotateY(60deg) rotateX(30deg) rotateZ(360deg); }
}
@keyframes spinRingC {
    0%   { transform: rotateX(20deg) rotateY(80deg) rotateZ(0deg); }
    100% { transform: rotateX(20deg) rotateY(80deg) rotateZ(360deg); }
}

/* ---- FLOATING GLASS SHAPES ---- */
.glass-shape {
    position: absolute;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 5;
}

.gs-1 {
    width: 60px; height: 60px;
    top: 10%; left: 8%;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248,60,14,0.12), rgba(0,0,0,0.2));
    border-color: rgba(248,60,14,0.2);
    box-shadow: 0 8px 32px rgba(248,60,14,0.1);
    animation: floatShape1 7s ease-in-out infinite;
    transform: rotate(12deg);
}
.gs-2 {
    width: 40px; height: 40px;
    bottom: 18%; right: 6%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248,60,14,0.15), rgba(0,0,0,0.3));
    border-color: rgba(248,60,14,0.25);
    box-shadow: 0 4px 24px rgba(248,60,14,0.12);
    animation: floatShape2 9s ease-in-out infinite;
}
.gs-3 {
    width: 80px; height: 24px;
    top: 22%; right: 4%;
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(248,60,14,0.08), rgba(248,60,14,0.02));
    border-color: rgba(248,60,14,0.15);
    animation: floatShape3 11s ease-in-out infinite;
}
.gs-4 {
    width: 28px; height: 28px;
    bottom: 30%; left: 5%;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    animation: floatShape1 8s ease-in-out infinite reverse;
    transform: rotate(-20deg);
}

@keyframes floatShape1 {
    0%,100% { transform: translateY(0px) rotate(12deg); }
    50%      { transform: translateY(-14px) rotate(18deg); }
}
@keyframes floatShape2 {
    0%,100% { transform: translateY(0px) scale(1); }
    50%      { transform: translateY(-10px) scale(1.08); }
}
@keyframes floatShape3 {
    0%,100% { transform: translateX(0px); opacity: 0.7; }
    50%      { transform: translateX(8px);  opacity: 1; }
}

/* ---- LIGHT STREAKS ---- */
.light-streak {
    position: absolute;
    border-radius: 100px;
    pointer-events: none;
    z-index: 2;
}

.lstr-1 {
    width: 180px; height: 1.5px;
    top: 28%; left: -5%;
    background: linear-gradient(90deg, transparent, rgba(248,60,14,0.5), transparent);
    animation: streakSlide1 4s ease-in-out infinite;
}
.lstr-2 {
    width: 100px; height: 1px;
    bottom: 32%; right: 0%;
    background: linear-gradient(90deg, transparent, rgba(248,100,40,0.35), transparent);
    animation: streakSlide1 6s ease-in-out infinite reverse;
}
.lstr-3 {
    width: 2px; height: 140px;
    top: 5%; right: 18%;
    background: linear-gradient(180deg, transparent, rgba(248,60,14,0.4), transparent);
    animation: streakSlide2 5s ease-in-out infinite;
}
.lstr-4 {
    width: 120px; height: 1px;
    top: 72%; left: 10%;
    background: linear-gradient(90deg, transparent, rgba(255,120,60,0.25), transparent);
    transform: rotate(-15deg);
    animation: streakSlide1 8s ease-in-out infinite 1s;
}
.lstr-5 {
    width: 1.5px; height: 80px;
    bottom: 8%; left: 24%;
    background: linear-gradient(180deg, transparent, rgba(248,60,14,0.3), transparent);
    animation: streakSlide2 7s ease-in-out infinite 2s;
}

@keyframes streakSlide1 {
    0%,100% { opacity: 0.3; transform: translateX(0); }
    50%      { opacity: 1;   transform: translateX(20px); }
}
@keyframes streakSlide2 {
    0%,100% { opacity: 0.25; transform: translateY(0); }
    50%      { opacity: 0.8;  transform: translateY(15px); }
}

/* ---- FLOATING PARTICLES ---- */
.scene-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(248,60,14,0.8);
    box-shadow: 0 0 6px rgba(248,60,14,0.6);
    pointer-events: none;
    z-index: 6;
}

.sd-1  { width:4px; height:4px; top:12%; left:20%;   animation: dotFloat 6s ease-in-out infinite 0s; }
.sd-2  { width:3px; height:3px; top:25%; right:15%;  animation: dotFloat 8s ease-in-out infinite 0.5s; background:rgba(255,140,80,0.9); }
.sd-3  { width:5px; height:5px; top:55%; left:12%;   animation: dotFloat 7s ease-in-out infinite 1s; }
.sd-4  { width:3px; height:3px; bottom:20%; right:20%; animation: dotFloat 9s ease-in-out infinite 1.5s; }
.sd-5  { width:2px; height:2px; top:40%; right:8%;   animation: dotFloat 5s ease-in-out infinite 2s; background:rgba(255,180,120,0.7); }
.sd-6  { width:4px; height:4px; bottom:35%; left:18%; animation: dotFloat 10s ease-in-out infinite 0.3s; }
.sd-7  { width:3px; height:3px; top:8%;  right:35%;  animation: dotFloat 6.5s ease-in-out infinite 1.2s; }
.sd-8  { width:2px; height:2px; bottom:15%; left:35%; animation: dotFloat 7.5s ease-in-out infinite 0.8s; background:rgba(255,100,40,0.6); }
.sd-9  { width:5px; height:5px; top:68%; right:12%;  animation: dotFloat 8.5s ease-in-out infinite 2.2s; }
.sd-10 { width:3px; height:3px; top:18%; left:42%;   animation: dotFloat 6s ease-in-out infinite 1.8s; }

@keyframes dotFloat {
    0%,100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    33%      { transform: translateY(-12px) scale(1.3); opacity: 1; }
    66%      { transform: translateY(-6px) scale(0.9); opacity: 0.6; }
}

/* ---- CORNER ACCENTS ---- */
.corner-accent {
    position: absolute;
    width: 36px; height: 36px;
    pointer-events: none;
    z-index: 7;
    opacity: 0.5;
}
.ca-tl {
    top: 4%; left: 2%;
    border-top: 2px solid rgba(248,60,14,0.5);
    border-left: 2px solid rgba(248,60,14,0.5);
    border-radius: 4px 0 0 0;
    animation: cornerPulse 4s ease-in-out infinite;
}
.ca-br {
    bottom: 4%; right: 2%;
    border-bottom: 2px solid rgba(248,60,14,0.5);
    border-right: 2px solid rgba(248,60,14,0.5);
    border-radius: 0 0 4px 0;
    animation: cornerPulse 4s ease-in-out infinite 2s;
}
@keyframes cornerPulse {
    0%,100% { opacity: 0.3; }
    50%      { opacity: 0.8; }
}

/* ---- HERO TICKER IMPROVED ---- */
.hero-ticker {
    display: flex;
    gap: 0;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-ticker:hover {
    border-color: rgba(248,60,14,0.2);
    box-shadow: 0 8px 32px rgba(248,60,14,0.08);
}

.ticker-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
}

.ticker-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    background: linear-gradient(135deg, #fff 60%, rgba(248,60,14,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticker-num .unit {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg,#f83c0e,#ff7a3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticker-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
    flex-shrink: 0;
}

/* ---- MOBILE: CINEMATIC SCENE ---- */
@media (max-width: 900px) {
    .cinematic-scene {
        height: 360px;
        max-width: 100%;
    }
    .ring-wrap {
        width: 260px; height: 260px;
    }
    .ring-a { width:260px; height:260px; margin:-130px 0 0 -130px; }
    .ring-b { width:220px; height:220px; margin:-110px 0 0 -110px; }
    .ring-c { width:190px; height:190px; margin:-95px 0 0 -95px; }
    .orb-core { width:90px; height:90px; }
    .halo-1 { width:130px; height:130px; }
    .halo-2 { width:180px; height:180px; }
    .halo-3 { width:230px; height:230px; }
}

@media (max-width: 768px) {
    .cinematic-scene {
        height: 300px;
    }
    .ring-wrap {
        width: 220px; height: 220px;
    }
    .ring-a { width:220px; height:220px; margin:-110px 0 0 -110px; }
    .ring-b { width:185px; height:185px; margin:-92px 0 0 -92px; }
    .ring-c { width:155px; height:155px; margin:-77px 0 0 -77px; }
    .orb-core { width:75px; height:75px; }
    .halo-1 { width:110px; height:110px; }
    .halo-2 { width:150px; height:150px; }
    .halo-3 { width:195px; height:195px; }
    .gs-1, .gs-3 { display: none; }
    .lstr-3, .lstr-5 { display: none; }
    .hero-ticker {
        padding: 14px 16px;
        gap: 0;
    }
    .ticker-num { font-size: 1.3rem; }
    .ticker-label { font-size: 0.62rem; }
}
