/* ===== FONTS ===== */
/* Syne (headings) + Outfit (body) loaded via Google Fonts in _Layout.cshtml */
/* JetBrains Mono (mono/typewriter) self-hosted below */

/* ===== JETBRAINS MONO ===== */
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --color-bg: #0A0A0A;
    --color-bg-warm: #111111;
    --color-bg-dark: #050505;
    --color-text: #F0F0F0;
    --color-text-light: #8A8F98;
    --color-text-inverse: #0A0A0A;
    --color-accent: #FF2D8A;
    --color-accent-2: #00E5FF;
    --color-border: #1E1E1E;
    --color-neon-glow: rgba(255, 45, 138, 0.15);
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 100px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.15s ease;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html.lenis, html.lenis body {
    height: auto;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

@media (pointer: fine) {
    body { cursor: none; }
}

/* Hide scrollbar (Lenis-style) */
body::-webkit-scrollbar { display: none; }
body { scrollbar-width: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

img::selection { background: transparent; }

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

ul { list-style: none; }

::selection {
    background: var(--color-accent);
    color: #fff;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10000;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: preloaderReveal 0.6s 0.1s var(--ease-out-expo) forwards;
}

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

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 1px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.3s 0.2s forwards;
}

.preloader-bar-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 9999;
    display: flex;
    pointer-events: none;
}

.transition-strip {
    flex: 1;
    background: var(--color-bg-dark);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
    will-change: transform;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #FF2D8A;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 45, 138, 0.5);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    transition: transform 0.25s var(--ease-out-expo), border-color 0.2s ease, background 0.2s ease;
}

.cursor-text {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF2D8A;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor.cursor-cta .cursor-ring,
.cursor.cursor-drag .cursor-ring,
.cursor.cursor-view .cursor-ring {
    transform: scale(2) translate(-5px, -5px);
}

.cursor.cursor-cta .cursor-ring {
    background: rgba(255, 45, 138, 0.1);
    border-color: rgba(255, 45, 138, 0.3);
}

.cursor.cursor-drag .cursor-ring,
.cursor.cursor-view .cursor-ring {
    background: rgba(255, 45, 138, 0.15);
    border-color: transparent;
}

.cursor.cursor-drag .cursor-text,
.cursor.cursor-view .cursor-text {
    opacity: 1;
}

.cursor.cursor-hidden .cursor-dot,
.cursor.cursor-hidden .cursor-ring {
    transform: scale(0);
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-bg-dark);
    color: #fff;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    transition: top var(--transition-fast);
    cursor: auto;
}

.skip-link:focus { top: 0; }

/* ===== FOCUS STYLES ===== */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* ===== BOTTOM CTA BAR (mobile only) ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-dark);
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    display: none;
}

@media (max-width: 768px) {
    .bottom-bar { display: block; }
}

.bottom-bar-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.bottom-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
    transition: background var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
}

.bottom-bar-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bottom-bar-btn:active {
    transform: scale(0.96);
}

.bottom-bar-btn--contact {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.bottom-bar-btn--contact:hover {
    background: #c4915e;
}

.bottom-bar-btn--call {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bottom-bar-btn--call:hover {
    background: rgba(255, 255, 255, 0.18);
}

.bottom-bar-btn--maps {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bottom-bar-btn--maps:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ===== NAVIGATION ===== */
.site-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    z-index: 1000;
    background: #FF2D8A;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    border-radius: var(--radius-pill);
    transition: box-shadow var(--transition), border-radius 0.4s var(--ease-out-expo), background 0.3s ease;
    overflow: hidden;
}

.site-nav.menu-open {
    border-radius: var(--radius-xl);
    background: #FF2D8A;
}

.site-nav.scrolled {
    background: #FF2D8A;
    box-shadow: 0 4px 24px rgba(255, 45, 138, 0.3);
}

.nav-inner {
    padding: 0 0.35rem 0 2rem;
    display: flex;
    align-items: center;
    height: 3.5rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    margin-right: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links .nav-cta {
    margin-left: 0.75rem;
    padding: 0.75rem 1.5rem;
    height: calc(3.5rem - 0.7rem);
    background: #fff;
    color: var(--color-bg-dark);
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.85rem;
    gap: 0.4rem;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

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

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: var(--color-bg-dark);
}

.nav-links .nav-cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Language Button — fixed top right */
.lang-btn {
    position: fixed;
    top: calc(1rem + (3.5rem - 44px) / 2);
    right: 1.5rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.lang-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.mobile-lang { display: none; }

@media (max-width: 768px) {
    .lang-btn { display: none; }

    .mobile-lang {
        display: flex;
        justify-content: center;
        border-bottom: none !important;
        padding: 0.5rem 0;
    }

    .mobile-menu .mobile-lang a {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        line-height: 1;
        padding: 0;
        margin: 0 auto;
    }

    .mobile-lang a svg { display: none; }
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    max-height: 22rem;
}

.mobile-menu ul {
    text-align: left;
    padding: 0.75rem 1.25rem 1rem;
}

.mobile-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu li:last-child { border-bottom: none; }

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--color-text);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    opacity: 0;
    transform: translateY(-8px);
}

.mobile-menu a svg {
    width: 16px;
    height: 16px;
    opacity: 0.3;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu a:hover svg {
    transform: translateX(4px);
    opacity: 0.7;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo), color 0.2s ease;
}

.mobile-menu.active li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu.active li:nth-child(2) a { transition-delay: 0.08s; }
.mobile-menu.active li:nth-child(3) a { transition-delay: 0.11s; }
.mobile-menu.active li:nth-child(4) a { transition-delay: 0.14s; }
.mobile-menu.active li:nth-child(5) a { transition-delay: 0.17s; }
.mobile-menu.active li:nth-child(6) a { transition-delay: 0.20s; }

.mobile-menu a:hover { color: var(--color-accent); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: var(--color-bg-dark);
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 3rem;
}

@media (min-width: 1024px) {
    .hero-inner {
        text-align: left;
        max-width: 900px;
    }
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(3.5rem, 6vw, 5.5rem);
    }
}

.title-line {
    display: block;
}

.hero-typewriter {
    font-family: var(--font-mono);
    font-style: normal;
    margin-left: 0.3em;
    transition: color 0.3s ease;
}

.hero-typewriter.tw-color-0 { color: #FF2D8A; }
.hero-typewriter.tw-color-1 { color: #FF2D8A; }
.hero-typewriter.tw-color-2 { color: #FF2D8A; }
.hero-typewriter.tw-color-3 { color: #FF2D8A; }

.hero-cursor {
    font-family: var(--font-mono);
    color: #FF2D8A;
    font-weight: 300;
    animation: cursorBlink 0.7s step-end infinite;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

@media (min-width: 1024px) {
    .hero-desc {
        margin: 0 0 2.5rem;
        font-size: 1.2rem;
    }
}

.hero-cta {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-bg-dark);
    background: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--radius-pill);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--color-bg-dark);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: subtleBounce 2.5s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .hero-scroll-hint {
        left: 4rem;
        transform: none;
        animation-name: subtleBounceLeft;
    }
}

@keyframes subtleBounceLeft {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
}

.hero-scroll-hint svg line {
    animation: scrollLine 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: translateY(-2px); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(4px); }
}

@keyframes subtleBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ===== HERO REVEAL (kept for preloader stagger) ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

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

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 8rem 3rem;
    position: relative;
    contain: layout style;
}

@media (min-width: 1200px) {
    .section {
        padding: 10rem 4rem;
    }
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-2);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    white-space: nowrap;
    opacity: 0.4;
    padding: 0 2rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ===== WORK / PROJECTS CAROUSEL ===== */
.work-section {
    background: var(--color-bg);
    overflow: hidden;
}

.work-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.work-carousel {
    overflow: visible;
    margin: 0 -3rem;
    padding: 0 3rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.work-carousel-track {
    display: flex;
    gap: 2rem;
    cursor: grab;
    user-select: none;
    will-change: transform;
    backface-visibility: hidden;
}

.work-carousel-track.dragging {
    cursor: grabbing;
}

.work-carousel-track.dragging img {
    pointer-events: none;
}

.work-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 45%;
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

@media (min-width: 1024px) {
    .work-card:nth-child(odd) {
        flex: 0 0 50%;
    }

    .work-card:nth-child(even) {
        flex: 0 0 38%;
        margin-top: 3rem;
    }
}

.work-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.work-card:hover .work-card-image img {
    transform: scale(1.05);
}

.work-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 45, 138, 0.06);
}

.work-card-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.work-card-info span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.view-all-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 0.25rem;
    transition: gap var(--transition);
}

.view-all-link:hover { gap: 1.25rem; }

/* ===== ABOUT ===== */
.about-section {
    background: var(--color-bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
    .about-image {
        aspect-ratio: 4/5;
        margin: -2rem 0;
        box-shadow: 24px 24px 0 var(--color-accent);
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.about-image:hover img { transform: scale(1.03); }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3.5rem;
        font-weight: 600;
    }
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--color-bg-dark);
    color: var(--color-text);
}

.services-section .section-label { color: var(--color-accent-2); }
.services-section .section-desc { color: var(--color-text-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        gap: 1.5rem;
    }

    .service-card:first-child {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3.5rem 2.5rem;
    }

    .service-card:first-child .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 2rem;
    }

    .service-card:first-child h3 {
        font-size: 1.8rem;
    }

    .service-card:first-child p {
        font-size: 1.05rem;
        max-width: 360px;
    }
}

.service-card {
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.service-card:hover {
    border-color: rgba(255, 45, 138, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(255, 45, 138, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== PROCESS ACCORDION ===== */
.process-section { background: var(--color-bg-warm); }

.process-steps { margin-top: 4rem; }

.process-step {
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s ease;
}

.process-step:first-child {
    border-top: 1px solid var(--color-border);
}

.step-header {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 2rem;
    padding: 2.5rem 0;
    align-items: center;
    cursor: pointer;
    transition: padding var(--transition);
}

.step-header:hover {
    padding-left: 1rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-border);
    line-height: 1;
    transition: color var(--transition);
    position: relative;
}

@media (min-width: 769px) {
    .process-step:not(:last-child) .step-number::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 100%;
        width: 1px;
        height: calc(100% + 2.5rem);
        background: linear-gradient(to bottom, var(--color-border), transparent);
        transform: translateX(-50%);
        margin-top: 0.5rem;
    }
}

.process-step:hover .step-number,
.process-step.open .step-number {
    color: var(--color-accent);
}

.step-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.accordion-toggle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: opacity var(--transition);
}

.process-step.open .accordion-toggle .toggle-open { display: none; }
.process-step.open .accordion-toggle .toggle-close { display: inline; }
.accordion-toggle .toggle-close { display: none; }

.step-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
    padding: 0 0 0 calc(80px + 2rem);
}

.process-step.open .step-body {
    max-height: 300px;
    padding-bottom: 2.5rem;
}

.step-body p {
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.8;
}


/* ===== CONTACT / CTA ===== */
.contact-section {
    background: var(--color-bg-dark);
    color: var(--color-text);
    text-align: center;
}

.contact-section .section-label { color: var(--color-accent-2); }

.contact-section .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.contact-section .section-desc {
    color: var(--color-text-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-bg-dark);
    background: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--color-bg-dark);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

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

.contact-form .contact-btn {
    width: 100%;
    justify-content: center;
    border: none;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-body);
    border-radius: 100px;
}

.contact-form .contact-btn:hover {
    background: #e0206f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5em;
}

.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== PROJECT BOTTOM SHEET ===== */
.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sheet-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8001;
    background: var(--color-bg);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sheet.active {
    transform: translateY(0);
}

.sheet-handle {
    width: 36px;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    margin: 0.75rem auto 0;
    flex-shrink: 0;
}

.sheet-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-bg-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition-fast);
}

.sheet-close:hover {
    background: var(--color-border);
}

.sheet-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 0;
    flex: 1;
}

.sheet-image {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    margin: 0.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.sheet-content {
    padding: 1.5rem;
}

.sheet-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.sheet-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.sheet-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (min-width: 769px) {
    .sheet {
        left: 50%;
        right: auto;
        width: 560px;
        transform: translate(-50%, 100%);
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 80vh;
    }

    .sheet.active {
        transform: translate(-50%, 0);
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: #fff;
    padding: 1.25rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--color-accent);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #e0206f;
}

.cookie-btn-decline {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(-100%);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border-top: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .cookie-banner.visible {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FOOTER ===== */
.footer-cta {
    background: var(--color-bg-warm);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
}

@media (min-width: 1200px) {
    .footer-cta {
        padding: 12rem 4rem;
    }
}


.footer-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.footer-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.cta-button.primary {
    background: var(--color-accent);
    color: #fff;
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 45, 138, 0.3);
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 300px;
    line-height: 1.7;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.footer-col li { margin-bottom: 0.75rem; }

.footer-col a,
.footer-col li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--color-accent); }

.copy-email {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--color-text-light);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.copy-email:hover { color: var(--color-accent); }

.copy-hint {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.copy-email:hover .copy-hint { opacity: 1; }

.copy-email.copied .copy-hint {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-bottom { padding-bottom: 5rem; }
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.footer-bottom-links a:hover { color: var(--color-accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section { padding: 5rem 2rem; }
    .nav-inner { padding: 0 0.35rem 0 1.75rem; }
    .hero-inner { padding: 0 2rem; }
    .about-grid { gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { padding: 4rem 2rem 2rem; }
    .footer-cta { padding: 5rem 2rem; }
    .work-carousel { margin: 0 -2rem; padding: 0 2rem; }
    .work-card { flex: 0 0 55%; }
}

@media (max-width: 768px) {
    /* Nav moves to bottom on mobile */
    .site-nav {
        top: auto;
        bottom: 0.75rem;
        width: calc(100% - 10rem);
        border-radius: var(--radius-pill);
        background: #FF2D8A;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border: none;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .nav-inner {
        height: 3.5rem;
        padding: 0 0.35rem 0 1.25rem;
    }

    .site-nav.scrolled {
        background: #FF2D8A;
        box-shadow: 0 4px 24px rgba(255, 45, 138, 0.3);
    }

    .site-nav.menu-open {
        border-radius: var(--radius-xl);
        background: #FF2D8A;
    }

    .nav-logo {
        color: #fff;
        font-size: 1.2rem;
    }

    .nav-toggle {
        width: calc(3.5rem - 0.7rem);
        height: calc(3.5rem - 0.7rem);
        background: #fff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 5px;
        margin: 0;
        flex-shrink: 0;
    }

    .nav-toggle span {
        background: #1A1A1A;
        width: 18px;
        height: 2px;
    }

    .nav-toggle.active span {
        background: #fff;
    }

    .nav-toggle.active {
        background: rgba(255, 255, 255, 0.15);
    }

    /* Mobile menu opens upward */
    .mobile-menu {
        order: -1;
    }

    .mobile-menu a {
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-menu a svg {
        stroke: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu li {
        border-bottom-color: rgba(255, 255, 255, 0.15);
    }

    .mobile-menu a:hover {
        color: #fff;
    }

    .mobile-menu a:hover svg {
        stroke: #fff;
    }


    /* Bottom bar no longer needed */
    .bottom-bar { display: none !important; }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero-inner { padding: 0 1.5rem; padding-bottom: 2rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .hero-scroll-hint { bottom: 5rem; }

    .work-card { flex: 0 0 85%; scroll-snap-align: center; }
    .work-carousel {
        margin: 0 -1.5rem;
        padding: 0 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .work-carousel::-webkit-scrollbar { display: none; }
    .work-carousel-track {
        cursor: default;
    }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { aspect-ratio: 16/10; }

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

    .step-header {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .accordion-toggle { display: none; }

    .step-number { font-size: 2rem; }

    .step-body { padding-left: calc(60px + 1rem); }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-nav { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section { padding: 4rem 1.5rem; }
    .footer-inner { padding: 3rem 1.5rem 2rem; }
    .footer-cta { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 1rem; }
    .hero-inner { padding: 0 1rem; }
    .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .hero-desc { font-size: 0.95rem; }
    .hero-label { font-size: 0.7rem; }
    .footer-inner { padding: 2.5rem 1rem 2rem; }
    .footer-cta { padding: 3rem 1rem; }
    .footer-cta h2 { font-size: 1.75rem; }
    .mobile-menu a { font-size: 0.95rem; }
    .section-title { font-size: 1.75rem; }
    .stat-number { font-size: 2rem; }
    .about-stats { gap: 1rem; }
    .step-header { grid-template-columns: 40px 1fr; gap: 0.75rem; }
    .step-number { font-size: 1.5rem; }
    .step-body { padding-left: calc(40px + 0.75rem); }
    .work-carousel { margin: 0 -1rem; padding: 0 1rem; }
    .work-card { flex: 0 0 90%; scroll-snap-align: center; }
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding-top: 180px;
}

.legal-inner {
    max-width: 800px;
}

.legal-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-inner h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-inner p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-inner ul {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-inner li {
    margin-bottom: 0.25rem;
}

.legal-inner a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

@media (min-width: 901px) {
    .pricing-card:first-child {
        margin-top: 2rem;
    }

    .pricing-card:last-child {
        margin-top: 2rem;
    }
}

.pricing-card {
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 45, 138, 0.1);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    background: var(--color-bg-dark);
    color: var(--color-text);
    box-shadow: 0 8px 40px rgba(255, 45, 138, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-4px);
    transform: scale(1.03);
}

.pricing-card.featured .pricing-label,
.pricing-card.featured .pricing-features li {
    color: var(--color-text-light);
}

.pricing-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.6;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card.featured .pricing-desc {
    color: var(--color-text-light);
    border-bottom-color: var(--color-border);
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== SAFARI / iOS FIXES ===== */
@supports (-webkit-touch-callout: none) {
    /* Fix 100vh on iOS Safari (address bar) */
    .mobile-menu {
        height: -webkit-fill-available;
    }

    /* Fix smooth scrolling on iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Fix sticky positioning in Safari */
    .site-nav {
        transform: translateX(-50%);
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }

    .hero-inner,
    .reveal-up {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-scroll-hint { animation: none; }
}
