/* ==========================================
   LIXROO CREATIVES — Design System & Styles
   ========================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand colors from logo */
    --cyan: #66FFEE;
    --blue: #6666FF;
    --purple: #9966FF;
    --cyan-dim: rgba(102, 255, 238, 0.15);
    --blue-dim: rgba(102, 102, 255, 0.15);

    /* Neutrals */
    --bg-primary: #050510;
    --bg-secondary: #0A0A1A;
    --bg-card: rgba(15, 15, 35, 0.7);
    --bg-card-hover: rgba(25, 25, 55, 0.8);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --border: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(102, 255, 238, 0.3);

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #66FFEE 0%, #6666FF 100%);
    --gradient-brand-2: linear-gradient(135deg, #66FFEE 0%, #9966FF 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(102, 255, 238, 0.1) 0%, rgba(102, 102, 255, 0.1) 100%);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

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

::selection {
    background: rgba(102, 255, 238, 0.3);
    color: white;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #050510;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 255, 238, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 255, 238, 0.1);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.nav-cta {
    background: var(--gradient-brand);
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #050510 !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 255, 238, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-smooth);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    opacity: 0.15;
    filter: blur(2px);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102, 255, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 255, 238, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(102, 255, 238, 0.08);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(102, 102, 255, 0.08);
    top: 50%;
    right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(153, 102, 255, 0.08);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: rgba(102, 255, 238, 0.06);
    top: 30%;
    right: 25%;
    animation-delay: -3s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: rgba(102, 102, 255, 0.05);
    bottom: 30%;
    left: 10%;
    animation-delay: -7s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    background: rgba(153, 102, 255, 0.05);
    top: 15%;
    right: 10%;
    animation-delay: -12s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 15px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

/* ===== ANIMATED HERO LOGO ===== */
.hero-logo {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-svg {
    width: min(600px, 90vw);
    height: auto;
    overflow: visible;
}

/* Stroke draw-in animation */
.logo-main-text {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: logoStrokeDraw 2.5s ease-out 0.3s forwards;
}

@keyframes logoStrokeDraw {
    0% {
        stroke-dashoffset: 1200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Fill fades in after stroke draws */
.logo-fill-text {
    opacity: 0;
    animation: logoFillIn 1.2s ease-out 2s forwards;
}

@keyframes logoFillIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Glow layer pulses subtly */
.logo-glow-text {
    opacity: 0;
    animation: logoGlowPulse 3s ease-in-out 2s infinite;
}

@keyframes logoGlowPulse {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.5;
    }
}

/* ===== OWL EYE CIRCLES (SVG-based) ===== */

/* Eye circles draw in with stroke */
.owl-eye-circle {
    stroke-dasharray: 310;
    stroke-dashoffset: 310;
    animation: eyeCircleDraw 1.5s ease-out 1.5s forwards;
}

@keyframes eyeCircleDraw {
    0% {
        stroke-dashoffset: 310;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Eye fill fades in after circle draws */
.owl-eye-circle-fill {
    opacity: 0;
    animation: eyeFillIn 0.8s ease-out 2.8s forwards;
}

@keyframes eyeFillIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.15;
    }
}

/* Pupils appear after eyes draw */
.owl-pupil {
    opacity: 0;
    animation: pupilAppear 0.5s ease-out 2.5s forwards;
}

@keyframes pupilAppear {
    0% {
        opacity: 0;
        r: 2;
    }

    100% {
        opacity: 1;
        r: 10;
    }
}

/* Pupil glint */
.owl-pupil-glint {
    opacity: 0;
    animation: glintAppear 0.3s ease-out 2.8s forwards;
}

@keyframes glintAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.7;
    }
}

/* Diamond beak appears last */
.owl-beak {
    opacity: 0;
    animation: beakAppear 0.4s ease-out 2.9s forwards;
}

@keyframes beakAppear {
    0% {
        opacity: 0;
        transform: scale(0);
        transform-origin: center;
    }

    100% {
        opacity: 1;
        transform: scale(1);
        transform-origin: center;
    }
}

/* Simple blink animation on pupils */
.owl-pupil {
    animation: pupilAppear 0.5s ease-out 2.5s forwards, pupilBlink 5s ease-in-out 4s infinite;
}

@keyframes pupilBlink {

    0%,
    42% {
        opacity: 1;
    }

    45% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* CREATIVES subtitle */
.hero-logo-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(16px, 3.5vw, 24px);
    font-weight: 500;
    letter-spacing: 12px;
    color: var(--text-secondary);
    margin-top: -4px;
    opacity: 0;
    animation: creativesSlideIn 0.8s ease-out 2.6s forwards;
}

@keyframes creativesSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
        letter-spacing: 20px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 12px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(102, 255, 238, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(102, 255, 238, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== SECTIONS (Common) ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    background: var(--cyan-dim);
    border: 1px solid rgba(102, 255, 238, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

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

.about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--cyan);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-secondary);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.service-card.featured {
    border-color: rgba(102, 255, 238, 0.2);
    background: linear-gradient(180deg, rgba(102, 255, 238, 0.05) 0%, var(--bg-card) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-brand);
    color: #050510;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(102, 255, 238, 0.08);
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: 0.5;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card>p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ===== HOW IT WORKS ===== */
.steps-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan), var(--blue), var(--purple));
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-circle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(102, 255, 238, 0.15);
    transition: all 0.4s var(--ease-smooth);
}

.step:hover .step-circle {
    background: var(--gradient-brand);
    box-shadow: 0 0 30px rgba(102, 255, 238, 0.3);
}

.step:hover .step-circle span {
    -webkit-text-fill-color: #050510;
}

.step-circle span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 4px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FOR BRANDS & CREATORS (Split sections) ===== */
.for-brands {
    background: var(--bg-secondary);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

.split-content .section-tag {
    display: inline-block;
}

.split-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.split-content>p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Visual cards */
.split-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Orbit animation for brands */
.visual-orbit {
    position: relative;
    width: 280px;
    height: 280px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(102, 255, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(102, 255, 238, 0.15);
    border-radius: 50%;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: orbit 8s linear infinite;
}

.ring-2 {
    width: 190px;
    height: 190px;
    animation: orbit 12s linear infinite reverse;
}

.ring-3 {
    width: 260px;
    height: 260px;
    animation: orbit 16s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-dot.dot-2 {
    top: auto;
    bottom: -6px;
    background: var(--blue);
    box-shadow: 0 0 15px var(--blue);
}

.orbit-dot.dot-3 {
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    background: var(--purple);
    box-shadow: 0 0 15px var(--purple);
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Creator stack visualization */
.creator-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 280px;
}

.stack-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s var(--ease-smooth);
    animation: stack-slide 1s var(--ease-smooth) forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.stack-1 {
    animation-delay: 0.3s;
}

.stack-2 {
    animation-delay: 0.5s;
}

.stack-3 {
    animation-delay: 0.7s;
}

@keyframes stack-slide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stack-card:hover {
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.06);
}

.stack-icon {
    flex-shrink: 0;
}

.stack-card span {
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
}

.stack-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stack-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-brand);
    animation: bar-fill 1.5s var(--ease-smooth) forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes bar-fill {
    to {
        transform: scaleX(1);
    }
}

/* ===== TRUST SECTION ===== */
.trust-banner {
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trust-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

.trust-logos {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    transition: color 0.3s;
}

.trust-item:hover {
    color: var(--cyan);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(20px);
}

/* Form toggle */
.form-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 4px;
    margin-bottom: 28px;
    position: relative;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    font-family: var(--font-primary);
}

.toggle-btn.active {
    color: #050510;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    transition: transform 0.3s var(--ease-smooth);
}

.toggle-slider.right {
    transform: translateX(100%);
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(102, 255, 238, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* Contact info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s var(--ease-smooth);
}

.info-card:hover {
    border-color: var(--border-glow);
    transform: translateX(4px);
}

.info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
}

.email-icon {
    background: var(--cyan-dim);
    color: var(--cyan);
}

.social-icon {
    background: var(--blue-dim);
    color: var(--blue);
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.info-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan) !important;
    transition: all 0.3s;
}

.info-link:hover {
    color: var(--text-primary) !important;
}

.social-mini-links {
    display: flex;
    gap: 8px;
}

.social-mini-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-mini-links a:hover {
    background: var(--gradient-brand);
    color: #050510;
}

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-dim);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: all 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--cyan);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s var(--ease-smooth);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

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

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-110%) translateY(-50%) scale(1);
}

.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-110%) translateY(-50%) scale(0.8);
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
    pointer-events: none;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.2), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s var(--ease-bounce);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 20px;
}

.modal h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-smooth) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .about-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reverse {
        direction: ltr;
    }

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

    .trust-banner {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s var(--ease-smooth);
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        height: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

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

    .contact-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        padding: 72px 0;
    }

    .steps-container {
        padding-left: 0;
    }

    .steps-line {
        left: 29px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}