/* ═══════════════════════════════════════════════════════════════════════════
   CREATYVE — Ultra-Premium Cinematic Design System
   Awwwards-level creative agency website
   ═══════════════════════════════════════════════════════════════════════════ */

/* --- Design Tokens --- */
:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --bg-tertiary: #0f0f18;
    --bg-elevated: #161622;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #f0f0f5;
    --text-secondary: #8a8a9a;
    --text-tertiary: #71717a;
    --text-muted: #55556a;
    --accent-1: #7c3aed;
    --accent-2: #a855f7;
    --accent-3: #00d4ff;
    --accent-glow: rgba(124, 58, 237, 0.5);
    --accent-subtle: rgba(124, 58, 237, 0.1);
    --neon-blue-glow: rgba(0, 212, 255, 0.5);
    --gradient-primary: linear-gradient(135deg, #7c3aed, #a855f7, #00d4ff);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(168, 85, 247, 0.4));
    --gradient-radial: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px var(--accent-glow);
    --shadow-neon: 0 0 60px var(--neon-blue-glow);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-1) var(--bg-primary);
    font-size: 16px;
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
}

body.loading {
    overflow: hidden;
}

/* Selection Styling */
::selection {
    background: var(--accent-1);
    color: white;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 40px var(--accent-glow);
}

.glow-accent {
    box-shadow: 0 0 60px var(--accent-glow);
}

.glow-neon {
    box-shadow: 0 0 60px var(--neon-blue-glow);
}

/* --- Noise Texture Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Grid Background Pattern --- */
.grid-bg {
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* --- Scan Line Effect --- */
.scan-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
    animation: scan-line 4s linear infinite;
    opacity: 0.3;
}

/* --- Glass --- */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

/* Advanced Mouse Glow */
.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(124, 58, 237, 0.1),
            transparent 40%);
}

.glass:hover::before,
.glass.auto-highlight::before {
    opacity: 1;
}

.glass-elevated {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition);
}

.glass-elevated:hover {
    border-color: var(--glass-highlight);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* --- Global Premium Hard Card Hover Animations --- */
.stat-card.glass,
.service-card.glass,
.service-hero-card.glass,
.about-mv-card.glass,
.testimonial-card.glass,
.faq-item.glass {
    transition: transform 0.2s ease-out, background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    transform-style: preserve-3d;
}

/* Hover State */
.stat-card.glass:hover,
.service-card.glass:hover,
.service-hero-card.glass:hover,
.about-mv-card.glass:hover,
.testimonial-card.glass:hover,
.faq-item.glass:hover,
.glass.auto-highlight {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

/* --- Custom Cursor --- */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s var(--ease);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.25s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-follower.hover {
    width: 56px;
    height: 56px;
    border-color: var(--accent-3);
    background: rgba(0, 212, 255, 0.06);
}

@media (pointer: coarse) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    animation: pulse-glow 2s ease-in-out infinite, gradient-shift 4s ease infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: brightness(1);
        opacity: 0.8;
    }

    50% {
        filter: brightness(1.4);
        opacity: 1;
    }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin: 24px auto 12px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.loader-percent {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    isolation: isolate;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    z-index: 1;
    pointer-events: none;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(0, 212, 255, 0.05);
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {

    0%,
    100% {
        border-color: rgba(0, 212, 255, 0.3);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0);
    }

    50% {
        border-color: rgba(0, 212, 255, 0.6);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.375rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-title span {
    display: block;
}

.hero-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.35);
    animation: gradient-shift 6s ease infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-ghost {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: var(--glass-bg);
}

.btn-ghost:hover {
    border-color: var(--accent-2);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Scroll Indicator --- */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(14px);
        opacity: 0.3;
    }
}

/* --- Section Commons --- */
.section {
    padding: 140px 0;
    position: relative;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.section-sub.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* --- About (Ultra Premium) --- */

/* Hero Row */
.about-hero-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin: 48px 0 56px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-3);
}

.about-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-3);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Stat Strip */
.about-stat-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
}

.about-mini-stat {
    text-align: center;
}

.about-mini-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-mini-plus {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-mini-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-mini-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.3), transparent);
}

/* What We Do Cards */
.about-what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-what-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.about-what-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.about-what-card:hover::before {
    transform: scaleX(1);
}

.about-what-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
}

.about-what-icon-wrap {
    width: 52px;
    height: 52px;
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(0, 212, 255, 0.1));
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease);
}

.about-what-card:hover .about-what-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.about-what-icon-wrap svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-2);
}

.about-what-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-what-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Mission & Vision */
.about-mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.about-mv-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.about-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.about-mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.about-mv-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
}

.about-mission .about-mv-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
}

.about-mission .about-mv-icon svg {
    stroke: #a855f7;
}

.about-vision .about-mv-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(59, 130, 246, 0.1));
}

.about-vision .about-mv-icon svg {
    stroke: var(--accent-3);
}

.about-mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.about-mission h3 {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-vision h3 {
    background: linear-gradient(135deg, var(--accent-3), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-mv-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about-mv-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.about-mission .about-mv-accent {
    background: linear-gradient(90deg, #7c3aed, #a855f7, transparent);
}

.about-vision .about-mv-accent {
    background: linear-gradient(90deg, var(--accent-3), #3b82f6, transparent);
}

/* Approach Strip */
.about-approach {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 36px 44px;
    border-radius: var(--radius-lg);
}

.about-approach-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-approach-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 400px;
}

.about-approach-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.about-tag svg {
    stroke: var(--accent-2);
}

.about-tag:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}


/* --- Services (Redesigned) --- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(0, 212, 255, 0.08));
    transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-2);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s var(--ease);
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    transition: all 0.3s var(--ease);
}

.service-card:hover .service-list li {
    color: var(--text-primary);
}

.service-card:hover .service-list li::before {
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-img {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    transition: transform 0.6s var(--transition);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.03);
}

.portfolio-overlay {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.portfolio-metrics {
    display: flex;
    gap: 16px;
}

.portfolio-metrics span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-2);
    background: rgba(168, 85, 247, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
}

/* --- Process (Vertical Timeline) --- */
.process-timeline-v {
    position: relative;
    max-width: 900px;
    margin: 64px auto 0;
    padding: 20px 0;
}

.process-line-v {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-50%);
}

.process-line-v-fill {
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: height 2s var(--transition);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.process-step-v {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
}

.process-step-v:last-child {
    margin-bottom: 0;
}

.process-spacer {
    width: 100%;
}

.process-dot-v {
    width: 56px;
    height: 56px;
    background: var(--bg-primary);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-2);
    position: relative;
    z-index: 3;
    transition: all 0.5s var(--transition);
    margin: 0 auto;
}

.process-step-v:hover .process-dot-v {
    border-color: var(--accent-2);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4), 0 0 60px rgba(124, 58, 237, 0.15);
    transform: scale(1.15);
    background: var(--bg-secondary);
}

.process-content {
    padding: 32px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.5s var(--transition);
}

.process-content:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.12);
}

.process-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-3);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Alternating content alignment */
.process-step-v[data-step="left"] .process-content {
    text-align: right;
}

.process-step-v[data-step="right"] .process-content {
    text-align: left;
}


/* --- Stats / Why Us --- */
.why-us {
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.stat-card {
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-card:active {
    transform: scale(0.97);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* --- FAQ --- */
.faq-list {
    max-width: 768px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    background: transparent;
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--accent-2);
    transition: transform 0.4s var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition), padding 0.5s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3);
}

.blog-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.blog-cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-3);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 100px;
}

.blog-body {
    padding: 24px;
}

.blog-body time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.35;
}

.blog-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-2);
    transition: letter-spacing 0.3s;
}

.blog-link:hover {
    letter-spacing: 2px;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent-2);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-3px);
}

.contact-form {
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-primary);
    /* Dark background */
    color: var(--text-primary);
    /* White text */
}

.form-group select optgroup {
    background: var(--bg-secondary);
    color: var(--accent-3);
    font-weight: 700;
    font-style: normal;
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* --- Stats Counter Section (from creatyve.digital) --- */
.stats-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number-big {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 12px auto;
    border-radius: 2px;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- Final CTA Banner --- */
.final-cta {
    padding: 60px 0 100px;
    background: var(--bg-primary);
}

.cta-banner {
    text-align: center;
    padding: 80px 60px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 18px 40px !important;
    font-size: 1.125rem !important;
}

.cta-trust {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Footer (Watermark Design) --- */
.footer {
    position: relative;
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-secondary);
    overflow: hidden;
}

/* Remove Watermark */

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #fff;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.footer-social-icon:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
    color: var(--accent-2);
    transform: translateX(4px);
}

.footer-cta {
    color: var(--accent-3) !important;
    font-weight: 600;
    margin-top: 8px;
}

.footer-cta:hover {
    color: var(--accent-2) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-2);
}


/* --- Animations & Screen Transitions --- */
.anim-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.anim-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* --- Advanced Animation Keyframes --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(1deg);
    }

    66% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes scan-line {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100vh);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 50px var(--accent-glow), 0 0 100px rgba(124, 58, 237, 0.2);
    }
}

@keyframes border-glow {

    0%,
    100% {
        border-color: rgba(124, 58, 237, 0.2);
    }

    50% {
        border-color: rgba(124, 58, 237, 0.6);
    }
}

/* --- Animation Utility Classes --- */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
}

.animate-border-glow {
    animation: border-glow 3s ease-in-out infinite;
}

/* --- Floating Orb Decorations --- */
.orb {
    display: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(124, 58, 237, 0.12);
    top: 20%;
    left: -10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.08);
    bottom: 20%;
    right: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(168, 85, 247, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
}

@media (max-width: 1024px) {

    .services-grid,
    .services-grid-secondary {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .about-mv-row,
    .about-hero-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-what-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .process-timeline-v {
        max-width: 100%;
        position: relative;
    }

    .process-line-v {
        left: 28px;
        transform: translateX(-50%);
    }

    .process-step-v,
    .process-step-v[data-step="left"],
    .process-step-v[data-step="right"] {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .process-spacer {
        display: none;
    }

    .process-dot-v {
        width: 56px;
        height: 56px;
        min-width: 56px;
        order: 1;
        margin: 0;
    }

    .process-content {
        order: 2;
        width: 100%;
        padding: 24px;
    }

    .process-step-v[data-step="left"] .process-content,
    .process-step-v[data-step="right"] .process-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav {
        background: #0a0a0f;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 8px 0;
    }

    .nav-logo img {
        height: 64px;
        mix-blend-mode: screen;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        clip-path: circle(0% at 90% 10%);
        transition: opacity 0.4s ease, visibility 0.4s ease, clip-path 0.7s cubic-bezier(0.75, 0, 0.2, 1);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        clip-path: circle(150% at 90% 10%);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 1.4rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active .nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active .nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active .nav-link:nth-child(6) {
        transition-delay: 0.35s;
    }

    .services-grid,
    .services-grid-secondary,
    .about-what-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-strip {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .about-mini-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    }

    .about-approach {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px 24px;
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .stat-card {
        padding: 40px 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .section {
        padding: 90px 0;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 90px;
        align-items: flex-start;
        height: auto;
        min-height: 0;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(2.3rem, 7vw, 3.5rem);
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        grid-template-columns: 1fr;
    }
}

/* --- Consultancy Banner --- */
.consultancy-banner-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.consultancy-banner {
    position: relative;
    padding: 80px 60px;
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.banner-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--accent-2);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-primary);
}

.banner-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .consultancy-banner {
        padding: 60px 24px;
        margin: 0 10px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-desc {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
}