/* ========================================
   FLAVA Creative Studio — Global Styles
   Palette: Noora Dark (Black + White + Coral)
   ======================================== */

/* --- Font Faces --- */
/* August — Display/Logo font (self-hosted) */
@font-face {
    font-family: 'August';
    src: url('../fonts/August-Bold.woff2') format('woff2'),
         url('../fonts/August-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

/* --- Design Tokens --- */
:root {
    /* Colors — Noora Dark Palette */
    --bg: #111111;
    --bg-alt: #1A1A1A;
    --card: #1E1E1E;
    --card-hover: #252525;
    --accent: #E8503A;
    --accent-light: rgba(232, 80, 58, 0.12);
    --accent-glow: rgba(232, 80, 58, 0.25);
    --text: #F5F5F5;
    --text-dim: #999999;
    --text-light: #666666;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(232, 80, 58, 0.3);
    --brown: #111111;
    --brown-light: #1A1A1A;
    --cream: #F5F5F5;
    --white: #FFFFFF;

    /* Typography — August (logo only) + Inter (headings) + Manrope (body) */
    --font-primary: 'Manrope', 'Noto Sans KR', 'Noto Sans JP', sans-serif;
    --font-display: 'August', 'Playfair Display', Georgia, serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --section-pad-mobile: 60px;
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.3s;
    --duration-medium: 0.6s;
    --duration-slow: 1s;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Smooth scroll override when Lenis is active */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Selection --- */
::selection {
    background: var(--accent);
    color: var(--cream);
}

/* ========================================
   MARKETPLACE-INSPIRED COMPONENTS
   ======================================== */
.top-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4, #F97316);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 1200;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all .25s var(--ease-out);
    z-index: 1100;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.floating-dock {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1050;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.floating-dock a {
    font-size: 11px;
    text-transform: capitalize;
    letter-spacing: .2px;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--text-dim);
    transition: all .2s ease;
    white-space: nowrap;
}

.floating-dock a.active,
.floating-dock a:hover {
    background: #fff;
    color: #111;
}

.hero {
    position: relative;
    overflow: hidden;
}

.ambient-gradient {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 70%;
    pointer-events: none;
    background:
        radial-gradient(42% 42% at 18% 30%, rgba(255, 103, 72, 0.18), transparent 70%),
        radial-gradient(42% 42% at 82% 25%, rgba(99, 102, 241, 0.18), transparent 70%),
        radial-gradient(36% 36% at 56% 12%, rgba(20, 184, 166, 0.15), transparent 68%);
    filter: blur(34px);
    z-index: 0;
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity .35s var(--ease-out);
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 38%), rgba(255,255,255,0.18), rgba(255,255,255,0) 62%);
    mix-blend-mode: soft-light;
}

.hero:hover .hero-spotlight {
    opacity: 1;
}

.hero h1 {
    transition: text-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}

.hero h1 .accent {
    transition: text-shadow .35s var(--ease-out), color .35s var(--ease-out);
}

.hero.hero-glow-active h1 {
    text-shadow: 0 0 18px rgba(255,255,255,0.22);
}

.hero.hero-glow-active h1 .accent {
    text-shadow: 0 0 22px rgba(232,80,58,0.45);
}

.hero > *:not(.ambient-gradient):not(.hero-spotlight):not(.hero-visual):not(.hero-float-card) {
    position: relative;
    z-index: 1;
}

/* Global noise layer for premium tactile feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.03;
    background-image: radial-gradient(rgba(255,255,255,0.3) 0.6px, transparent 0.7px);
    background-size: 3px 3px;
    mix-blend-mode: soft-light;
}

/* Section progress rail (desktop) */
.section-rail {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1060;
}

.section-rail a {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all .2s ease;
}

.section-rail a.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.25);
    box-shadow: 0 0 0 4px rgba(232,80,58,0.15);
}

/* Micro glow on primary CTA */
.btn-primary {
    box-shadow: none;
}

.btn-primary:hover {
    box-shadow: 0 16px 34px rgba(232,80,58,0.2);
}

@media (max-width: 1024px) {
    .floating-dock,
    .section-rail {
        display: none;
    }
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.container--wide {
    max-width: var(--container-wide);
}

/* --- Section --- */
.section {
    padding: var(--section-pad) 0;
}

.section--alt {
    background: var(--bg-alt);
}

.section--dark {
    background: var(--brown);
    color: var(--cream);
}

.section--dark .text-dim {
    color: rgba(250, 247, 242, 0.6);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}

.section--dark .section-title {
    color: var(--cream);
}

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

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all var(--duration-fast) ease;
}

nav.scrolled {
    padding: 12px 40px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: opacity var(--duration-fast);
}

.nav-logo img {
    height: 26px;
    width: auto;
}

.nav-logo:hover {
    opacity: 0.7;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--duration-fast);
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 0;
}

.nav-cta {
    background: #fff !important;
    color: #111 !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    transition: all var(--duration-fast) !important;
    border-color: transparent !important;
}

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

.nav-cta:hover {
    background: var(--accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

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

.hero--fullscreen {
    align-items: flex-end;
}

/* Hero Split — 2-column layout (About page) */
.hero--split {
    align-items: center;
}

.hero--split .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 0;
}

.hero--fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 24px;
    color: #fff;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Image — Default (grid column, e.g. About page) */
.hero-visual {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Hero Image — Fullscreen Background (index.html) */
.hero--fullscreen .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 0;
    overflow: hidden;
}

.hero--fullscreen .hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
}

.hero-img-float {
    position: absolute;
    width: auto;
    aspect-ratio: auto;
    object-fit: unset;
    border-radius: var(--radius-md);
    box-shadow: none;
    border: none;
}

.hero-img-float--1 {
    bottom: auto;
    left: auto;
}

.hero-img-float--2 {
    top: auto;
    right: auto;
}

/* Hero Floating Cards (CSS components) */
.hero-float-card {
    position: absolute;
    background: rgba(17, 17, 17, 0.65);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 3;
    width: auto;
    aspect-ratio: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-float-card--insta {
    bottom: 160px;
    right: 40px;
}

.hero-float-card--google {
    bottom: 80px;
    right: 40px;
}

.hero-float-card.hero-img-float {
    width: auto;
    aspect-ratio: auto;
    object-fit: unset;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-card--insta .float-card-icon {
    background: var(--accent-light);
    color: var(--accent);
}

.hero-float-card--insta .float-card-icon i {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.hero-float-card--google .float-card-icon {
    background: var(--accent-light);
    color: var(--accent);
}

.hero-float-card--google .float-card-icon i {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.float-card-number {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.float-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.float-card-stars {
    font-size: 12px;
    color: #F4B400;
    letter-spacing: 1px;
    margin-top: 2px;
}

.float-card-stars span {
    color: var(--text-dim);
    font-weight: 600;
    margin-left: 4px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fff;
    color: #111;
}

.btn-primary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

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

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 0;
}

.btn-ghost:hover {
    opacity: 0.7;
}

/* Magnetic button wrapper */
.btn-magnetic {
    display: inline-block;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.trust-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}
.trust-marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.trust-marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    white-space: nowrap;
}
.trust-marquee-item span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
}
.trust-marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--brown);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.trust-item-label {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
}

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

.problem-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--duration-fast) var(--ease-out);
}

.problem-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.problem-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

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

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-medium) var(--ease-out);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--duration-fast);
}

.service-card:hover .service-icon {
    background: var(--accent);
}

.service-card:hover .service-icon i {
    color: var(--cream);
}

.service-icon i {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: color var(--duration-fast);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ========================================
   PROCESS
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all var(--duration-fast);
}

.process-step:hover .process-number {
    background: var(--accent);
    color: var(--cream);
    border-color: var(--accent);
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-medium) var(--ease-out);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
}

/* Portfolio magnetic cursor + hover reveal */
.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(180px circle at var(--px, 50%) var(--py, 50%), rgba(255,255,255,0.18), transparent 65%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-cursor {
    position: fixed;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 1300;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.86);
    transition: opacity .2s ease, transform .2s ease;
}

.portfolio-cursor.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
    .portfolio-cursor {
        display: none;
    }
}

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--duration-fast);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-quote::before {
    content: '\201C';
    display: block;
    font-size: 48px;
    line-height: 1;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 24px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--duration-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-dim);
    transition: transform var(--duration-fast);
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-fast) ease;
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    background: var(--brown);
    color: var(--cream);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 80, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--cream);
}

.cta-content p {
    font-size: 18px;
    color: rgba(250, 247, 242, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fff;
    color: #111;
}

.cta-section .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

.cta-section .btn-secondary {
    border-color: rgba(250, 247, 242, 0.2);
    color: var(--cream);
}

.cta-section .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(250, 247, 242, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    padding: 80px 0 32px;
    background: var(--brown);
    color: var(--cream);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--cream);
}

.footer-brand p {
    color: rgba(250, 247, 242, 0.6);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(250, 247, 242, 0.5);
}

.footer-col a {
    display: block;
    color: rgba(250, 247, 242, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color var(--duration-fast);
}

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

.footer-bottom {
    max-width: var(--container-max);
    margin: 48px auto 0;
    padding: 24px 32px 0;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(250, 247, 242, 0.4);
    font-size: 13px;
}

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

.footer-social a {
    color: rgba(250, 247, 242, 0.5);
    font-size: 13px;
    transition: color var(--duration-fast);
}

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

/* ========================================
   GSAP / SCROLL ANIMATIONS
   ======================================== */
/* Initial states for scroll-triggered elements */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* Image reveal clip */
.img-reveal {
    clip-path: inset(100% 0 0 0);
}

/* Split word - inline-block for animation */
.split-word {
    display: inline-block;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--brown);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(250, 247, 242, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.active {
    width: 48px;
    height: 48px;
    border-color: var(--accent);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 48px;
    }

    .hero-visual {
        max-width: none;
        margin: 0;
    }

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

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

    .process-grid::before {
        display: none;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }

    nav {
        padding: 12px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 0;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
        transition: right var(--duration-fast) var(--ease-out);
        z-index: 1000;
    }

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

    .nav-links a {
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
        display: block !important;
        background: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .nav-links .nav-cta {
        margin-top: 24px;
        text-align: center;
        border-bottom: none;
        background: #fff !important;
        color: #111 !important;
        border-radius: var(--radius-full);
        padding: 14px 28px;
    }

    .nav-links .lang-toggle {
        margin-top: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1.5px;
        line-height: 1.18;
        margin-bottom: 20px;
    }

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

    /* Hide float cards on mobile — they overlap CTA */
    .hero-float-card {
        display: none;
    }

    /* About page hero — stack on mobile */
    .hero--split .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .hero--split .hero-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero--split .hero-img-main {
        aspect-ratio: 3/4;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* ========================================
   PRESSURE CARDS (Big Number Stats)
   ======================================== */
.pressure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pressure-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.pressure-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--duration-medium) var(--ease-out);
}

.pressure-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pressure-card:hover::after {
    transform: scaleX(1);
}

.pressure-number {
    font-size: clamp(56px, 8vw, 80px);
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 12px;
}

.pressure-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 12px;
}

.pressure-punchline {
    font-size: 14px;
    font-weight: 700;
    color: var(--brown);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.pressure-closing {
    max-width: 640px;
    margin: 48px auto 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.7;
}

/* ========================================
   SERVICE FLOW (Step Cards)
   ======================================== */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.flow-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all var(--duration-fast) var(--ease-out);
}

.flow-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.flow-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--cream);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
}

.flow-card-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.flow-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.flow-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.flow-result {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ========================================
   CASE STUDY
   ======================================== */
.case-study-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case-study-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.case-study-content h3 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.2;
}

.case-study-content p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 24px;
}

.case-study-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.case-study-list li {
    font-size: 15px;
    color: var(--text);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.case-study-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 15px;
}

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

.case-stat {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.case-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.case-stat-label {
    font-size: 13px;
    color: var(--text-dim);
}

.case-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.case-quote-author {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
    font-style: normal;
    font-weight: 600;
}

/* ========================================
   TARGET AUDIENCE
   ======================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.target-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--duration-fast) var(--ease-out);
}

.target-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.target-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.target-icon i {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.target-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.target-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================================
   PRICING HINT
   ======================================== */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead th {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.pricing-table tbody td {
    font-size: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.pricing-table tbody td:first-child {
    font-weight: 700;
    color: var(--brown);
}

.pricing-table tbody tr:hover {
    background: var(--bg-alt);
}

.pricing-table .price-from {
    color: var(--accent);
    font-weight: 600;
}

.pricing-note {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ========================================
   MOBILE NAV TOGGLE
   ======================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--duration-fast);
    display: block;
}

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

/* ========================================
   RESPONSIVE — V3 ADDITIONS
   ======================================== */
@media (max-width: 1024px) {
    .pressure-grid {
        grid-template-columns: 1fr;
    }

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

    .case-study-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .case-stats-grid {
        grid-template-columns: 1fr;
    }

    .pressure-number {
        font-size: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .pricing-table {
        font-size: 14px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 14px 12px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* ========================================
   IMAGE REVEAL — Copper Overlay Wipe
   ======================================== */
.image-reveal {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image-reveal img {
    display: block;
    width: 100%;
    height: auto;
}

.image-reveal-overlay {
    position: absolute;
    inset: 0;
    background: var(--accent);
    z-index: 2;
    transform-origin: left;
}

/* ========================================
   BENTO STATS — Case Study
   ======================================== */
.case-stats-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.bento-stat {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--duration-fast) var(--ease-out);
}

.bento-stat:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bento-stat--hero {
    grid-column: 1 / -1;
    background: var(--brown);
    border-color: transparent;
    padding: 32px 20px;
}

.bento-stat--hero .bento-stat-number {
    font-size: clamp(48px, 6vw, 64px);
    color: var(--cream);
}

.bento-stat--hero .bento-stat-label {
    color: rgba(250, 247, 242, 0.6);
    font-size: 15px;
}

.bento-stat--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.bento-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.bento-stat-label {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
}

/* ========================================
   PRELOADER — Counter Upgrade
   ======================================== */
.preloader-counter {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -2px;
    line-height: 1;
    opacity: 0.5;
}

/* ========================================
   MOBILE MENU — Circle Clip Stagger
   ======================================== */
@media (max-width: 768px) {
    .nav-links {
        clip-path: circle(0% at calc(100% - 40px) 30px);
        transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        right: 0 !important;
        opacity: 1;
        visibility: hidden;
    }

    .nav-links.open {
        clip-path: circle(150% at calc(100% - 40px) 30px);
        visibility: visible;
    }

    .nav-links a,
    .nav-links .lang-toggle {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.open a,
    .nav-links.open .lang-toggle {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open a:nth-child(1) { transition-delay: 0.15s; }
    .nav-links.open a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.open a:nth-child(3) { transition-delay: 0.25s; }
    .nav-links.open a:nth-child(4) { transition-delay: 0.3s; }
    .nav-links.open .lang-toggle { transition-delay: 0.35s; }
}

/* ========================================
   SECTION HEADING ANIMATION
   ======================================== */

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

    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .image-reveal-overlay {
        display: none;
    }

    .preloader {
        display: none;
    }

    .trust-marquee {
        animation: none;
    }
}

/* ========================================
   RESPONSIVE BENTO + PRICING — Mobile
   ======================================== */
@media (max-width: 768px) {
    .case-stats-bento {
        grid-template-columns: 1fr;
    }

    .bento-stat--hero {
        grid-column: 1;
    }

    .bento-stat--hero .bento-stat-number {
        font-size: 48px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* ========================================
   REELS SHOWCASE
   ======================================== */
.reels-showcase {
    padding: 60px 0;
    background: var(--bg);
}

.reels-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    padding: 0 24px;
}

.reels-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

.reel-card {
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--card);
    transition: transform var(--duration-fast) var(--ease-out);
}

.reel-card:hover {
    transform: scale(1.03);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .reels-showcase {
        padding: 40px 0;
    }

    .reels-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
        padding: 0 20px;
    }
}

/* ========================================
   FEED BEFORE / AFTER
   ======================================== */
.feed-ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.feed-ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    align-self: center;
}

.feed-ba-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .feed-ba-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 360px;
    }

    .feed-ba-card {
        aspect-ratio: 3 / 4;
    }
}

/* ========================================
   BEFORE / AFTER SECTION
   ======================================== */
.ba-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.ba-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
}

.ba-label--after {
    background: var(--accent);
    color: var(--white);
}

.ba-pair--wide .ba-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ba-pair--wide .ba-card img {
    object-fit: contain;
    height: auto;
}

@media (max-width: 768px) {
    .ba-grid {
        gap: 24px;
    }

    .ba-pair {
        gap: 10px;
    }

    .ba-label {
        font-size: 10px;
        padding: 3px 8px;
    }
}

.text-accent { color: var(--accent); }
.text-dim { color: var(--text-dim); }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
