/* ===================================================
   TikTok Portfolio — Redesigned Premium Glass Theme
   Colors: #EE1D52 (pink), #69C9D0 (cyan), #010101 (black)
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
    --pink: #EE1D52;
    --pink-light: #ff6b8a;
    --pink-dark: #c41640;
    --cyan: #69C9D0;
    --cyan-light: #8edce2;
    --cyan-dark: #3a8a9f;
    --bg-primary: #010101;
    --bg-secondary: #050505;
    --bg-card: rgba(18, 18, 18, 0.6);
    --bg-card-hover: rgba(30, 30, 30, 0.8);
    --bg-elevated: rgba(40, 40, 40, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #777777;
    --border: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --glow-pink: rgba(238, 29, 82, 0.45);
    --glow-cyan: rgba(105, 201, 208, 0.45);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--pink), var(--cyan));
}

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;
}

/* Film Grain/Noise Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.022;
    pointer-events: none;
    z-index: 9999;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ═══════════════════════════════════════════════════
   LOADING SCREEN — TikTok Peak
   ═══════════════════════════════════════════════════ */

.tt-loader {
    position: fixed;
    inset: 0;
    background: #060608;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.tt-loader.tt-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

/* Floating particle dots in background */
.tt-loader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tt-loader-particle {
    position: absolute;
    border-radius: 50%;
    animation: tt-particle-float linear infinite;
    opacity: 0;
}

@keyframes tt-particle-float {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* Center content */
.tt-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

/* Icon pulse */
.tt-loader-icon {
    animation: tt-icon-pulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(238, 29, 82, 0.5));
}

@keyframes tt-icon-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(238,29,82,0.5)); }
    50%       { transform: scale(1.1); filter: drop-shadow(0 0 35px rgba(105,201,208,0.6)); }
}

/* Brand name */
.tt-loader-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
    animation: tt-fade-up 0.6s ease 0.1s both;
}

.tt-loader-peak {
    background: linear-gradient(135deg, var(--pink) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.tt-loader-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    animation: tt-fade-up 0.6s ease 0.2s both;
}

/* Progress bar */
.tt-loader-bar {
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
    animation: tt-fade-up 0.6s ease 0.3s both;
}

.tt-loader-fill {
    width: 0%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    animation: tt-fill-bar 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    box-shadow: 0 0 10px rgba(238,29,82,0.5);
}

@keyframes tt-fill-bar {
    0%   { width: 0%; }
    100% { width: 100%; }
}

@keyframes tt-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Cursor Glow --- */

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(238, 29, 82, 0.08) 0%, rgba(105, 201, 208, 0.04) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --- Dual Cursor (TikTok brand colors) --- */
body, a, button, input, select, textarea, label {
    cursor: none;
}

.cursor {
    position: fixed; top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--pink);
    border-radius: 50%;
    pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.15s cubic-bezier(0.34,1.56,0.64,1),
                height 0.15s cubic-bezier(0.34,1.56,0.64,1),
                background 0.15s;
    box-shadow: 0 0 8px var(--glow-pink);
}

.cursor-follower {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(105, 201, 208, 0.55);
    border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.28s cubic-bezier(0.34,1.56,0.64,1),
                height 0.28s cubic-bezier(0.34,1.56,0.64,1),
                opacity 0.2s, border-color 0.2s;
}

body.cur-hov .cursor         { width: 20px; height: 20px; background: var(--pink-light); }
body.cur-hov .cursor-follower{ width: 54px; height: 54px; border-color: var(--cyan); opacity: 0.6; }

/* --- Logo Peak Accent --- */
.logo-peak {
    color: var(--pink);
}

/* --- Modal Overlay --- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1; pointer-events: all;
}

.scheduler-modal {
    background: #0e0e0e;
    border: 1px solid rgba(238,29,82,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%; max-width: 760px;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 0 60px rgba(238,29,82,0.15), 0 30px 80px rgba(0,0,0,0.6);
    animation: modal-slide-in 0.35s cubic-bezier(0.16,1,0.3,1);
}

@keyframes modal-slide-in {
    from { opacity:0; transform:translateY(30px) scale(0.96); }
    to   { opacity:1; transform:translateY(0) scale(1); }
}

.modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s; cursor: none;
}
.modal-close:hover { background: rgba(238,29,82,0.2); color: #fff; border-color: rgba(238,29,82,0.4); }

.modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

.scheduler-modal h3 {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.scheduler-step { }
.scheduler-step.hidden { display: none !important; }

/* Calendar layout */
.scheduler-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem;
}

.calendar-wrapper { }

.calendar-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 700; font-size: 0.95rem;
}

.cal-nav-btn {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #fff;
    font-size: 1.1rem; cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}
.cal-nav-btn:hover { background: rgba(238,29,82,0.2); border-color: rgba(238,29,82,0.4); }

.calendar-weekdays {
    display: grid; grid-template-columns: repeat(7,1fr);
    text-align: center; margin-bottom: 0.4rem;
}
.calendar-weekdays span { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; padding: 0.3rem 0; }

.calendar-days {
    display: grid; grid-template-columns: repeat(7,1fr); gap: 3px;
}

.cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 0.8rem; font-weight: 500;
    cursor: none; transition: 0.18s; border: 1px solid transparent;
}
.cal-day.empty { pointer-events: none; }
.cal-day.past  { color: var(--text-muted); opacity: 0.4; pointer-events: none; }
.cal-day.available:hover { background: rgba(238,29,82,0.15); border-color: rgba(238,29,82,0.3); color: var(--pink-light); }
.cal-day.selected { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; border-color: transparent; box-shadow: 0 0 12px rgba(238,29,82,0.4); }
.cal-day.today { border-color: rgba(105,201,208,0.4); color: var(--cyan); }

/* Time slots */
.time-slots-wrapper h4.slots-header {
    font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted); margin-bottom: 0.8rem;
}

.time-slots {
    display: flex; flex-direction: column; gap: 0.45rem;
    max-height: 240px; overflow-y: auto;
}

.time-slot {
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; font-size: 0.85rem; font-weight: 600;
    cursor: none; transition: 0.18s; color: var(--text-secondary); text-align: left;
}
.time-slot:hover { background: rgba(238,29,82,0.12); border-color: rgba(238,29,82,0.3); color: #fff; }
.time-slot.selected { background: rgba(238,29,82,0.18); border-color: var(--pink); color: var(--pink-light); box-shadow: 0 0 10px rgba(238,29,82,0.2); }

.no-date-msg { font-size: 0.82rem; color: var(--text-muted); padding: 1rem 0; }

.scheduler-actions { margin-top: 1.5rem; }

/* Scheduler form */
.scheduler-form .form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.form-input {
    width: 100%; padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: var(--text-primary);
    font-family: var(--font-primary); font-size: 0.9rem;
    transition: 0.2s; outline: none;
}
.form-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(238,29,82,0.12); }
.error-msg { display: none; font-size: 0.72rem; color: var(--pink-light); margin-top: 0.3rem; }

/* Booking summary card */
.booking-summary-card {
    background: rgba(105,201,208,0.07);
    border: 1px solid rgba(105,201,208,0.2);
    border-radius: 14px; padding: 1.2rem 1.5rem;
    font-size: 0.88rem; line-height: 1.7; color: var(--text-secondary);
}
.booking-summary-card strong { color: var(--cyan); }

/* WhatsApp contact method */
.contact-method-whatsapp {
    position: relative;
    overflow: hidden;
}
.contact-method-whatsapp::before {
    content: '';
    position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(135deg, rgba(37,211,102,0.06), transparent);
    opacity: 0; transition: opacity 0.25s;
}
.contact-method-whatsapp:hover::before { opacity: 1; }
.contact-method-whatsapp:hover { border-color: rgba(37,211,102,0.3) !important; }

/* --- Utility --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.text-gradient {
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(1, 1, 1, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    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;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1001;
    letter-spacing: -0.02em;
}

.logo-icon {
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 8px var(--glow-pink));
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(238, 29, 82, 0.4);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    box-shadow: 0 8px 30px rgba(238, 29, 82, 0.6);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

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

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-pink {
    width: 600px;
    height: 600px;
    background: var(--pink);
    opacity: 0.18;
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.orb-cyan {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    opacity: 0.12;
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.08); }
    66% { transform: translate(-30px, 30px) scale(0.92); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(238, 29, 82, 0.08);
    border: 1px solid rgba(238, 29, 82, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-light);
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(238, 29, 82, 0.15);
    backdrop-filter: blur(8px);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(238, 29, 82, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(238, 29, 82, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-line em {
    font-style: normal;
    position: relative;
    color: var(--text-primary);
}

.hero-line em::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}

/* Glitch text effect */
.glitch-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(105, 201, 208, 0.2));
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text::before {
    animation: glitch-1 3.5s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
}

.glitch-text::after {
    animation: glitch-2 3.5s ease-in-out infinite;
    clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    18% { transform: translate(-2px, -1px); }
    22% { transform: translate(1.5px, 0.5px); }
    38% { transform: translate(0); }
    78% { transform: translate(-1px, 1px); }
    82% { transform: translate(1px, -0.5px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    18% { transform: translate(2px, 0.5px); }
    22% { transform: translate(-1.5px, -0.5px); }
    38% { transform: translate(0); }
    78% { transform: translate(1px, -1px); }
    82% { transform: translate(-1px, 0.5px); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    box-shadow: 0 4px 24px rgba(238, 29, 82, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(238, 29, 82, 0.55);
    transform: translateY(-3px);
}

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

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

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), #dddddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pink);
}

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

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

/* --- Hero Visual (Smartphone Mockup) --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.phone-mockup {
    width: 290px;
    height: 580px;
    background: #010101;
    border: 11px solid #1c1c1e;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        -6px 6px 0 var(--pink), 
        6px -6px 0 var(--cyan), 
        0 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.phone-mockup:hover {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 
        -8px 8px 0 var(--pink), 
        8px -8px 0 var(--cyan), 
        0 40px 80px rgba(0, 0, 0, 0.9);
}

.phone-screen {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 16px 20px;
    color: white;
    cursor: pointer;
}

/* TikTok Overlays inside Phone */
.phone-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.phone-header span {
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.2s;
}

.phone-header span.active {
    font-weight: 700;
    opacity: 1;
}

.phone-header span.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: white;
    border-radius: 2px;
}

.phone-right-sidebar {
    position: absolute;
    right: 12px;
    bottom: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    z-index: 5;
}

.sidebar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.sidebar-icon:hover {
    transform: scale(1.1);
}

.creator-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    margin-bottom: 8px;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.follow-plus {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(238,29,82,0.4);
}

.icon-heart {
    color: var(--pink);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 4px rgba(238,29,82,0.6));
}

.icon-comment,
.icon-share {
    font-size: 1.25rem;
}

.icon-count {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
    color: rgba(255,255,255,0.9);
}

.phone-bottom-caption {
    z-index: 5;
    text-align: left;
    margin-right: 48px;
}

.creator-handle {
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.video-caption {
    font-size: 0.72rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.sound-track {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    background: rgba(0,0,0,0.4);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.1);
}

.music-icon {
    font-size: 0.75rem;
    animation: musicPulse 1.5s ease-in-out infinite;
}

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

.marquee-music {
    white-space: nowrap;
    overflow: hidden;
    width: 100px;
    animation: textMarquee 8s linear infinite;
}

@keyframes textMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60%); }
}

/* Disk rotation */
.music-disk {
    position: absolute;
    right: 12px;
    bottom: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111;
    border: 4px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: diskRotate 3.5s linear infinite;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
    z-index: 5;
}

.music-disk img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes diskRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Play indicator overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: 4;
}

.phone-screen:hover .play-overlay {
    opacity: 1;
}

.hero-play-icon {
    width: 44px;
    height: 44px;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    transform: scale(0.9);
    transition: transform var(--transition-bounce);
}

.phone-screen:hover .hero-play-icon {
    transform: scale(1);
}

/* Floating badges surrounding phone */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    z-index: 10;
    width: max-content;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-top-right {
    top: 60px;
    right: -30px;
    animation-delay: 0s;
}

.badge-bottom-left {
    bottom: 80px;
    left: -40px;
    animation-delay: -2s;
}

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

.badge-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px var(--pink));
}

.floating-badge strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

.floating-badge span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.scroll-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.25); }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Brand Marquee --- */
.brand-marquee {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.marquee-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 8px 16px;
    z-index: 10;
    font-weight: 600;
    border-right: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding-left: 120px;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
}

.brand-name:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.brand-dot {
    color: var(--pink);
    font-size: 0.9rem;
    opacity: 0.6;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Section Shared --- */
.portfolio,
.case-studies,
.services,
.testimonials,
.about,
.contact {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink);
    background: rgba(238, 29, 82, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    border: 1px solid rgba(238, 29, 82, 0.12);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Portfolio Filters --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.filter-btn:hover {
    border-color: var(--pink);
    color: var(--pink-light);
    background: rgba(238, 29, 82, 0.06);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 20px rgba(238, 29, 82, 0.45);
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
}

.video-card.hidden {
    opacity: 0;
    transform: scale(0.85);
    position: absolute;
    pointer-events: none;
}

.video-card:hover {
    border-color: rgba(238, 29, 82, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(238, 29, 82, 0.15);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 9 / 13;
    overflow: hidden;
    background: #0d0d0d;
}

.video-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-smooth);
}

.video-card:hover .video-image {
    transform: scale(1.06);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-play-btn {
    opacity: 1;
}

.play-icon {
    width: 52px;
    height: 52px;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.video-card:hover .play-icon {
    transform: scale(1.12);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 85%);
    z-index: 2;
}

.video-views,
.video-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.video-views svg,
.video-likes svg {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.video-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-grow: 1;
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}

.video-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.viral-tag {
    background: rgba(238, 29, 82, 0.12);
    color: var(--pink-light);
    border: 1px solid rgba(238, 29, 82, 0.2);
}

.brand-tag {
    background: rgba(105, 201, 208, 0.12);
    color: var(--cyan-light);
    border: 1px solid rgba(105, 201, 208, 0.2);
}

.trending-tag {
    background: rgba(192, 105, 208, 0.12);
    color: #e2b4ed;
    border: 1px solid rgba(192, 105, 208, 0.2);
}

.ugc-tag {
    background: rgba(208, 160, 105, 0.12);
    color: #ebcca0;
    border: 1px solid rgba(208, 160, 105, 0.2);
}

/* --- Case Studies --- */
.case-studies {
    background: var(--bg-secondary);
}

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

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    opacity: 0;
    transition: var(--transition-smooth);
}

.case-card:hover {
    border-color: rgba(238, 29, 82, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

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

.case-header {
    margin-bottom: 20px;
}

.case-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.case-brand h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.case-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.case-brief {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-tags span {
    font-size: 0.72rem;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: rgba(105, 201, 208, 0.08);
    color: var(--cyan-light);
    font-weight: 600;
    border: 1px solid rgba(105, 201, 208, 0.15);
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.service-card:hover {
    border-color: rgba(238, 29, 82, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-card.featured {
    border-color: rgba(238, 29, 82, 0.35);
    background: linear-gradient(135deg, rgba(238, 29, 82, 0.07), rgba(105, 201, 208, 0.04));
}

.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    box-shadow: 0 4px 10px rgba(238,29,82,0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 29, 82, 0.06);
    border: 1px solid rgba(238, 29, 82, 0.12);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: rgba(238, 29, 82, 0.15);
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(238,29,82,0.2);
}

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

.service-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--glow-pink);
}

/* --- Testimonials --- */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.testimonial-card:hover {
    border-color: rgba(238, 29, 82, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 5px rgba(251,191,36,0.3));
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink);
    box-shadow: 0 4px 10px rgba(238,29,82,0.25);
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-frame {
    width: 320px;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2.5px;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.about-img-frame:hover .about-photo {
    transform: scale(1.05);
}

.about-floating-stat {
    position: absolute;
    padding: 14px 22px;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    z-index: 10;
    animation: floatBounce 4s ease-in-out infinite;
}

.stat-1 {
    top: 24px;
    right: -24px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 24px;
    left: -24px;
    animation-delay: -2s;
}

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

.floating-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.about-content .section-tag {
    margin-bottom: 18px;
}

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

.about-content p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 36px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.highlight:hover {
    border-color: rgba(238, 29, 82, 0.25);
    background: rgba(238, 29, 82, 0.04);
}

.highlight-icon {
    font-size: 1.4rem;
}

.highlight strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.highlight span {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Contact --- */
.contact {
    background: var(--bg-secondary);
}

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

.contact-info .section-tag {
    margin-bottom: 18px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-method:hover {
    border-color: rgba(238, 29, 82, 0.35);
    background: rgba(238, 29, 82, 0.05);
    transform: translateX(6px);
}

.contact-icon {
    font-size: 1.6rem;
}

.contact-method strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-method span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(238, 29, 82, 0.15);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

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

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

/* --- Footer --- */
.footer {
    padding: 70px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-brand .logo-text {
    font-size: 1.35rem;
    display: block;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--pink-light);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(238, 29, 82, 0.1);
    border-color: var(--pink);
    color: var(--pink-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(238,29,82,0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Equalizer & Phone Audio Wave Animation --- */
.equalizer-container {
    position: absolute;
    right: 16px;
    bottom: 60px;
    z-index: 6;
    background: rgba(0, 0, 0, 0.65);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    width: 25px;
}

.eq-bar {
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, var(--pink), var(--cyan));
    border-radius: 1px;
    transform-origin: bottom;
    animation: eqBounce 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 0.8s; }
.eq-bar:nth-child(2) { animation-delay: 0.4s; animation-duration: 1.1s; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; animation-duration: 0.9s; }
.eq-bar:nth-child(4) { animation-delay: 0.6s; animation-duration: 1.3s; }
.eq-bar:nth-child(5) { animation-delay: 0.3s; animation-duration: 1.0s; }

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.15); }
    50% { transform: scaleY(1); }
}

/* --- Portfolio Metrics Hover Overlay --- */
.video-ad-metrics {
    position: absolute;
    inset: 0;
    background: rgba(1, 1, 1, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    z-index: 3;
    border-radius: inherit;
}

.video-card:hover .video-ad-metrics {
    opacity: 1;
    transform: translateY(0);
}

/* Hover thumbnail styling */
.video-card:hover .video-image {
    filter: blur(4px) brightness(0.5);
    transform: scale(1.06);
}

/* Hide play button and default overlay on hover */
.video-card:hover .video-overlay,
.video-card:hover .video-play-btn {
    opacity: 0 !important;
    pointer-events: none;
}

.metrics-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan-light);
    margin-bottom: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 8px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.metric-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.metric-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(238, 29, 82, 0.2);
}

.metric-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.metric-name {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.metrics-retention {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.retention-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.retention-bar {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.retention-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.video-card:hover .retention-fill {
    transform: scaleX(1);
}

/* --- Campaign ROI Calculator --- */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 48px;
}

.calc-inputs-card,
.calc-outputs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calc-value-display {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink-light);
    background: rgba(238, 29, 82, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(238, 29, 82, 0.2);
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    box-shadow: 0 0 8px rgba(238, 29, 82, 0.7);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.calc-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    transition: var(--transition-fast);
}

.calc-select:focus {
    border-color: var(--pink);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(238, 29, 82, 0.15);
}

.calc-select option {
    background: #111;
    color: var(--text-primary);
}

.calc-outputs-card {
    border-color: rgba(238, 29, 82, 0.2);
    background: linear-gradient(135deg, rgba(238, 29, 82, 0.04), rgba(105, 201, 208, 0.02));
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.calc-result-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 22px 16px;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-fast);
}

.calc-result-box:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-light);
}

.calc-result-box.highlighted {
    background: rgba(238, 29, 82, 0.04);
    border: 1px dashed rgba(238, 29, 82, 0.3);
    box-shadow: inset 0 0 15px rgba(238, 29, 82, 0.05);
}

.calc-result-box.highlighted:hover {
    border-color: var(--pink);
    background: rgba(238, 29, 82, 0.07);
}

.result-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.calc-result-box.highlighted .result-number {
    color: var(--pink-light);
    text-shadow: 0 0 10px var(--glow-pink);
}

.result-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.calc-cta-box {
    text-align: center;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-cta-box p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px), (pointer: coarse) {
    body, a, button, input, select, textarea, label {
        cursor: auto !important;
    }
    a, button, [role="button"], select, label {
        cursor: pointer !important;
    }
    .cursor, .cursor-follower, .cursor-glow {
        display: none !important;
        pointer-events: none !important;
    }
    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

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

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

    .hero-stats {
        justify-content: center;
    }

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

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid .case-card:last-child {
        grid-column: span 2;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(1, 1, 1, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.25rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-content: none;
        justify-content: space-around;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        text-align: center;
        flex: 0 0 calc(50% - 10px);
    }

    .marquee-label {
        display: none;
    }

    .marquee-track {
        padding-left: 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .cases-grid .case-card:last-child {
        grid-column: span 1;
    }

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

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .contact-info .section-title {
        text-align: center;
    }

    .contact-info > p {
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .calc-inputs-card,
    .calc-outputs-card {
        padding: 24px;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

    .about-img-frame {
        width: 250px;
        height: 320px;
    }

    .stat-1 {
        right: -10px;
    }

    .stat-2 {
        left: -10px;
    }

    .badge-top-right {
        right: -10px;
        top: 20px;
    }

    .badge-bottom-left {
        left: -10px;
        bottom: 20px;
    }

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

    .stat-item {
        flex: unset;
    }
}

/* ═══════════════════════════════════════════════════
   ABOUT — CREATOR VISUAL DASHBOARD
   ═══════════════════════════════════════════════════ */

.about-visual-wrapper {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient glow orbs */
.av-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}
.av-orb-pink {
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--pink), transparent);
    opacity: 0.18;
    top: 5%; left: -5%;
}
.av-orb-cyan {
    width: 260px; height: 260px;
    background: radial-gradient(circle, var(--cyan), transparent);
    opacity: 0.14;
    bottom: 0%; right: -5%;
    animation-delay: -4s;
}

/* ── Phones fan ── */
.av-phones {
    position: relative;
    width: 180px;
    height: 360px;
}

.av-phone {
    position: absolute;
    width: 150px;
    height: 300px;
    border-radius: 22px;
    overflow: hidden;
    border: 8px solid #1c1c1e;
    background: #010101;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.av-phone-back {
    left: 50%; top: 50%;
    transform: translate(-80%, -50%) rotate(-14deg) scale(0.82);
    box-shadow: -4px 4px 0 var(--pink), 0 20px 40px rgba(0,0,0,0.6);
    z-index: 1;
    opacity: 0.7;
}
.av-phone-mid {
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(0.9);
    box-shadow: 0 0 0 1.5px rgba(105,201,208,0.3), 0 25px 50px rgba(0,0,0,0.65);
    z-index: 2;
    opacity: 0.85;
}
.av-phone-front {
    left: 50%; top: 50%;
    transform: translate(-20%, -50%) rotate(10deg) scale(1);
    box-shadow: 4px 4px 0 var(--cyan), 0 30px 60px rgba(0,0,0,0.8);
    z-index: 3;
}
.av-phones:hover .av-phone-back  { transform: translate(-95%,-50%) rotate(-18deg) scale(0.82); }
.av-phones:hover .av-phone-mid   { transform: translate(-50%,-52%) rotate(0deg) scale(0.9); }
.av-phones:hover .av-phone-front { transform: translate(-5%,-50%) rotate(12deg) scale(1.02); }

.av-phone-screen {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 10px 8px 10px;
    color: #fff;
    position: relative;
}

/* TikTok UI overlays on front phone */
.av-phone-ui {
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.av-phone-header {
    display: flex; justify-content: center; gap: 12px;
    font-size: 0.65rem; font-weight: 600;
}
.av-active { font-weight: 800; border-bottom: 1.5px solid #fff; padding-bottom: 2px; }

.av-phone-bottom { margin-top: auto; }
.av-handle { font-size: 0.62rem; font-weight: 700; display: block; margin-bottom: 4px; }

/* Mini equalizer inside phone */
.av-eq {
    display: flex; align-items: flex-end; gap: 2px; height: 14px;
}
.av-eq span {
    width: 3px; border-radius: 2px;
    background: linear-gradient(var(--pink), var(--cyan));
    animation: eq-dance 0.9s ease-in-out infinite alternate;
}
.av-eq span:nth-child(1) { height: 8px; animation-delay: 0s; }
.av-eq span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.av-eq span:nth-child(3) { height: 6px; animation-delay: 0.2s; }
.av-eq span:nth-child(4) { height: 12px; animation-delay: 0.15s; }
.av-eq span:nth-child(5) { height: 9px; animation-delay: 0.05s; }

@keyframes eq-dance {
    from { transform: scaleY(0.3); }
    to   { transform: scaleY(1); }
}

/* Views badge on phones */
.av-views-badge {
    position: absolute; bottom: 8px; left: 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 0.58rem; font-weight: 700; color: #fff;
    white-space: nowrap;
}
.av-badge-main {
    background: rgba(238,29,82,0.25);
    border-color: rgba(238,29,82,0.4);
    font-size: 0.65rem;
}

/* ── Analytics card ── */
.av-analytics-card {
    position: absolute;
    bottom: 20px; right: -10px;
    width: 200px;
    background: rgba(14,14,14,0.92);
    border: 1px solid rgba(238,29,82,0.2);
    border-radius: 16px;
    padding: 12px 14px;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    z-index: 10;
    animation: float-card 5s ease-in-out infinite;
}

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

.av-card-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
}
.av-card-title { font-size: 0.7rem; font-weight: 700; color: #fff; }
.av-card-live {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.55rem; font-weight: 800; letter-spacing: 0.08em;
    color: var(--pink-light);
}
.av-live-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 6px var(--pink);
    animation: pulse 1.4s ease-in-out infinite;
}

.av-bars { display: flex; flex-direction: column; gap: 7px; }
.av-bar-row {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.62rem; font-weight: 600; color: var(--text-secondary);
}
.av-bar-row span:first-child { width: 32px; flex-shrink: 0; }
.av-bar-row span:last-child  { width: 28px; text-align: right; flex-shrink: 0; color: #fff; }
.av-bar-track {
    flex: 1; height: 5px; background: rgba(255,255,255,0.08);
    border-radius: 5px; overflow: hidden;
}
.av-bar-fill {
    height: 100%; border-radius: 5px;
    animation: bar-grow 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
@keyframes bar-grow {
    from { width: 0 !important; }
}

/* ── Trending badge ── */
.av-trending-badge {
    position: absolute;
    top: 18px; right: -10px;
    background: rgba(14,14,14,0.9);
    border: 1px solid rgba(238,29,82,0.35);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.72rem;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 8px 24px rgba(238,29,82,0.15);
    backdrop-filter: blur(12px);
    z-index: 10;
    animation: float-card 4s ease-in-out infinite;
    animation-delay: -2s;
    white-space: nowrap;
}
.av-trending-badge strong { color: var(--pink-light); font-weight: 800; }
.av-trending-badge span   { color: var(--text-secondary); }

/* ── Stat pills ── */
.av-stat-pill {
    position: absolute;
    background: rgba(14,14,14,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 8px 16px;
    display: flex; flex-direction: column; align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 10;
}
.av-stat-top { top: 60px; left: -20px; animation: float-card 6s ease-in-out infinite; animation-delay: -1s; border-color: rgba(238,29,82,0.25); }
.av-stat-bot { bottom: 80px; left: -20px; animation: float-card 7s ease-in-out infinite; animation-delay: -3s; border-color: rgba(105,201,208,0.25); }
.av-stat-num {
    font-size: 1.3rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.av-stat-lbl { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

