/* ================================================
   PROMPTSUPPLY 2011 STATIONERY DIVISION
   Theme: Visual Storytelling Portfolio
   Immersive Brand Worlds
   ================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors - New Professional Palette */
    --primary-yellow: #FFF44E;
    --golden-yellow: #FFD301;
    --light-gray: #F2F3F4;
    --bright-cyan: #00B9FC;
    --deep-blue: #246BCF;

    /* Legacy Brand Colors */
    --doms-theme: #FFFDF5;
    --doms-accent: #FFD301;
    --kangaro-theme: #F2F3F4;
    --kangaro-accent: #246BCF;
    --osalo-theme: #F2F3F4;
    --doublea-accent: #00B9FC;

    /* Core Colors */
    --pure-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #666666;

    /* Typography */
    --font-heading: 'Comfortaa', cursive;
    --font-body: 'Space Grotesk', sans-serif;
    --font-script: 'Caveat', cursive;
    --font-display: 'Kaushan Script', cursive;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 30px 80px rgba(0, 0, 0, 0.2);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--pure-white);
    overflow-x: hidden;
}

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

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

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

ul,
ol {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.btn-hero {
    background: var(--pure-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--bright-cyan) 0%, var(--deep-blue) 100%);
    color: var(--pure-white);
    box-shadow: 0 8px 24px rgba(0, 185, 252, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 185, 252, 0.5);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--bright-cyan) 100%);
}

.btn-vault {
    background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--primary-yellow) 100%);
    color: var(--deep-blue);
    font-size: 16px;
    font-weight: 700;
    padding: 20px 48px;
    box-shadow: 0 8px 32px rgba(255, 212, 1, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-vault:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 212, 1, 0.6);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--golden-yellow) 100%);
}

.btn-nav {
    background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--primary-yellow) 100%);
    color: var(--deep-blue);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(255, 212, 1, 0.4);
    transition: all var(--transition-fast);
}

.btn-nav:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--golden-yellow) 100%);
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.main-nav.scrolled {
    background: var(--deep-blue);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
}

.btn-nav {
    position: absolute;
    right: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 900;
    color: var(--pure-white);
    transition: color var(--transition-fast);
}

.main-nav.scrolled .logo-text {
    color: var(--pure-white);
}

.logo-accent {
    color: var(--golden-yellow);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pure-white);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.main-nav.scrolled .nav-link {
    color: var(--pure-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--golden-yellow);
}

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

.main-nav.scrolled .nav-link:hover {
    color: var(--golden-yellow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--pure-white);
    transition: all var(--transition-fast);
}

.main-nav.scrolled .mobile-toggle span {
    background: var(--pure-white);
}

/* ===== SECTION HEADERS ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--doms-accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    line-height: 1.1;
    color: #246bcf;
    text-transform: capitalize;
}

/* ===== HERO CINEMATIC SLIDER ===== */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 8s ease-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.doms-overlay {
    background: linear-gradient(135deg, rgba(36, 107, 207, 0.425) 0%, rgba(0, 185, 252, 0.375) 100%);

}

.kangaro-overlay {
    background: linear-gradient(135deg, rgba(255, 212, 1, 0.425) 0%, rgba(255, 244, 78, 0.375) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 40px;
    color: var(--pure-white);
}

.slide-brand {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    opacity: 0.9;
}

.slide-headline {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    margin-bottom: 24px;
    max-width: 900px;
}

.slide-subhead {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 20;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--pure-white);
    color: var(--text-dark);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--pure-white);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--pure-white);
    opacity: 0.7;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: var(--pure-white);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== MINIMAL SPLIT HERO ===== */
.hero-minimal {
    padding: 80px 6%;
    background: var(--pure-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content-side {
    max-width: 520px;
}

.hero-main-title {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #0b2545;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-main-title strong {
    color: var(--bright-cyan);
    font-weight: 600;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #5f6c7b;
    margin-bottom: 32px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    padding: 14px 28px;
    background: transparent;
    color: #0b2545;
    border: 2px solid #0b2545;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-outline-dark:hover {
    background: #0b2545;
    color: var(--pure-white);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    position: relative;
    padding: 120px 5%;
    text-align: center;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.137);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

/* Avatar with Gradient Ring */
.testimonial-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
}


@keyframes ringGlow {
    from {
        opacity: 0.7;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.02);
    }
}

.avatar-img {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pure-white);
    z-index: 2;
}

.avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue), var(--bright-cyan));
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Quote */
.testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #fffcfc;
    max-width: 720px;
    margin: 0 auto 20px;
}

/* Author */
.testimonial-author {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fdf900;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

/* Carousel Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #dddddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    width: 24px;
    background: var(--golden-yellow);
}

.t-dot:hover {
    background: #bbbbbb;
}

.t-dot.active:hover {
    background: var(--golden-yellow);
}

/* ===== BRAND STORY CAROUSEL ===== */
.brand-story-section {
    padding: 100px 6%;
    background: var(--pure-white);
}

.brand-story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brand-story-slider {
    position: relative;
}

.brand-story-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand-story-slide.active {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    opacity: 1;
}

/* Left Column */
.story-left {
    padding-right: 40px;
}

.story-heading {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #246bcf;
    margin-bottom: 12px;
    text-transform: none;
}

.story-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--doms-accent);
    margin-bottom: 40px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.story-quote-block {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.quote-icon {
    font-family: 'Georgia', serif;
    font-size: 72px;
    color: #dddddd;
    line-height: 0.8;
    flex-shrink: 0;
}

.story-quote {
    font-family: 'Inter', var(--font-body), sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #5f6c7b;
    font-style: normal;
}

.story-author {
    margin-bottom: 32px;
}

.author-name {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0b2545;
    margin-bottom: 4px;
}

.author-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888888;
}

/* Story Dots */
.story-dots {
    display: flex;
    gap: 8px;
}

.s-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #dddddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s-dot.active {
    width: 24px;
    background: var(--bright-cyan);
}

.s-dot:hover {
    background: #bbbbbb;
}

.s-dot.active:hover {
    background: var(--bright-cyan);
}

/* Right Column - Images */
.story-right {
    position: relative;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 400px;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.story-img.img-1 {
    border-radius: 24px 8px 8px 24px;
}

.story-img.img-2 {
    border-radius: 8px 24px 24px 8px;
}

/* ===== VISUAL BANNER SECTION ===== */
.visual-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5%;
    max-width: 800px;
}

.banner-eyebrow {
    display: block;
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bright-cyan);
    margin-bottom: 18px;
}

.banner-title {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pure-white);
    margin-bottom: 32px;
    text-transform: none;
}

.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--primary-yellow) 100%);
    color: var(--deep-blue);
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 212, 1, 0.4);
}

.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 212, 1, 0.6);
}

/* ===== TABBED PRODUCT SHOWCASE ===== */
.product-showcase {
    padding: 100px 0;
    background: var(--pure-white);
}

.showcase-title {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #246bcf;
    text-align: center;
    margin-bottom: 40px;
    text-transform: none;
}

/* Tab Navigation */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 16px;
}

.product-tab {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0 0 8px 0;
    transition: all 0.3s ease;
}

.product-tab::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bright-cyan);
    transition: width 0.3s ease;
}

.product-tab:hover {
    color: var(--bright-cyan);
}

.product-tab.active {
    color: var(--bright-cyan);
}

.product-tab.active::after {
    width: 100%;
}

/* Tab Panels */
.tab-panels {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Product Card */
.product-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--golden-yellow);
    color: var(--deep-blue);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.product-badge.hot {
    background: var(--bright-cyan);
    color: var(--pure-white);
}

/* Product Info */
.product-info {
    padding: 0 8px 16px;
}

.product-name {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0b2545;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-current {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-blue);
}

.price-original {
    font-family: var(--font-body);
    font-size: 14px;
    color: #9aa0a6;
    text-decoration: line-through;
}

/* ===== TIKTOK VIDEO PREVIEW SECTION ===== */
.tiktok-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.tiktok-header {
    text-align: center;
    margin-bottom: 60px;
}

.tiktok-badge {
    display: inline-block;
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--doms-accent);
    margin-bottom: 16px;
}

.tiktok-title {
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #246bcf;
    margin-bottom: 12px;
    text-transform: none;
}

.tiktok-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: #666666;
}

/* Video Carousel */
.tiktok-carousel {
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 48px;
    scrollbar-width: thin;
    scrollbar-color: var(--bright-cyan) #f0f0f0;
}

.tiktok-carousel::-webkit-scrollbar {
    height: 6px;
}

.tiktok-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.tiktok-carousel::-webkit-scrollbar-thumb {
    background: var(--bright-cyan);
    border-radius: 3px;
}

.tiktok-track {
    display: flex;
    gap: 24px;
    padding: 8px 0;
}

/* Video Card */
.tiktok-card {
    flex: 0 0 260px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.tiktok-video-preview {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tiktok-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tiktok-card:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0b2545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tiktok-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Info */
.tiktok-card-info {
    padding: 0 4px;
}

.tiktok-caption {
    font-family: 'Inter', var(--font-body), sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0b2545;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tiktok-engagement {
    display: flex;
    gap: 16px;
}

.tiktok-engagement span {
    font-family: var(--font-body);
    font-size: 13px;
    color: #666666;
}

/* CTA Button */
.tiktok-cta {
    text-align: center;
}

.btn-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', var(--font-heading), sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 16px 32px;
    background: var(--deep-blue);
    color: var(--pure-white);
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(36, 107, 207, 0.3);
}

.btn-tiktok:hover {
    background: var(--bright-cyan);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 185, 252, 0.4);
}

.btn-tiktok svg {
    transition: transform 0.3s ease;
}

.btn-tiktok:hover svg {
    transform: scale(1.1);
}


/* ===== BRAND STORY DECK (Stationero Style) ===== */
.story-deck-section {
    padding: 0;
    background: var(--pure-white);
}

.story-deck-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Grid Positions */
.story-deck-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-deck-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Large Card - Left (spans 1 col, 2 rows) */
.card-large-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Featured Card - Center Top */
.card-featured {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Right Top Card */
.card-right-top {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Bottom Center Card */
.card-bottom-center {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* Bottom Right Card */
.card-bottom-right {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Card Background */
.deck-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-deck-card:hover .deck-card-bg {
    transform: scale(1.1);
}

.deck-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.5) 100%);
    transition: opacity 0.5s ease;
}

.story-deck-card:hover .deck-card-bg::after {
    opacity: 0.8;
}

.deck-card-bg.dark::after {
    background: rgba(30, 30, 40, 0.75);
}

/* Color Overlays */
.deck-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kangaro-gradient {
    background: rgba(239, 71, 111, 0.9);
}

.doublea-gradient {
    background: rgba(134, 180, 148, 0.85);
}

/* Card Content */
.deck-card-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    color: var(--pure-white);
}

.deck-card-content.center {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.deck-card-content.right-align {
    align-items: flex-end;
    text-align: right;
    padding: 36px;
}

/* Card Elements */
.deck-card-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.story-deck-card:hover .deck-card-tag {
    transform: translateY(-3px);
    opacity: 1;
}

.deck-card-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-yellow);
    margin-bottom: 12px;
    transition: transform 0.4s ease 0.1s, letter-spacing 0.4s ease;
}

.story-deck-card:hover .deck-card-label {
    transform: translateY(-3px);
    letter-spacing: 0.2em;
}

.deck-card-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
    transition: transform 0.4s ease 0.15s, color 0.3s ease;
}

.story-deck-card:hover .deck-card-title {
    transform: translateY(-4px);
}

.deck-card-title.large {
    font-size: 48px;
    line-height: 1;
}

.deck-card-tagline {
    font-family: var(--font-body);
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 12px;
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease;
}

.story-deck-card:hover .deck-card-tagline {
    transform: translateY(-3px);
    opacity: 1;
}

.deck-card-story {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
    margin-bottom: 0;
}

.story-deck-card:hover .deck-card-story {
    opacity: 0.95;
    max-height: 120px;
    transform: translateY(0);
    margin-bottom: 12px;
}

/* Card Buttons */
.deck-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    background: var(--pure-white);
    color: var(--text-dark);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.deck-card-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.deck-card-btn.outline {
    background: transparent;
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
}

.deck-card-btn.outline:hover {
    background: var(--pure-white);
    color: var(--text-dark);
}

/* ===== BRAND MOSAIC GRID ===== */
.brand-mosaic {
    padding: 120px 0;
    background: var(--osalo-theme);
}

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

.mosaic-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.mosaic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.mosaic-card:hover .mosaic-bg {
    transform: scale(1.1);
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.mosaic-card:hover .mosaic-overlay {
    opacity: 0.85;
}

.doms-color {
    background: linear-gradient(135deg, #E63946, #FF6B6B);
}

.kangaro-color {
    background: linear-gradient(135deg, #0077B6, #48CAE4);
}

.osalo-color {
    background: linear-gradient(135deg, #4A5568, #718096);
}

.doublea-color {
    background: linear-gradient(135deg, #2D6A4F, #40916C);
}

.mosaic-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--pure-white);
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.mosaic-card:hover .mosaic-content {
    opacity: 1;
    transform: translateY(0);
}

.mosaic-brand {
    font-size: 28px;
    margin-bottom: 8px;
}

.mosaic-category {
    font-size: 14px;
    opacity: 0.8;
}

.auth-badge {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.mosaic-card:hover .auth-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DOMS ART STUDIO (Scrapbook) ===== */
.doms-studio {
    position: relative;
    padding: 150px 0;
    background: var(--doms-theme);
    overflow: hidden;
}

.paint-splash {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.splash-1 {
    background: #FF6B6B;
    top: -100px;
    left: -100px;
}

.splash-2 {
    background: #4ECDC4;
    bottom: -100px;
    right: -100px;
}

.studio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.scrapbook-gallery {
    position: relative;
    height: 600px;
}

.scrapbook-item {
    position: absolute;
    background: var(--pure-white);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-slow);
}

.scrapbook-item img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.scrapbook-label {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
    color: var(--text-dark);
}

.tilted-left {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}

.tilted-right {
    top: 80px;
    left: 180px;
    transform: rotate(5deg);
    z-index: 2;
}

.straight {
    top: 200px;
    left: 60px;
    transform: rotate(-2deg);
    z-index: 1;
}

.studio-content {
    max-width: 500px;
}

.brand-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.doms-tag {
    background: rgba(230, 57, 70, 0.1);
    color: var(--doms-accent);
}

.kangaro-tag {
    background: rgba(0, 119, 182, 0.1);
    color: var(--kangaro-accent);
}

.office-tag {
    background: rgba(72, 202, 228, 0.1);
    color: var(--primary-sky);
}

.studio-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.studio-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.studio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--pure-white);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
}

/* ===== KANGARO BLUEPRINT LAB ===== */
.kangaro-lab {
    position: relative;
    padding: 120px 20px;
    background: var(--kangaro-theme);
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 119, 182, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 119, 182, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.lab-layout {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lab-content {
    max-width: 600px;
    margin-bottom: 60px;
}

.lab-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #246bcf;
    text-transform: capitalize;
}

.lab-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

.tech-hero {
    position: relative;
    display: flex;
    justify-content: center;
}

.tech-product {
    position: relative;
    z-index: 1;
}

.tech-product img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tech-product img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.product-label {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: var(--kangaro-accent);
}

.tech-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 400px;
    z-index: 20;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 25;
    pointer-events: auto;
}

.line-dot {
    width: 12px;
    height: 12px;
    background: var(--kangaro-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.line-path {
    height: 2px;
    width: 100px;
    background: var(--kangaro-accent);
    opacity: 0.6;
    transition: width 0.4s ease, opacity 0.4s ease;
}

.line-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kangaro-accent);
    padding: 12px 24px;
    background: var(--pure-white);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.2);
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 30;
}

.line-1 {
    top: 15%;
    left: 600px;
}

.line-2 {
    top: 70%;
    left: 600px;
    transform: translateY(-50%);
}

.line-3 {
    top: 15%;
    right: 600px;
    flex-direction: row-reverse;
}

.tech-line:hover .line-text {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
}

.tech-line:hover .line-path {
    width: 110px;
    opacity: 1;
}

.tech-line:hover .line-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.2);
}

.line-dot {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== OFFICE EFFICIENCY DESK (Sticky Split) ===== */
.office-desk {
    background: var(--osalo-theme);
}

.desk-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.desk-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px;
    background: var(--pure-white);
}

.sticky-content {
    max-width: 400px;
}

.desk-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.desk-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.brand-logos-small {
    display: flex;
    gap: 16px;
}

.brand-logos-small span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    background: var(--osalo-theme);
    border-radius: var(--radius-pill);
    color: var(--text-muted);
}

.desk-scroll {
    padding: 60px;
}

.scroll-product {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    margin-bottom: 24px;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 600px;
}



.scroll-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.scroll-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scroll-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    text-transform: none;
}

.scroll-info p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== VAULT CTA ===== */
.vault-section {
    padding-top: 100px;
    background: var(--deep-blue);
    text-align: center;
}

/* ===== PRICING FORM SECTION ===== */
.pricing-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--pure-white) 100%);
}

.pricing-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 18px;
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-sm);
    background: var(--pure-white);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-cyan);
    box-shadow: 0 0 0 3px rgba(0, 185, 252, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}

.form-divider {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.pricing-form .btn-vault {
    width: 100%;
    justify-content: center;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.checkbox-label:hover {
    color: var(--bright-cyan);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--bright-cyan);
}

.pricing-form .btn-vault {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

.vault-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

.vault-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vault-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);

    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0D1B2A;
    padding: 60px 0;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.logo-text-f {

    font-size: 48px;
    font-weight: 800;


}

.footer-brand .logo-text-f {
    color: var(--pure-white);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-row {
    display: flex;
    gap: 32px;
}

.footer-links-row a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links-row a:hover {
    color: var(--primary-yellow);
}

.footer-copy p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-lines {
        width: 100%;
        max-width: 700px;
    }

    .tech-product img {
        width: 300px;
        height: 300px;
    }

    .line-path {
        width: 60px;
    }

    .line-text {
        font-size: 12px;
        padding: 10px 18px;
    }
}

@media (max-width: 900px) {
    .tech-lines {
        display: none;
    }
}

@media (max-width: 1024px) {
    .studio-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .scrapbook-gallery {
        height: 500px;
        order: -1;
    }

    .desk-wrapper {
        grid-template-columns: 1fr;
    }

    .desk-sticky {
        position: relative;
        height: auto;
        padding: 80px 40px;
    }

    /* Story Deck - Tablet */
    .story-deck-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 280px);
        gap: 16px;
        padding: 16px;
    }

    .card-large-left {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .card-featured {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .card-right-top {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .card-bottom-center {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .card-bottom-right {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .deck-card-content {
        padding: 28px;
    }

    /* Brand Story Carousel - Tablet */
    .brand-story-slide.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-left {
        padding-right: 0;
        text-align: center;
    }

    .story-heading {
        font-size: 32px;
    }

    .story-quote-block {
        flex-direction: column;
        align-items: center;
    }

    .quote-icon {
        font-size: 48px;
    }

    .story-dots {
        justify-content: center;
    }

    .story-images {
        height: 300px;
    }

    /* Visual Banner - Tablet */
    .visual-banner {
        height: 50vh;
    }

    .banner-title {
        font-size: 36px;
    }

    /* Product Showcase - Tablet */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .product-tabs {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--deep-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links .nav-link {
        color: var(--pure-white);
        font-size: 18px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .slide-headline {
        font-size: 36px;
    }

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

    .mosaic-card {
        height: 300px;
    }

    /* Testimonial - Mobile */
    .testimonial-section {
        padding: 60px 5%;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    /* Visual Banner - Mobile */
    .visual-banner {
        height: 45vh;
        min-height: 320px;
    }

    .banner-eyebrow {
        font-size: 11px;
    }

    .banner-title {
        font-size: 28px;
    }

    /* TikTok Section - Mobile */
    .tiktok-section {
        padding: 80px 0;
    }

    .tiktok-title {
        font-size: 26px;
    }

    .tiktok-card {
        flex: 0 0 200px;
    }

    /* Stationery Playground - Mobile */
    .stationery-playground {
        height: 60vh;
        min-height: 400px;
        cursor: auto;
    }

    .playground-title {
        font-size: 28px;
    }

    .stationery-object {
        width: 60px !important;
        height: 60px !important;
    }

    .stationery-object.notebook {
        width: 100px !important;
        height: 100px !important;
    }

    .cursor-glow {
        display: none;
    }

    /* Product Showcase - Mobile */
    .product-showcase {
        padding: 60px 0;
    }

    .showcase-title {
        font-size: 24px;
    }

    .product-tabs {
        gap: 16px;
        flex-wrap: wrap;
    }

    .product-tab {
        font-size: 13px;
    }

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

    .product-name {
        font-size: 14px;
    }

    /* Story Deck - Mobile */
    .story-deck-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 260px);
        gap: 12px;
        padding: 12px;
    }

    .card-large-left,
    .card-featured,
    .card-right-top,
    .card-bottom-center,
    .card-bottom-right {
        grid-column: 1;
        grid-row: auto;
    }

    .story-deck-card {
        border-radius: 8px;
    }

    .deck-card-content {
        padding: 24px;
    }

    .deck-card-content.center {
        padding: 28px;
    }

    .deck-card-title {
        font-size: 26px;
    }

    .deck-card-title.large {
        font-size: 36px;
    }

    .deck-card-story {
        opacity: 0.95;
        max-height: 120px;
        transform: translateY(0);
    }

    .section-title,
    .studio-title,
    .lab-title,
    .desk-title,
    .vault-title {
        font-size: 32px;
    }

    .scrapbook-gallery {
        height: 400px;
    }

    .scrapbook-item img {
        width: 160px;
        height: 200px;
    }

    .tilted-left {
        top: 0;
        left: 0;
    }

    .tilted-right {
        top: 60px;
        left: 120px;
    }

    .straight {
        top: 150px;
        left: 40px;
    }

    .footer-links-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Pricing Form - Mobile */
.pricing-form-wrapper {
    padding: 32px 24px;
}

.form-title {
    font-size: 28px;
}

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

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--deep-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(36, 107, 207, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bright-cyan);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 185, 252, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 15px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== PREMIUM GOLDEN SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--furniture-dark, #0A1410);
}

::-webkit-scrollbar-thumb {
    background: #246bcf !important;
    border-radius: 10px;
    border: 2px solid var(--furniture-dark, #0A1410);
}

::-webkit-scrollbar-thumb:hover {
    background: #246bcf !important;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #246bcf #0A1410 !important;
}

/* ===== ADVANCED CUSTOM CURSOR ===== */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--deep-blue, #246BCF);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease-out;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(circle, rgba(36, 107, 207, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(36, 107, 207, 0.3);
}

.cursor-inner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid var(--deep-blue, #246BCF);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--deep-blue, #246BCF) 0%, var(--bright-cyan, #00B9FC) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out, background 0.3s ease;
    box-shadow: 0 0 10px rgba(36, 107, 207, 0.6);
}

.cursor-follower.active,
.cursor-dot.active {
    opacity: 1;
}

/* Hover State - Magnetic Effect */
.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: radial-gradient(circle, rgba(36, 107, 207, 0.2) 0%, transparent 70%);
    border-color: var(--bright-cyan, #00B9FC);
    border-width: 3px;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: linear-gradient(135deg, var(--bright-cyan, #00B9FC) 0%, var(--deep-blue, #246BCF) 100%);
}

/* Trailing Particles */
.cursor-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.cursor-trail {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--deep-blue, #246BCF);
    border-radius: 50%;
    pointer-events: none;
    animation: trail-fade 0.6s ease-out forwards;
    box-shadow: 0 0 8px rgba(36, 107, 207, 0.5);
}

@keyframes trail-fade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Click Ripple Effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--deep-blue, #246BCF);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-ripple.active {
    animation: ripple-effect 0.6s ease-out;
}

@keyframes ripple-effect {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(4);
    }
}

/* Text Selection Effect */
.cursor-follower.text-hover {
    transform: translate(-50%, -50%) scale(0.5);
    border-width: 1px;
    opacity: 0.6;
}

.cursor-dot.text-hover {
    width: 2px;
    height: 16px;
    border-radius: 2px;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    .cursor-follower,
    .cursor-dot,
    .cursor-trail-container,
    .cursor-ripple {
        display: none;
    }
}