/*
Theme Name: Hello Elementor Child
Description: Child theme for LuminaCal monitor calibration software based on Hello Elementor
Author: Developer
Template: hello-elementor
Version: 1.0.0
*/
:root {
    --bg-color: #030303;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent: #ffffff;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Base Layout Constraints */
.container {
    width: 92%;
    margin: 0 auto;
    max-width: 1400px;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0) 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    transition: opacity 0.3s;
}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(3, 3, 3, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    width: 68%;
    max-width: 1050px;
    top: 1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.85);
    padding: 0.6rem 2rem;
}

.navbar.scrolled .nav-links {
    gap: 1.5rem;
}

.navbar.scrolled .cta-btn-header {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.navbar.scrolled .header-actions {
    gap: 0.5rem;
}

/* Header Actions (Cart, User, CTA) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.header-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-icon-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff5533;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(255, 85, 51, 0.4);
    animation: cartBadgePop 0.3s ease;
}

@keyframes cartBadgePop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Toast Notification */
.pc-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.9rem;
    z-index: 99999;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pc-toast.show {
    transform: translateX(0);
}

.pc-toast-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-toast-icon svg {
    stroke: #22c55e;
}

.pc-toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pc-toast-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.pc-toast-msg {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.pc-toast-action {
    color: #00b4d8;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--text-primary);
    flex: 1;
}

.header-logo-icon {
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
}

.header-logo-text {
    font-size: 1.25rem;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    max-width: 200px;
}

.navbar.scrolled .header-logo-text {
    max-width: 200px;
    opacity: 1;
    margin-left: 0;
}

.font-regular {
    font-weight: 400;
}

.font-bold {
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    padding: 0.9rem 0;
    cursor: pointer;
    /* Removed position: relative to allow dropdown to center on navbar */
}

.nav-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item:hover,
.nav-item:hover .nav-link {
    color: var(--text-primary);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Container - Centered relative to .nav-links */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: max-content;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: 5px;
    z-index: 100;
    pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
    pointer-events: auto;
}

/* Invisible bridge to prevent dropdown from closing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 1;
}

/* Dropdown Content Box - Manual blur effect */
.dropdown-content {
    position: relative;
    background: rgba(15, 18, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 0 16px 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 280px auto;
    gap: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.6);
    overflow: visible;
    isolation: isolate;
}

/* Blurred background layer */
.dropdown-content::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    filter: blur(20px);
    z-index: -2;
    border-radius: 0 0 16px 16px;
}

/* Solid overlay to hide blur artifacts */
.dropdown-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 25, 32, 0.96) 0%,
            rgba(15, 20, 28, 0.98) 100%);
    border-radius: 0 0 16px 16px;
    z-index: -1;
}

/* Subtle gradient overlay */
.dropdown-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

/* Top highlight for glass effect */
.dropdown-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.dropdown-content>* {
    position: relative;
    z-index: 1;
}

/* Dropdown Links */
.dropdown-links {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 0.8rem;
    align-content: start;
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 12px 16px;
    border-radius: 12px;
}

.dropdown-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.dropdown-item:hover .dropdown-item-title {
    color: #fff;
}

.dropdown-item:hover .dropdown-item-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Dropdown Mini Banner */
.dropdown-banner {
    grid-column: 1;
    grid-row: 1;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #111;
}

.dropdown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 0;
}

.feature-banner::before {
    background: url('assets/images/banner-ai-calibration.jpg') top right / cover no-repeat;
}

.solution-banner::before {
    background: url('assets/images/banner-industry-standard.jpg') top right / cover no-repeat;
}

.resource-banner::before {
    background: url('assets/images/banner-color-science.jpg') top right / cover no-repeat;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: var(--font-heading);
}

.banner-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.banner-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.dropdown-banner:hover .banner-link {
    opacity: 0.8;
}

/* Header CTA Button - Redesigned with gradient and glow */
.cta-btn-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 0 0 30px rgba(59, 130, 246, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn-header:hover::before {
    left: 100%;
}

.cta-btn-header:hover {
    box-shadow: 0 6px 30px rgba(30, 58, 138, 0.6), 0 0 50px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 50%, #60a5fa 100%);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Primary Button - Gradient with shine effect */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35), 0 0 40px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 50%, #60a5fa 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
}

/* Secondary Button - Glass morphism style */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 4rem;
    background: url('assets/images/herobg.png') center center / cover no-repeat;
    background-color: #0a0a0a;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: none;
}

/* Dark overlay on hero background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(8, 8, 30, 0.6) 80%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #aaaaaa;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.text-reveal {
    display: inline-block;
    background: linear-gradient(180deg, #FFFFFF 0%, #888888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.color-shift {
    background: linear-gradient(90deg, #666666, #FFFFFF, #666666);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.mouse-hint {
    margin-top: 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    animation: fade 3s infinite alternate;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

@keyframes fade {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Features */
.features {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, #0d0d2b 0%, #0c1b3a 30%, #1a1050 60%, #0a2e38 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 4rem;
    background: #020202;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .features {
        padding: 5rem 2rem;
    }
}

/* Ambient Background Orbs */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 80%;
    height: 80vh;
    background: radial-gradient(circle, rgba(0, 210, 190, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
    top: -10%;
    left: -20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 90%;
    height: 90vh;
    background: radial-gradient(circle, rgba(120, 40, 220, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -30%;
    right: -20%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 60%;
    height: 60vh;
    background: radial-gradient(circle, rgba(30, 100, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, -5%) scale(1.1);
    }
}


/* Before/After Slider */
.ba-slider-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    position: relative;
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.ba-after,
.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 1;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 40px;
    margin-left: -20px;
    cursor: ew-resize;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ba-handle-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.ba-handle-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 5;
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

/* Thumbnails */
.ba-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.ba-thumb {
    width: 140px;
    height: 90px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.ba-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-thumb:hover {
    opacity: 0.8;
}

.ba-thumb.active {
    border-color: #fff;
    opacity: 1;
    transform: scale(1.05);
}


/* ===== Brand Logo Marquee Slider ===== */
.brand-marquee-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    background: #000;
}

.brand-marquee-section .section-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.brand-marquee-track-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: brandMarqueeScroll 30s linear infinite;
}

.brand-marquee-track:hover {
    animation-play-state: paused;
}

.brand-marquee-logo {
    flex-shrink: 0;
    height: 54px !important;
    max-height: 54px !important;
    width: auto !important;
    max-width: none !important;
    opacity: 1;
    transition: transform 0.3s ease;
}

.brand-marquee-logo:hover {
    transform: scale(1.05);
}

@keyframes brandMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Smart Presets Section ===== */
.smart-presets-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, #030303 0%, #0a0520 25%, #0d0a2e 50%, #08081a 75%, #050510 100%);
    overflow: hidden;
}

/* RGB Gradient Border Top */
.smart-presets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #FF0000 0%,
            #FF7F00 14.28%,
            #FFFF00 28.56%,
            #00FF00 42.84%,
            #0000FF 57.12%,
            #4B0082 71.4%,
            #9400D3 85.68%,
            #FF0000 100%);
    z-index: 10;
    pointer-events: none;
}

/* RGB Gradient Border Bottom */
.smart-presets-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #FF0000 0%,
            #FF7F00 14.28%,
            #FFFF00 28.56%,
            #00FF00 42.84%,
            #0000FF 57.12%,
            #4B0082 71.4%,
            #9400D3 85.68%,
            #FF0000 100%);
    z-index: 10;
    pointer-events: none;
}

.smart-presets-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.smart-presets-header {
    flex: 0 0 38%;
    position: sticky;
    top: 6rem;
}

.smart-presets-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sp-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.sp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

.sp-card:hover::before {
    opacity: 1;
}

/* Card accent colors */
.sp-card.sp-photo::before {
    background: linear-gradient(90deg, #F9A825, #FFD54F);
}

.sp-card.sp-photo:hover {
    box-shadow: 0 20px 60px rgba(249, 168, 37, 0.15), 0 0 40px rgba(249, 168, 37, 0.05);
}

.sp-card.sp-video::before {
    background: linear-gradient(90deg, #EF5350, #FF8A80);
}

.sp-card.sp-video:hover {
    box-shadow: 0 20px 60px rgba(239, 83, 80, 0.15), 0 0 40px rgba(239, 83, 80, 0.05);
}

.sp-card.sp-web::before {
    background: linear-gradient(90deg, #42A5F5, #80D8FF);
}

.sp-card.sp-web:hover {
    box-shadow: 0 20px 60px rgba(66, 165, 245, 0.15), 0 0 40px rgba(66, 165, 245, 0.05);
}

.sp-card.sp-prepress::before {
    background: linear-gradient(90deg, #66BB6A, #A5D6A7);
}

.sp-card.sp-prepress:hover {
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.15), 0 0 40px rgba(102, 187, 106, 0.05);
}

.sp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.sp-photo .sp-card-icon {
    background: rgba(249, 168, 37, 0.12);
    color: #FFD54F;
}

.sp-video .sp-card-icon {
    background: rgba(239, 83, 80, 0.12);
    color: #FF8A80;
}

.sp-web .sp-card-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #80D8FF;
}

.sp-prepress .sp-card-icon {
    background: rgba(102, 187, 106, 0.12);
    color: #A5D6A7;
}

.sp-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.sp-photo .sp-card-label {
    color: #FFD54F;
}

.sp-video .sp-card-label {
    color: #FF8A80;
}

.sp-web .sp-card-label {
    color: #80D8FF;
}

.sp-prepress .sp-card-label {
    color: #A5D6A7;
}

.sp-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.sp-card-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Vertical Stacked Cards Section (CSS Sticky Focus) */
.stacked-features {
    padding: 8rem 0 2rem 0;
    position: relative;
    z-index: 5;
    background-color: #050510;
}

/* Subtle dot grid pattern */
.stacked-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}

/* Animated aurora glow - cyan */
.stacked-features::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 70%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(79, 195, 247, 0.35) 0%, rgba(30, 144, 255, 0.15) 40%, transparent 70%);
    filter: blur(60px);
    animation: auroraShift1 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes auroraShift1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translate(18%, 12%) scale(1.3);
        opacity: 0.9;
    }

    66% {
        transform: translate(-5%, 25%) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: translate(12%, -8%) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes auroraShift2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-12%, -18%) scale(1.35);
        opacity: 0.9;
    }

    100% {
        transform: translate(8%, 10%) scale(0.85);
        opacity: 0.6;
    }
}

@keyframes auroraShift3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(12%, -12%) scale(1.4);
        opacity: 0.8;
    }

    100% {
        transform: translate(-10%, 8%) scale(1.1);
        opacity: 0.55;
    }
}

/* Aurora orb elements */
.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.aurora-purple {
    width: 60%;
    height: 60%;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(ellipse, rgba(130, 50, 220, 0.4) 0%, rgba(80, 30, 180, 0.15) 50%, transparent 70%);
    animation: auroraShift2 24s ease-in-out infinite alternate;
}

.aurora-pink {
    width: 50%;
    height: 50%;
    top: 35%;
    left: 20%;
    background: radial-gradient(ellipse, rgba(240, 98, 146, 0.3) 0%, rgba(180, 60, 120, 0.1) 50%, transparent 70%);
    animation: auroraShift3 28s ease-in-out infinite alternate;
}

.stacked-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 5rem;
    z-index: 20;
    position: relative;
    /* Normal unpinned flow */
}

/* Re-enable pointer events for the text so hover/selection works */
.stacked-header * {
    pointer-events: auto;
}

.stacked-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.stacked-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.stacked-cards-container {
    max-width: 1200px;
    width: 92vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 2rem;
}

.stacked-card {
    position: sticky;
    top: max(120px, 12vh);
    /* Moved much higher up */
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 4rem;
    min-height: 550px;
    /* Taller cards */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Staggering the sticky offsets so they stack visibly for 9 cards */
.stacked-card:nth-child(1) {
    top: max(120px, 12vh);
    z-index: 10;
    transform: scale(0.92);
    background: linear-gradient(135deg, #4FC3F7, #1565C0);
    border-color: rgba(79, 195, 247, 0.3);
}

.stacked-card:nth-child(2) {
    top: calc(max(120px, 12vh) + 24px);
    z-index: 11;
    transform: scale(0.93);
    background: linear-gradient(135deg, #FFF176, #F9A825);
    border-color: rgba(255, 241, 118, 0.3);
}

.stacked-card:nth-child(3) {
    top: calc(max(120px, 12vh) + 48px);
    z-index: 12;
    transform: scale(0.94);
    background: linear-gradient(135deg, #F06292, #AD1457);
    border-color: rgba(240, 98, 146, 0.3);
}

.stacked-card:nth-child(4) {
    top: calc(max(120px, 12vh) + 72px);
    z-index: 13;
    transform: scale(0.95);
    background: linear-gradient(135deg, #4FC3F7, #1565C0);
    border-color: rgba(79, 195, 247, 0.3);
}

.stacked-card:nth-child(5) {
    top: calc(max(120px, 12vh) + 96px);
    z-index: 14;
    transform: scale(0.96);
    background: linear-gradient(135deg, #FFF176, #F9A825);
    border-color: rgba(255, 241, 118, 0.3);
}

.stacked-card:nth-child(6) {
    top: calc(max(120px, 12vh) + 120px);
    z-index: 15;
    transform: scale(0.97);
    background: linear-gradient(135deg, #F06292, #AD1457);
    border-color: rgba(240, 98, 146, 0.3);
}

.stacked-card:nth-child(7) {
    top: calc(max(120px, 12vh) + 144px);
    z-index: 16;
    transform: scale(0.98);
    background: linear-gradient(135deg, #4FC3F7, #1565C0);
    border-color: rgba(79, 195, 247, 0.3);
}

.stacked-card:nth-child(8) {
    top: calc(max(120px, 12vh) + 168px);
    z-index: 17;
    transform: scale(0.99);
    background: linear-gradient(135deg, #FFF176, #F9A825);
    border-color: rgba(255, 241, 118, 0.3);
}

.stacked-card:nth-child(9) {
    top: calc(max(120px, 12vh) + 192px);
    z-index: 18;
    transform: scale(1);
    background: linear-gradient(135deg, #F06292, #AD1457);
    border-color: rgba(240, 98, 146, 0.3);
}

/* All cards: icon & number use dark style */
.stacked-card .stacked-card-icon {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

.stacked-card .stacked-card-icon svg {
    stroke: rgba(0, 0, 0, 0.7);
}

.stacked-card .card-number {
    color: rgba(0, 0, 0, 0.08);
}

/* Blue & pink cards: white description */
.stacked-card:nth-child(1) .stacked-card-desc,
.stacked-card:nth-child(3) .stacked-card-desc,
.stacked-card:nth-child(4) .stacked-card-desc,
.stacked-card:nth-child(6) .stacked-card-desc,
.stacked-card:nth-child(7) .stacked-card-desc,
.stacked-card:nth-child(9) .stacked-card-desc {
    color: rgba(255, 255, 255, 0.95);
}

/* Yellow cards: dark text */
.stacked-card:nth-child(2) .stacked-card-title,
.stacked-card:nth-child(2) .stacked-card-desc,
.stacked-card:nth-child(5) .stacked-card-title,
.stacked-card:nth-child(5) .stacked-card-desc,
.stacked-card:nth-child(8) .stacked-card-title,
.stacked-card:nth-child(8) .stacked-card-desc {
    color: rgba(30, 20, 0, 0.85);
}

/* Decorative Card Numbers */
.card-number {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* 2-column card layout */
.stacked-card-body {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.stacked-card-text {
    width: 40%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stacked-card-image {
    width: 60%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stacked-card-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.stacked-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.stacked-card-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

.stacked-card-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
}

/* Smart Presets Bento Section */
.bento-section {
    padding: 2rem 0 8rem 0;
    /* Reduced top padding */
    position: relative;
    z-index: 5;
}

.bento-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}


.bento-content {
    flex: 0 0 32%;
}

.bento-content .badge {
    display: inline-flex;
    margin-bottom: 2rem;
    border-color: rgba(255, 255, 255, 0.15);
    color: #aaaaaa;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid;
}

.bento-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.bento-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-grid {
    flex: 0 0 68%;
    display: grid;
    /* 3x2 Grid matching the reference layout */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 70vh;
    /* Fits smartly inside 90vh section */
    min-height: 600px;
}

/* Base Bento Card Style */
.bento-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.bento-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-card h3 {
    font-size: 1.25rem;
    /* Smaller titles by default */
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 1. Photography (Top Left, Wide Rectangle) */
.bento-card.photo {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
}

.bento-card.photo h3 {
    font-size: 1.7rem;
}

.bento-card.photo p {
    font-size: 1rem;
}

/* 2. Video Production (Bottom Left, Small Square) */
.bento-card.video {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
}

/* 3. Web & Digital Design (Bottom Middle, Small Square) */
.bento-card.web {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
}

/* 4. Prepress & Proofing (Right, Tall Rectangle) */
.bento-card.prepress {
    grid-column: 3 / span 1;
    grid-row: 1 / span 2;
}

.bento-card.prepress h3 {
    font-size: 1.7rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bento-wrapper {
        flex-direction: column;
    }

    .bento-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
    }
}

/* Professional Toolkit Section (Cinematic Showcase) */
.toolkit-section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
}

.toolkit-header-container {
    display: flex;
    justify-content: center;
}

.toolkit-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toolkit-header .badge {
    display: inline-flex;
    margin-bottom: 2rem;
    border-color: rgba(255, 255, 255, 0.15);
    color: #aaaaaa;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid;
}

.toolkit-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.toolkit-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cinematic Showcase Container */
.toolkit-showcase {
    position: relative;
    width: 92vw;
    max-width: 1400px;
    margin: 0 auto;
    height: 70vh;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.tk-screens {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tk-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.03);
    z-index: 1;
}

.tk-screen.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.tk-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 1), rgba(10, 10, 10, 1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Users will replace placeholder with their images. Ensure it covers. */
.tk-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Shimmer effect for placeholder */
.tk-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: placeholder-sweep 3s infinite;
}

/* Glass panel at the bottom */
.tk-glass-panel {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tk-text-container {
    flex: 1;
    max-width: 600px;
    margin-right: 4rem;
    position: relative;
}

.tk-text {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tk-text.active {
    display: block;
}

.tk-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tk-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.tk-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 380px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.tk-nav-item {
    background: transparent;
    border: none;
    color: #666;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s;
    line-height: 1.3;
}

.tk-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #fff;
    transition: height 0.3s ease, background 0.3s;
    border-radius: 4px;
}

.tk-nav-item.active {
    color: #fff;
    font-size: 1.1rem;
}

.tk-nav-item.active::before {
    height: 100%;
}

.tk-nav-item:hover:not(.active) {
    color: #aaa;
}

@media (max-width: 1024px) {
    .tk-glass-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .tk-text-container {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .tk-nav {
        width: 100%;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .toolkit-showcase {
        height: auto;
        min-height: 800px;
    }

    .tk-glass-panel {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .toolkit-header h2 {
        font-size: 2.5rem;
    }

    .tk-text h3 {
        font-size: 1.5rem;
    }
}

/* Solutions Expanded Cards Section */
.solutions-section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background: radial-gradient(ellipse 100% 60% at bottom center, rgba(30, 40, 255, 0.15) 0%, rgba(10, 10, 10, 1) 100%), #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solutions-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    /* Anchor for the background glow */
}

/* Stunning radiant glow applied to the entire Solutions container bottom */
.solutions-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    /* Bleed slightly out the bottom */
    left: 10%;
    /* Squeeze inwards slightly */
    width: 80%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(70, 30, 255, 0.4) 50%, rgba(0, 220, 255, 0.8) 100%);
    filter: blur(50px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    /* Glow behind text and cards */
}

.solutions-content {
    flex: 0 0 32%;
}

.solutions-content .badge {
    display: inline-flex;
    margin-bottom: 2rem;
    border-color: rgba(255, 255, 255, 0.15);
    color: #aaaaaa;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid;
}

.solutions-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.solutions-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.expanded-cards-container {
    flex: 0 0 68%;
    display: flex;
    flex-direction: row;
    height: 600px;
    gap: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    /* Sit above the wrapper glow */
}

.expand-card {
    position: relative;
    border-radius: 20px;
    background: #111;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    flex: 1;
    /* evenly distributed when none hovered */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Dedicated dark gradient overlay that fades upwards for text legibility (Resting) */
.expand-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 5;
}

/* Stunning Bottom-focused Gradient Glow (Matches Screenshot) */
.expand-card::after {
    content: '';
    position: absolute;
    bottom: 0px;
    /* Aligned exactly to the bottom edge */
    left: 0;
    width: 100%;
    height: 120px;
    /* How far up the glow bleeds */
    background: linear-gradient(180deg, transparent 0%, rgba(70, 30, 255, 0.4) 50%, rgba(0, 220, 255, 0.8) 100%);
    filter: blur(20px);
    opacity: 0.3;
    /* Subtle glow when not hovered */
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 6;
}

/* Background Images & Gradients for each card */
.expand-card.c-photo {
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%), url('assets/images/for-photographer.jpg') center/cover no-repeat;
}

.expand-card.c-video {
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%), url('assets/images/for-videographer.jpg') center/cover no-repeat;
}

.expand-card.c-design {
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%), url('assets/images/for-designer.jpg') center/cover no-repeat;
}

.expand-card.c-game {
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%), url('assets/images/for-gamer.jpg') center/cover no-repeat;
}

/* The text wrapper that expands */
.ec-content {
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
    width: 400px;
    /* Force width so it doesn't wrap weirdly when expanding/shrinking */
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    /* Ensure text sits above the gradient overlay */
}

.ec-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.ec-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ec-content ul {
    list-style: none;
    /* No dots */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ec-content ul li {
    font-size: 0.95rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ec-content ul li::before {
    content: '—';
    color: #fff;
}

/* The vertical title when collapsed */
.ec-title-vertical {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform-origin: left center;
    transform: rotate(-90deg);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    transition: all 0.4s ease;
    white-space: nowrap;
    z-index: 10;
}

.expand-card:hover {
    flex: 6;
    /* Expands to take up 6 times the space */
    /* Hard blue/cyan light at the exact bottom border rim */
    box-shadow: inset 0 -3px 20px rgba(0, 200, 255, 0.4), 0 20px 40px rgba(10, 10, 60, 0.5);
    z-index: 10;
}

/* Intensify the bottom-edge cyan/purple glow when hovered */
.expand-card:hover::after {
    opacity: 1;
}

/* Keep the text background dark */
.expand-card:hover::before {
    opacity: 0.8;
}

.expand-card:hover .ec-title-vertical {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.expand-card:hover .ec-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .solutions-wrapper {
        flex-direction: column;
    }

    .solutions-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .expanded-cards-container {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .expanded-cards-container {
        flex-direction: column;
        height: 800px;
    }

    .expand-card {
        justify-content: center;
    }

    .ec-title-vertical {
        transform: translate(-50%, 50%);
        /* Center horizontally and vertically */
        bottom: 50%;
        left: 50%;
    }

    .expand-card:hover .ec-title-vertical {
        transform: translate(-50%, 50%) scale(0.8);
    }

    .ec-content {
        width: 100%;
        position: relative;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    /* Increased gap for visual breathing room */
    width: 92vw;
    /* User requested explicit 92vw width */
    max-width: 1400px;
    margin: 100px auto 0;
    /* Huge top margin to fit the bursting 3D images */
    align-items: stretch;
}

.pricing-card {
    background: rgba(18, 18, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    /* Reduced padding to make card shorter */
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(30px);
    overflow: hidden;
    /* Contain the watermark SVGs */
}

/* Card specific under-glows simulating colored glass */
.pricing-card.card-blue {
    background: radial-gradient(circle at top left, rgba(40, 100, 200, 0.15) 0%, rgba(18, 18, 20, 0.9) 60%);
    box-shadow: inset 0 1px 0 rgba(100, 180, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.card-purple {
    background: radial-gradient(circle at top left, rgba(120, 60, 220, 0.2) 0%, rgba(18, 18, 20, 0.95) 70%);
    box-shadow: inset 0 1px 0 rgba(160, 100, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    /* Popular tier stands out */
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.card-grey {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08) 0%, rgba(18, 18, 20, 0.9) 60%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.card-purple:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Abstract Background Watermarks */
.card-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.card-watermark svg {
    width: 100%;
    height: 100%;
    transform: rotate(15deg);
}

/* Top Left Logo SVG Container */
.pc-tier-header {
    margin-bottom: 1rem;
    /* Reduced from 2rem */
    position: relative;
    z-index: 10;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.popular-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.pc-tier-name {
    font-size: 1.6rem;
    font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: 0.3rem;
    /* Reduced from 0.5rem */
    color: #fff;
    position: relative;
    z-index: 10;
}

.pc-desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    /* Reduced from 2rem */
    min-height: 45px;
    /* Reduced from 65px */
    position: relative;
    z-index: 10;
}

.pc-price-box {
    margin-bottom: 1rem;
    /* Reduced from 2rem */
    position: relative;
    z-index: 10;
}

.pc-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.pc-price-main {
    font-size: 2.5rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

/* Restored Strikethrough style */
.pc-price-strike {
    font-size: 1.25rem;
    color: #666;
    text-decoration: line-through;
    font-weight: 500;
}

.pc-price span {
    font-size: 1rem;
    color: #666;
    margin-left: 2px;
    /* Adjusted as gap takes over */
    font-weight: 400;
}

.pc-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    z-index: 10;
    margin-top: 1.5rem;
    /* Space above button instead of below */
}

.pc-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pc-btn-solid {
    background: #ff5533;
    /* Vibrant orange matching screenshot */
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 85, 51, 0.3);
}

.pc-btn-solid:hover {
    background: #ff6a4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 85, 51, 0.4);
}

/* Feature Lists Styling */
.pc-includes-list {
    position: relative;
    z-index: 10;
    flex-grow: 1;
}

.pc-special-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.pc-special-feature .sf-icon {
    width: 18px;
    height: 18px;
    stroke: #888;
}

.pc-special-feature strong {
    color: #fff;
    font-weight: 500;
}

.pc-tier-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.25rem 0 1rem;
    /* Tighter margins around the divider */
    position: relative;
}

.pc-tier-divider::before,
.pc-tier-divider::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    /* Slightly brighter line */
}

.pc-tier-divider span {
    padding: 0 10px;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pc-includes-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 1.5rem;
    /* Added left margin so it doesn't touch the left edge */
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* Reduced gap between lists */
}

.pc-includes-list ul li {
    position: relative;
    padding-left: 30px;
    font-size: 0.8rem;
    /* Smaller font for features */
    color: #666;
    /* Match "What's Included" color */
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from space-between to flex-start */
}

.pc-includes-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    background: rgba(255, 255, 255, 0.05);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.pc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    text-decoration: none;
}

.pc-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.pc-btn-solid {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.pc-btn-solid:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }
}

/* Testimonials & Brands Section */
.trust-section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background: #050505;
    overflow: hidden;
}

.trust-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.trust-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ==========================================
   PROVEN RESULTS: TESTIMONIAL SLIDER
   ========================================== */
.testimonials-slider-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto 5rem;
    position: relative;
    padding: 0 80px;
}

.testimonials-slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* Navigation Buttons */
.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testi-nav:hover {
    background: rgba(80, 80, 80, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.testi-nav.prev {
    left: 10px;
}

.testi-nav.next {
    right: 10px;
}

/* Testimonial Cards */
.testi-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 380px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.testi-card:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.testi-quote {
    font-size: 0.95rem;
    color: #dedede;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
}

.testi-quote::before {
    content: '""';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

/* Author Section */
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testi-avatar.a1 {
    background: linear-gradient(135deg, #FF6B6B, #C23838);
}

.testi-avatar.a2 {
    background: linear-gradient(135deg, #4ECDC4, #2A9D8F);
}

.testi-avatar.a3 {
    background: linear-gradient(135deg, #FFE66D, #F4A261);
    color: #000;
}

.testi-meta h4 {
    font-size: 0.95rem;
    margin: 0 0 0.2rem 0;
    color: #fff;
}

.testi-meta span {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-divider {
    text-align: center;
    margin: 4rem 0 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-divider::before,
.trust-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    max-width: 300px;
}

.trust-divider span {
    padding: 0 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    font-weight: 600;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    display: flex;
    white-space: nowrap;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #050505, transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #050505, transparent);
}

.brands-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scroll-brands 40s linear infinite;
    padding-left: 4rem;
    /* Start padding gap */
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

.brand-logo-container {
    position: relative;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo-container img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    transition: opacity 0.4s ease;
}

/* Hide duplicate logos on desktop */
@media (min-width: 1025px) {
    .brand-loop-duplicate {
        display: none !important;
    }
}

/* Base states */
.brand-logo-gray {
    opacity: 1;
}

.brand-logo-color {
    opacity: 0;
    z-index: 2;
}

.brand-logo-container:hover {
    transform: scale(1.05);
}

.brand-logo-container:hover .brand-logo-gray {
    opacity: 0;
}

.brand-logo-container:hover .brand-logo-color {
    opacity: 1;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        margin: 0 2rem 5rem;
    }

    .brands-track {
        gap: 3rem;
        padding-left: 3rem;
    }
}

@media (max-width: 768px) {
    .trust-divider span {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .brand-logo-container {
        width: 100px;
    }

    .brands-track {
        animation-duration: 20s;
    }
}

/* ==========================================
   BRANDS MARQUEE ROWS (mobile animated)
   ========================================== */

/* On desktop: wrappers are invisible — logos flow into the parent grid directly */
.brands-marquee-row {
    display: contents;
}

/* Duplicate items hidden on desktop, shown in mobile marquee */
.brand-loop-duplicate {
    display: none;
}

/* Mobile marquee keyframes */
@keyframes brands-scroll-fwd {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes brands-scroll-rev {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Update Brands to Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.brands-marquee {
    display: none;
    /* Hide old marquee */
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Update Trust Section Width to 92vw */
.trust-section .container {
    width: 92vw;
    margin: 0 auto;
    max-width: 1600px;
    /* Optional, prevents it from getting too wide on ultrawides, but can be removed if user wants true full width */
}

/* 7 Marquee Testimonial Cards */
.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    display: flex;
    white-space: nowrap;
    margin-bottom: 5rem;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #050505 0%, transparent 100%);
}

.testimonials-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #050505 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    animation: scroll-testi 60s linear infinite;
    padding-left: 3rem;
}

/* Pause on hover */
.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scroll-testi {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

/* Adjust card for marquee context */
.testi-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 450px;
    /* Fixed width for horizontal scrolling */
    white-space: normal;
    /* Override marquee nowrap */
    flex-shrink: 0;
}

/* Hide the old grid */
.testimonials-grid {
    display: none;
}

/* Brands Grid Outline Styling */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    /* Remove gap to make borders contiguous */
    padding: 0;
    width: 100%;
    max-width: none;
    margin: 2rem auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo-container {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
}

.brand-logo-container img {
    position: absolute;
    max-width: 60%;
    max-height: 60%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.brand-logo-container:hover {
    transform: none;
    /* remove scale since it breaks grid borders */
    background: rgba(255, 255, 255, 0.02);
}

.brand-logo-container:hover .brand-logo-color {
    opacity: 1;
    transform: scale(1.1);
    /* Scale the inner image instead */
}

.brand-logo-container:hover .brand-logo-gray {
    opacity: 0;
    transform: scale(1.1);
}

/* Update Brands Grid height padding */
.brand-logo-container {
    height: 160px;
    /* Increased from 120px */
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background: #000;
}

.faq-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.faq-content {
    flex: 0 0 35%;
    position: sticky;
    top: 100px;
}

.faq-content .badge {
    display: inline-flex;
    margin-bottom: 2rem;
    border-color: rgba(255, 255, 255, 0.15);
    color: #aaaaaa;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.faq-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.faq-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-accordion-container {
    flex: 0 0 65%;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem 0;
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

div.faq-question,
.faq-question:hover,
.faq-question:focus,
.faq-question:focus-visible,
.faq-question:active,
.faq-item.active .faq-question,
.faq-section .faq-question {
    color: #aaa !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Override Elementor Global Colors locally for FAQ */
.faq-wrapper,
.faq-accordion-container,
.faq-item * {
    --e-global-color-primary: transparent !important;
    --e-global-color-secondary: transparent !important;
    --e-global-color-accent: transparent !important;
    --e-focus-color: transparent !important;
}

/* Neutralize global pseudo-elements from parent theme */
div.faq-question::before,
div.faq-question::after,
.faq-item.active div.faq-question::before,
.faq-item.active div.faq-question::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform 0.4s ease;
}

.faq-icon::before {
    top: 11px;
    left: 0;
    width: 24px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 11px;
    width: 2px;
    height: 24px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
    padding-bottom: 2rem;
    font-size: 1.1rem;
    color: #888;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .faq-wrapper {
        flex-direction: column;
    }

    .faq-content {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
}

/* Update FAQ Gap */
.faq-wrapper {
    gap: 8rem;
    /* Increased from 4rem */
}

/* Final CTA Section */
.cta-section {
    padding: 10rem 0 8rem;
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    text-align: center;
    overflow: hidden;
}

/* Center Glow Effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.4rem;
    color: #aaa;
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.cta-sys-req {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    width: 100%;
}

.req-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.req-icon {
    color: #666;
}

.req-text {
    font-size: 0.95rem;
    color: #888;
}

@media (max-width: 768px) {
    .faq-wrapper {
        gap: 4rem;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-sys-req {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Custom Footer */
.custom-footer {
    background: #000;
    color: #fff;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    width: 92vw;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Left Column - Logo */
.footer-col-left {
    flex: 0 0 20%;
}

.footer-col-left img {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

/* Middle Column - Links Grid */
.footer-col-middle {
    flex: 1;
    /* Takes up remaining space */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-group ul li {
    margin-bottom: 0.8rem;
}

.footer-link-group ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-link-group ul li a:hover {
    color: #fff;
}

/* Right Column - Newsletter & Contact */
.footer-col-right {
    flex: 0 0 25%;
}

.footer-col-right h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col-right p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e0e0e0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-address {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-col-left,
    .footer-col-right {
        flex: none;
        width: 100%;
    }

    .footer-col-middle {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-col-middle {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Footer Left Column Details */
.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #888;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

/* Huge PerfectChroma Text */
.footer-huge-text-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    margin-top: 4rem;
    padding-top: 4rem;
    display: flex;
    justify-content: center;
}

.footer-huge-text {
    font-size: 15vw;
    /* Scales with viewport width */
    line-height: 0.8;
    font-family: var(--font-heading);
    white-space: nowrap;
    text-align: center;
    letter-spacing: -2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    pointer-events: none;
}

.footer-huge-text .fw-light {
    font-weight: 300;
}

.footer-huge-text .fw-bold {
    font-weight: 800;
}

@media (max-width: 768px) {
    .footer-desc {
        max-width: 100%;
    }

    .footer-huge-text-container {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

@media (max-width: 1100px) {
    .ai-calibration-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .ai-calibration-copy {
        max-width: none;
    }
}


/* Preview specific overrides to simulate WP environment without WP */
body {
    margin: 0;
    padding: 0;
}

.elementor-preview-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.ai-calibration-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.ai-calibration-copy,
.ai-calibration-panel {
    min-width: 0;
}

/* Ambient subtle background for Problem/Solution */
.ps-section {
    position: relative;
    overflow: hidden;
    background: #020202;
}

.ps-ambient-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(100, 100, 255, 0.05) 0%, rgba(200, 50, 50, 0.02) 40%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.5;
    animation: ps-breathe-subtle 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes ps-breathe-subtle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

/* NARRATIVE SECTION CSS */
.narrative-section {
    display: flex;
    height: 75vh;
    width: 98vw;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.narrative-panel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3rem;
    padding: 4rem 3rem;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.narrative-panel:last-child {
    border-right: none;
}

/* Ambient Top Glows */
.panel-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 50%;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

/* Ghost Numbers */
.ghost-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: var(--font-heading), 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

/* Shared Typography Classes */
.nar-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    z-index: 5;
    position: relative;
}

.nar-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.nar-divider {
    width: 32px;
    height: 1px;
    margin-bottom: 2rem;
    z-index: 5;
    position: relative;
}

.nar-headline {
    font-family: var(--font-heading), 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    z-index: 5;
    position: relative;
}

.nar-body {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.5);
    max-width: 90%;
    z-index: 5;
    position: relative;
}

/* Visual Zones */
.visual-zone {
    width: 100%;
    height: 35%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Panel 1: Problem Specifics */
.panel-problem {
    background-color: #0c0606;
}

.panel-problem .panel-glow {
    background: rgba(192, 57, 43, 0.14);
}

.panel-problem .nar-tag {
    color: rgba(192, 57, 43, 0.75);
}

.panel-problem .nar-tag-dot {
    background: #c0392b;
    box-shadow: 0 0 10px #c0392b;
}

.panel-problem .nar-divider {
    background: #c0392b;
}

.panel-problem .nar-headline {
    color: #fff;
}

.swatch-container {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.swatch-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
    animation: scrolldown 10s linear infinite;
    opacity: 0.3;
}

@keyframes scrolldown {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 1000px;
    }
}

.swatch-fill {
    width: 100%;
    flex: 1;
    border-radius: 4px;
    animation: hueShift 4s ease-in-out infinite alternate;
}

.swatch-1 .swatch-fill {
    background: linear-gradient(135deg, #e67e22, #c0392b);
    animation-delay: 0s;
}

.swatch-2 .swatch-fill {
    background: linear-gradient(135deg, #16a085, #2980b9);
    animation-delay: -1s;
}

.swatch-3 .swatch-fill {
    background: linear-gradient(135deg, #8e44ad, #2c3e50);
    animation-delay: -2s;
}

.swatch-4 .swatch-fill {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    animation-delay: -3s;
}

.swatch-label {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: rgba(245, 240, 232, 0.4);
    text-align: center;
    text-transform: uppercase;
}

@keyframes hueShift {
    0% {
        filter: hue-rotate(0deg) saturate(100%);
    }

    50% {
        filter: hue-rotate(20deg) saturate(60%);
    }

    100% {
        filter: hue-rotate(40deg) saturate(100%);
    }
}

/* Panel 2: Reality Specifics */
.panel-reality {
    background-color: #080b09;
}

.panel-reality .panel-glow {
    background: rgba(230, 126, 34, 0.10);
}

.panel-reality .nar-tag {
    color: #e67e22;
}

.panel-reality .nar-tag-dot {
    background: #e67e22;
    box-shadow: 0 0 10px #e67e22;
}

.panel-reality .nar-divider {
    background: #e67e22;
}

.panel-reality .nar-headline {
    color: #fff;
}

.diag-panel {
    width: 100%;
    border: 1px solid rgba(230, 126, 34, 0.2);
    background: #0a0a0a;
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.diag-title {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #e67e22;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.eq-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 24px;
}

.eq-label {
    width: 52px;
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: rgba(245, 240, 232, 0.3);
    text-transform: uppercase;
}

.eq-bars {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 0 1rem;
}

.eq-bar {
    flex: 1;
    background: linear-gradient(to top, #c0392b, #e67e22);
    border-radius: 1px;
    animation: waveDance 0.8s ease-in-out infinite alternate;
}

.eq-val {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: #e67e22;
    width: 28px;
    text-align: right;
}

@keyframes waveDance {
    from {
        height: 20%;
    }

    to {
        height: 100%;
    }
}

/* Panel 3: Solution Specifics */
.panel-solution {
    background-color: #050e0d;
}

.panel-solution .panel-glow {
    background: rgba(26, 188, 156, 0.10);
}

.panel-solution .nar-tag {
    color: #1abc9c;
}

.panel-solution .nar-tag-dot {
    background: #1abc9c;
    box-shadow: 0 0 10px #1abc9c;
}

.panel-solution .nar-divider {
    background: #1abc9c;
}

.panel-solution .nar-headline {
    color: #1abc9c;
    font-style: italic;
}

.preview-box {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    position: relative;
    background: linear-gradient(to right, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.frosted-check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(26, 188, 156, 0.5);
    box-shadow: 0 0 24px rgba(26, 188, 156, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-monitor-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
}

.live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1abc9c;
    box-shadow: 0 0 8px #1abc9c;
    animation: pulseBlink 2s infinite;
}

.live-text {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: #1abc9c;
    letter-spacing: 0.05em;
}

.badge-calibrated {
    position: absolute;
    bottom: 12px;
    right: 12px;
    border: 1px solid rgba(26, 188, 156, 0.4);
    background: rgba(26, 188, 156, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: #1abc9c;
    letter-spacing: 0.1em;
    backdrop-filter: blur(2px);
}

@keyframes pulseBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

/* BEFORE/AFTER APP UI REDESIGN */
.before-after-app {
    width: 98vw;
    max-width: 1400px;
    margin: 6rem auto 2rem auto;
    border-radius: 12px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
}

.app-window {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* App Header (Fake Window Chrome) */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-controls {
    display: flex;
    gap: 8px;
    width: 60px;
    /* balance out the actions container */
}

.ctrl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ctrl-dot.close {
    background: #ff5f56;
}

.ctrl-dot.min {
    background: #ffbd2e;
}

.ctrl-dot.max {
    background: #27c93f;
}

.app-title {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    width: 60px;
    justify-content: flex-end;
}

/* App Body (Sidebar + Workspace) */
.app-body {
    display: flex;
    flex-direction: column;
    /* let children dictate height */
}

/* App Sidebar (Thumbnails) */
.app-sidebar {
    width: 100%;
    background: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.app-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

/* Custom Scrollbar for thumbnails */
.app-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.app-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.app-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.app-thumbnails .ba-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    opacity: 0.6;
    width: auto;
    min-width: 80px;
}

.app-thumbnails .ba-thumb:hover {
    background: rgba(255, 255, 255, 0.03);
    opacity: 0.8;
}

.app-thumbnails .ba-thumb.active {
    background: rgba(26, 188, 156, 0.1);
    opacity: 1;
}

.thumb-wrapper {
    width: 48px;
    height: 32px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-thumbnails .ba-thumb.active .thumb-wrapper {
    border-color: #1abc9c;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.app-thumbnails .ba-thumb.active .thumb-label {
    color: #1abc9c;
}

/* Canvas Workspace (Slider) */
.app-canvas {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #222 0%, #111 100%);
    position: relative;
}

.app-slider {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: auto;
    height: 750px;
}

/* The specific slider internal overrides */
.app-slider .ba-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Redesigning the Handle */
.app-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    cursor: ew-resize;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
    /* invisible trap */
    margin-left: -1px;
    /* center perfectly */
}

.app-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1abc9c;
    box-shadow: 0 0 10px #1abc9c, 0 0 20px #1abc9c;
}

.app-handle-pill {
    position: relative;
    width: 48px;
    height: 28px;
    background: rgba(26, 188, 156, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(26, 188, 156, 0.5);
    z-index: 2;
}

.pill-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
}

/* App Corner Labels */
.app-label {
    position: absolute;
    bottom: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
}

.label-left {
    left: 1rem;
}

.label-right {
    right: 1rem;
    color: #1abc9c;
    border-color: rgba(26, 188, 156, 0.3);
}


/* --- Marquee Testimonial Slider --- */
.pc-marquee-section {
    position: relative;
    width: 92vw;
    max-width: 1400px;
    margin: 0 auto 5rem;
    overflow: hidden;
    padding: 10px 0;
}

/* Fade edges */
.pc-marquee-section::before,
.pc-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.pc-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, #050505 0%, transparent 100%);
}

.pc-marquee-section::after {
    right: 0;
    background: linear-gradient(-90deg, #050505 0%, transparent 100%);
}

/* Track - infinite loop */
.pc-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: pc-marquee-scroll 45s linear infinite;
    will-change: transform;
}

.pc-marquee-section:hover .pc-marquee-track {
    animation-play-state: paused;
}

@keyframes pc-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Card */
.pc-testi-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    width: 380px;
    min-width: 380px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pc-testi-card:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pc-testi-quote {
    font-size: 0.95rem;
    color: #dedede;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-top: 1rem;
}

.pc-testi-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: -18px;
    left: -5px;
    font-family: Georgia, serif;
    line-height: 1;
}

.pc-testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.pc-testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.pc-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.pc-testi-name {
    font-size: 0.95rem;
    margin: 0 0 0.2rem 0;
    color: #fff;
    font-weight: 600;
}

.pc-testi-role {
    font-size: 0.72rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.pc-marquee-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pc-marquee-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pc-marquee-btn:hover {
    background: rgba(80, 80, 80, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.pc-marquee-btn:active {
    transform: scale(0.92);
}

.cta-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg,
            #020510 0%,
            #030815 15%,
            #050d1a 30%,
            #081525 50%,
            #0a1d35 70%,
            #0d2847 85%,
            #103558 100%);
    overflow: hidden;
    text-align: center;
}

/* Decorative glow orbs with enhanced blue tones */
.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(96, 165, 250, 0.08) 30%,
            rgba(147, 197, 253, 0.04) 50%,
            transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse,
            rgba(14, 165, 233, 0.12) 0%,
            rgba(56, 189, 248, 0.06) 40%,
            rgba(125, 211, 252, 0.03) 60%,
            transparent 80%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-family: var(--font-heading), 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #8a2be2, #6a1bb3);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.5), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-sys-req {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-size: 0.85rem;
}

.req-icon {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
}

.req-text {
    font-family: var(--font-body), 'Inter', sans-serif;
    color: #ffffff;
}

/* Accent line - no animation */
.cta-accent-line {
    display: none;
}

/* Decorative floating orb elements */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    animation: cta-float 8s ease-in-out infinite alternate;
}

.cta-orb-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: -3%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    animation: cta-float 6s ease-in-out infinite alternate-reverse;
}

@keyframes cta-float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.1);
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-sys-req {
        gap: 1.5rem;
    }
}


/* =========================================
/* ========================================= 
   RESTORED NARRATIVE MODERN CARDS 
   ========================================= */
.narrative-wrapper {
    background: transparent;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Grid Pattern Background for Narrative Section */
.narrative-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.6) 10%,
            rgba(0, 0, 0, 0.15) 25%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.6) 90%,
            rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.6) 10%,
            rgba(0, 0, 0, 0.15) 25%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.6) 90%,
            rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

/* Side Lighting Effects */
.narrative-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.narrative-header {
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    z-index: 10;
}

.nar-cards-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nar-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.nar-modern-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nar-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.nar-modern-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.nar-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nar-modern-card:hover .nar-card-image img {
    transform: scale(1.05);
}

/* Specific glows for each card to blend the image */
.nar-modern-card:nth-child(1) .nar-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0.8) 20%, transparent 100%);
    pointer-events: none;
}

.nar-modern-card:nth-child(2) .nar-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0.8) 20%, transparent 100%);
    pointer-events: none;
}

.nar-modern-card:nth-child(3) .nar-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0.8) 20%, transparent 100%);
    pointer-events: none;
}

.nar-card-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nar-card-pill {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #aaaaaa;
    backdrop-filter: blur(4px);
}

.nar-card-title {
    font-family: var(--font-heading), 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nar-card-desc {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .nar-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nar-cards-container {
        padding: 0 0.5rem;
    }

    .nar-cards-grid {
        grid-template-columns: 1fr;
    }

    .nar-card-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nar-cards-container {
        padding: 0 0.5rem;
    }

    .nar-card-content {
        padding: 1.5rem 1rem;
    }
}

/* =========================================
   RESTORED BEFORE/AFTER SLIDER STYLES
   ========================================= */

.ba-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before Image needs to sit on top and be clipped */
.ba-image-before {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    /* Set initial clip */
}

.ba-image-after {
    z-index: 0;
}

/* The Handle Overlay */
#ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 48px;
    margin-left: -24px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

#ba-handle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: #1abc9c;
    box-shadow: 0 0 10px #1abc9c, 0 0 20px #1abc9c;
}

.handle-pill {
    position: relative;
    width: 48px;
    height: 28px;
    background: rgba(26, 188, 156, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(26, 188, 156, 0.5);
    z-index: 2;
}

.pill-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
}


/* =========================================
   FAQ ACCORDION FIX
   ========================================= */

/* Narrative Cards Section Styling */
.nar-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.nar-modern-card {
    position: relative;
    background: #030303;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    min-height: 720px;
    isolation: isolate;
}

.nar-modern-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Modifier Specific Accent Colors for Outer Glow */
.nar-card-problem {
    --card-glow: rgba(138, 43, 226, 0.35);
}

.nar-card-reality {
    --card-glow: rgba(255, 215, 0, 0.35);
}

.nar-card-solution {
    --card-glow: rgba(0, 210, 255, 0.35);
}

.nar-modern-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 30px var(--card-glow);
}

/* Card Glow Effect (Glow from bottom) - DISABLED */
.nar-modern-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140%;
    height: 60%;
    transform: translateX(-50%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

/* Modifier Specific Glow Colors */
.nar-card-problem::after {
    --glow-color: rgba(138, 43, 226, 0.8);
}

.nar-card-reality::after {
    --glow-color: rgba(255, 215, 0, 0.8);
}

.nar-card-solution::after {
    --glow-color: rgba(0, 210, 255, 0.8);
}

.nar-modern-card::after {
    background: radial-gradient(circle at center, var(--glow-color) 0%, transparent 70%);
}

.nar-modern-card:hover::after {
    opacity: 0;
    height: 70%;
    bottom: 0;
}

.nar-card-top {
    padding: 2.5rem 2.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.nar-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nar-modern-card:hover .nar-card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.nar-card-content {
    padding: 0 2.5rem 2rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.nar-card-pill {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.nar-card-title {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.nar-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 90%;
}

.nar-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nar-card-link:hover {
    gap: 0.9rem;
    opacity: 0.8;
}

.nar-card-image {
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
    padding: 0 2rem 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.nar-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

.nar-modern-card:hover .nar-card-image img {
    transform: scale(1.05);
}

/* Gradient overlay covering entire card including image area */
.nar-modern-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0.9;
}

/* Card 1: Purple to Pink gradient */
.nar-card-problem::before {
    background: linear-gradient(180deg, transparent 0%, rgba(138, 43, 226, 0.15) 25%, rgba(138, 43, 226, 0.4) 50%, rgba(186, 85, 211, 0.6) 75%, rgba(219, 112, 147, 0.85) 100%);
}

/* Card 2: Yellow to Green gradient */
.nar-card-reality::before {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.15) 25%, rgba(255, 215, 0, 0.35) 50%, rgba(173, 255, 47, 0.55) 75%, rgba(50, 205, 50, 0.8) 100%);
}

/* Card 3: Blue to Cyan gradient */
.nar-card-solution::before {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 191, 255, 0.15) 25%, rgba(0, 191, 255, 0.4) 50%, rgba(64, 224, 208, 0.6) 75%, rgba(0, 206, 209, 0.85) 100%);
}

.nar-modern-card:hover::before {
    opacity: 1;
}

@media (max-width: 1100px) {
    .nar-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .nar-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .nar-modern-card {
        min-height: auto;
    }

    .nar-card-title {
        font-size: 1.6rem;
    }
}

/* =========================================
   MOBILE OPTIMIZATION
   All rules below are mobile-only.
   Desktop styles above are untouched.
   ========================================= */

/* ---- Hamburger Button ---- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 60;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Menu Drawer ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    max-width: 100%;
    height: 100dvh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 500;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-size: 1.1rem;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 490;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* ---- Mobile Nav Items ---- */
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    flex: 1;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #bbb;
    text-decoration: none;
    background: none;
    border: none;
    border-bottom: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: 0.01em;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-link {
    justify-content: flex-start;
}

.mobile-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #666;
}

.mobile-nav-group.open .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: none;
}

.mobile-nav-group.open .mobile-nav-submenu {
    display: flex;
}

.mobile-nav-subitem {
    font-size: 0.9rem;
    padding: 0.8rem 2.5rem;
    color: #999;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
    font-family: var(--font-body);
    border-left: 2px solid transparent;
}

.mobile-nav-subitem:hover,
.mobile-nav-subitem:focus {
    color: #fff;
    padding-left: 2.8rem;
    border-left-color: #3b82f6;
    background: rgba(255, 255, 255, 0.02);
}

/* Decorative separator for secondary links */
.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
}

/* Secondary Nav Groups (Footer items in Menu) */
.mobile-nav-group-secondary {
    margin-top: 0.5rem;
}

.mobile-nav-group-secondary .mobile-nav-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: #888;
    border-bottom: none;
}

.mobile-nav-group-secondary .mobile-nav-item:hover,
.mobile-nav-group-secondary .mobile-nav-item:focus {
    color: #ccc;
    background: transparent;
}

.mobile-nav-group-secondary .mobile-nav-submenu {
    background: transparent;
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.mobile-nav-group-secondary .mobile-nav-subitem {
    font-size: 0.8rem;
    padding: 0.5rem 2.5rem;
    color: #666;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-group-secondary .mobile-nav-subitem:hover {
    color: #aaa;
    padding-left: 2.5rem;
    background: transparent;
}

.mobile-nav-cta-wrap {
    padding: 1.5rem;
    margin-top: auto;
}

/* ---- Mobile Cart & Account Row ---- */
.mobile-nav-account-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem 0;
}

.mobile-nav-account-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.mobile-nav-account-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.mobile-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #fff;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    margin-left: auto;
}

.mobile-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* =========================================
   MOBILE RESPONSIVE OVERRIDES (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* ---- Navbar ---- */
    .hamburger-btn {
        display: flex;
    }

    .cta-btn-header {
        display: none;
    }

    /* Hide cart & user icons from navbar on mobile — moved into hamburger menu */
    .cart-icon-btn,
    .user-icon-btn {
        display: none;
    }

    /* Keep logo text visible on mobile even when scrolled */
    .navbar.scrolled .header-logo-text {
        max-width: 200px;
        opacity: 1;
        margin-left: 0;
    }

    .navbar {
        padding: 0.75rem 1.25rem;
    }

    /* Disable the pill-shrink effect on mobile */
    .navbar.scrolled {
        width: 100%;
        max-width: 100%;
        top: 0;
        border-radius: 0;
        padding: 0.75rem 1.25rem;
    }

    /* Disable cursor glow (no pointer on touch) */
    .cursor-glow {
        display: none;
    }

    /* ---- HERO ---- */
    .hero {
        min-height: 100svh;
        padding: 6rem 1rem 2rem 1rem;
        /* Added padding-top to push content down */
        background-color: #050510 !important;
        /* Sleek topographic/grid SVG background blended with gradients */
        background:
            url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'),
            linear-gradient(160deg, #050510 0%, #0d1b3e 40%, #1a0838 70%, #060308 100%) !important;
    }

    /* Center all hero content */
    .hero-content {
        margin-top: 2rem !important;
        /* Ensure there is starting margin */
        text-align: center !important;
        align-items: center !important;
    }

    .canvas-container,
    .vignette {
        display: none !important;
    }

    .hero-title {
        font-size: 2.6rem !important;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 100% !important;
        margin: 0 auto 2rem auto !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 0.75rem;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.75rem;
    }

    .hero-actions .btn-secondary {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.35rem 0 !important;
        font-size: 0.8rem !important;
        text-decoration: underline;
        text-underline-offset: 3px;
        color: rgba(255, 255, 255, 0.65) !important;
        width: auto !important;
        min-width: unset !important;
        transform: none !important;
    }

    .hero-actions .btn-secondary::before,
    .hero-actions .btn-secondary::after {
        display: none !important;
    }

    .mouse-hint {
        font-size: 0.52rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
        margin-top: 2rem;
        padding: 0.5rem 1rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        white-space: normal !important;
    }

    /* Hero badge: 2-line centered layout on mobile */
    .hero-badge {
        flex-direction: column !important;
        gap: 0.2rem !important;
        align-items: center !important;
        padding: 0.6rem 1.25rem !important;
    }

    .hero-badge .pulse-dot {
        display: none !important;
    }

    .hero-badge .hero-badge-line1 {
        white-space: nowrap;
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .hero-badge .hero-badge-line2 {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    /* ---- BRAND MARQUEE ---- */
    .brand-marquee-section {
        padding: 2rem 0;
    }

    /* ---- NARRATIVE SECTION ---- */
    .narrative-wrapper {
        padding: 4rem 0;
    }

    .narrative-header {
        padding: 2rem 6vw;
        text-align: center !important;
    }

    .narrative-header h2 {
        font-size: 1.85rem !important;
        line-height: 1.2;
    }

    .narrative-header p {
        font-size: 0.95rem !important;
    }

    /* Narrative cards: compact horizontal layout */
    .nar-cards-container {
        padding: 0 1.5vw;
    }

    .nar-cards-grid {
        gap: 0.6rem;
    }

    .nar-modern-card {
        display: grid;
        grid-template-columns: 1fr 110px;
        grid-template-rows: auto 1fr;
        flex-direction: unset;
        min-height: 155px;
        overflow: hidden;
        border-radius: 10px;
    }

    .nar-modern-card:hover {
        transform: none;
    }

    .nar-card-top {
        grid-column: 1;
        grid-row: 1;
        padding: 1.1rem 0.5rem 0.4rem 1.1rem;
    }

    .nar-card-content {
        grid-column: 1;
        grid-row: 2;
        padding: 0 0.75rem 1.1rem 1.1rem;
        flex-grow: 0;
    }

    .nar-card-image {
        grid-column: 2;
        grid-row: 1 / 3;
        height: 100%;
        width: auto;
        border-bottom: none;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        padding: 0.75rem 0.5rem;
        background: rgba(0, 0, 0, 0.2);
    }

    .nar-card-image img {
        width: 100%;
        height: auto;
        max-height: 140px;
        object-fit: contain;
    }

    .nar-card-pill {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 0.6rem;
    }

    .nar-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .nar-card-desc {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .nar-card-link {
        display: none;
    }

    /* Before/After App UI — stripped back on mobile */
    .before-after-app {
        width: 100%;
        margin: 2rem 0 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        background: transparent;
        box-shadow: none;
        padding: 0 4vw;
        box-sizing: border-box;
    }

    /* Hide the fake macOS/Windows window chrome */
    .app-header {
        display: none !important;
    }

    .app-body {
        flex-direction: column;
        height: auto;
    }

    /* Slider canvas on top */
    .app-canvas {
        order: 1;
        height: auto;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .app-slider {
        max-width: 100%;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        aspect-ratio: auto;
        height: 750px;
    }

    /* Thumbnails strip below the slider */
    .app-sidebar {
        order: 2;
        width: 100%;
        border-right: none;
        border-top: none;
        border-bottom: none;
        background: rgba(10, 10, 10, 0.6);
        padding: 0.75rem 1rem;
    }

    .sidebar-title {
        display: none;
    }

    .app-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        scrollbar-width: none;
        justify-content: center;
    }

    .app-thumbnails::-webkit-scrollbar {
        display: none;
    }

    /* Each thumb: image on top, tiny label below */
    .app-thumbnails .ba-thumb {
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
        width: 72px;
        gap: 4px;
        padding: 4px;
        opacity: 0.6;
        border-radius: 6px;
        border: 2px solid transparent;
        background: rgba(255, 255, 255, 0.03);
    }

    .app-thumbnails .ba-thumb.active {
        border-color: #1abc9c;
        opacity: 1;
        background: rgba(26, 188, 156, 0.07);
    }

    .thumb-wrapper {
        width: 64px;
        height: 44px;
        border-radius: 4px;
        border-color: transparent;
    }

    .app-thumbnails .ba-thumb.active .thumb-wrapper {
        border-color: transparent;
    }

    .thumb-label {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
        line-height: 1.2;
    }

    .app-thumbnails .ba-thumb.active .thumb-label {
        color: #1abc9c;
    }

    /* ---- SMART PRESETS ---- */
    .smart-presets-section {
        padding: 4rem 0;
        /* Must be visible so the flex carousel can scroll past section clip */
        overflow-x: visible;
        overflow-y: hidden;
    }

    .smart-presets-wrapper {
        flex-direction: column;
        gap: 2rem;
        overflow: visible;
    }

    .smart-presets-header {
        flex: none;
        width: 100%;
        position: relative;
        top: auto;
        padding: 0 2vw;
        text-align: center;
    }

    .smart-presets-header h2 {
        font-size: 1.85rem !important;
    }

    .smart-presets-header p {
        font-size: 0.95rem !important;
    }

    /* Horizontal scrollable carousel — break out of container */
    .smart-presets-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        /* Negative margin escapes 92% container; left pad aligns first card with container edge */
        margin-left: calc(-4vw);
        margin-right: calc(-4vw);
        padding: 0.5rem 4vw 1.25rem 4vw;
        width: 100vw;
        scrollbar-width: none;
        grid-template-columns: unset;
        box-sizing: border-box;
    }

    .smart-presets-grid::-webkit-scrollbar {
        display: none;
    }

    .sp-card {
        flex-shrink: 0;
        width: 230px;
        scroll-snap-align: start;
        padding: 1.4rem;
        gap: 0.75rem;
    }

    .sp-card-icon {
        width: 38px;
        height: 38px;
    }

    .sp-card-title {
        font-size: 1.3rem;
    }

    .sp-card-desc {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    /* ---- STACKED FEATURES (Features section) ---- */
    .stacked-features {
        padding: 4rem 0;
    }

    .stacked-header {
        padding: 0 2vw;
        margin-bottom: 2rem;
        text-align: center !important;
    }

    .stacked-title {
        font-size: 1.85rem !important;
        line-height: 1.15;
    }

    .stacked-subtitle {
        font-size: 0.95rem !important;
    }

    /* Compact card — keep position:sticky so stacking animation is preserved */
    .stacked-card {
        padding: 1.5rem 1.25rem;
        min-height: auto;
        margin-bottom: 1.75rem;
        gap: 0.85rem;
        border-radius: 16px;
    }

    /* Tighter sticky offsets to match reduced card size */
    .stacked-card:nth-child(1) {
        top: max(70px, 8vh);
    }

    .stacked-card:nth-child(2) {
        top: calc(max(70px, 8vh) + 14px);
    }

    .stacked-card:nth-child(3) {
        top: calc(max(70px, 8vh) + 28px);
    }

    .stacked-card:nth-child(4) {
        top: calc(max(70px, 8vh) + 42px);
    }

    .stacked-card:nth-child(5) {
        top: calc(max(70px, 8vh) + 56px);
    }

    .stacked-card:nth-child(6) {
        top: calc(max(70px, 8vh) + 70px);
    }

    .stacked-card:nth-child(7) {
        top: calc(max(70px, 8vh) + 84px);
    }

    .stacked-card:nth-child(8) {
        top: calc(max(70px, 8vh) + 98px);
    }

    .stacked-card:nth-child(9) {
        top: calc(max(70px, 8vh) + 112px);
    }

    .stacked-card-body {
        flex-direction: column;
        gap: 1rem;
    }

    .stacked-card-text,
    .stacked-card-image {
        width: 100%;
    }

    .stacked-card-image {
        max-height: none;
        overflow: visible;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stacked-card-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        border-radius: 10px;
    }

    .stacked-card-title {
        font-size: 1.3rem;
    }

    .stacked-card-desc {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .card-number {
        font-size: 5rem;
        top: 0.5rem;
        right: 1rem;
    }

    /* ---- BENTO FEATURES ---- */
    .bento-section {
        padding: 2rem 0 4rem;
    }

    .bento-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .bento-content,
    .bento-grid {
        flex: none;
        width: 100%;
    }

    .bento-content {
        text-align: center;
        padding: 0 2vw;
    }

    .bento-content h2 {
        font-size: 1.85rem;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: unset;
        gap: 1rem;
        padding: 0;
    }

    .bento-card.photo,
    .bento-card.video,
    .bento-card.web,
    .bento-card.prepress {
        grid-column: auto;
        grid-row: auto;
        min-height: 160px;
    }

    /* ---- TOOLKIT (Cinematic Showcase) ---- */
    .toolkit-section {
        padding: 4rem 0;
    }

    .toolkit-header {
        text-align: center !important;
        padding: 0 2vw;
    }

    .toolkit-header h2 {
        font-size: 1.85rem;
    }

    .toolkit-showcase {
        height: auto;
        min-height: 460px;
        width: 95vw;
    }

    /* ---- SOLUTIONS ---- */
    .solutions-section {
        padding: 4rem 0;
        overflow-x: visible;
    }

    .solutions-wrapper {
        flex-direction: column;
        gap: 2rem;
        overflow: visible;
    }

    .solutions-content {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 0 2vw;
    }

    .solutions-content h2 {
        font-size: 1.85rem !important;
    }

    .solutions-content p {
        font-size: 0.95rem;
    }

    /* 2×2 grid — clean cards without background images */
    .expanded-cards-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex: none;
        width: 100%;
        height: auto;
        overflow: visible;
        padding: 0;
        gap: 0.75rem;
        /* Reset any carousel values */
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    /* Override background images — solid dark glass cards */
    .expand-card.c-photo,
    .expand-card.c-video,
    .expand-card.c-design,
    .expand-card.c-game {
        background: rgba(16, 16, 22, 0.97) !important;
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    /* No colored border on mobile — clean dark cards */

    .expand-card {
        flex: none;
        width: auto;
        min-height: 210px;
        border-radius: 14px;
        justify-content: flex-start;
        overflow: hidden;
    }

    /* Content always visible, positioned normally */
    .ec-title-vertical {
        display: none;
    }

    .ec-content {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        opacity: 1 !important;
        transform: none !important;
        padding: 1.1rem 0.9rem;
        pointer-events: auto !important;
    }

    .ec-content h3 {
        font-size: 0.95rem;
        white-space: normal;
        margin-bottom: 0.35rem;
        line-height: 1.3;
    }

    .ec-content p {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
        color: #bbb;
    }

    .ec-content ul {
        gap: 5px;
    }

    .ec-content ul li {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.4;
        color: #999;
    }

    /* ---- PRICING ---- */
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-header {
        text-align: center !important;
        align-items: center !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 2vw;
    }

    .pricing-header h2 {
        font-size: 1.85rem !important;
    }

    .pricing-header p {
        font-size: 0.95rem !important;
    }

    .pricing-grid {
        width: 92vw;
        margin-top: 2.5rem;
        gap: 1.25rem;
    }

    /* Remove the "popular" scale pop-out on mobile */
    .pricing-card.card-purple {
        transform: none;
    }

    .pricing-card.card-purple:hover {
        transform: translateY(-5px);
    }

    /* ---- TRUST / TESTIMONIALS ---- */
    .trust-section {
        padding: 4rem 0;
    }

    .trust-header {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding: 0 2vw;
    }

    .trust-header h2 {
        font-size: 1.85rem !important;
        line-height: 1.2;
    }

    .trust-header p {
        font-size: 0.95rem !important;
    }

    .testimonials-slider-container {
        width: 100%;
        padding: 0 32px;
    }

    .testi-card {
        width: 240px;
        padding: 1.1rem 1rem;
        border-radius: 12px;
        gap: 0;
    }

    .testi-quote {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
        line-height: 1.5;
    }

    .testi-quote::before {
        font-size: 2.5rem;
        top: -12px;
        left: -6px;
    }

    .testi-author {
        gap: 0.6rem;
    }

    .testi-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .testi-name {
        font-size: 0.82rem;
    }

    .testi-role {
        font-size: 0.72rem;
    }

    /* ---- PC MARQUEE (Partners) ---- */
    .pc-marquee-section {
        padding: 3rem 0;
    }

    /* ---- FAQ ---- */
    .faq-section {
        padding: 4rem 0;
    }

    .faq-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .faq-content {
        position: relative;
        top: 0;
        text-align: center;
        padding: 0 2vw;
    }

    .faq-content h2 {
        font-size: 1.85rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .faq-content p {
        font-size: 0.95rem !important;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem 0;
        line-height: 1.4;
    }

    .faq-answer-inner {
        font-size: 0.88rem;
        line-height: 1.6;
        padding-bottom: 1.25rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .faq-icon::before {
        top: 8px;
        width: 18px;
        height: 2px;
    }

    .faq-icon::after {
        top: 0;
        left: 8px;
        width: 2px;
        height: 18px;
    }

    /* ---- BRANDS LOGO GRID — three-row opposing marquee ---- */
    .brands-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        overflow: hidden;
        padding: 1rem 0;
        grid-template-columns: unset;
        border: none !important;
        border-top: none !important;
        border-left: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    /* Each row becomes a flex marquee track */
    .brands-marquee-row {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        width: max-content;
        align-items: center;
    }

    .brands-row-fwd {
        animation: brands-scroll-fwd 20s linear infinite;
    }

    .brands-row-rev {
        animation: brands-scroll-rev 20s linear infinite;
    }

    /* Pause on hover */
    .brands-grid:hover .brands-marquee-row {
        animation-play-state: paused;
    }

    /* Show duplicate items in mobile marquee */
    .brand-loop-duplicate {
        display: flex;
    }

    /* Logo size: bigger, no grid borders/outline */
    .brands-marquee-row .brand-logo-container {
        width: 100px;
        height: 60px;
        flex-shrink: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    /* ---- FINAL CTA ---- */
    .cta-section {
        padding: 5rem 1.5rem 4rem;
    }

    .cta-title {
        font-size: 2rem !important;
        letter-spacing: -0.5px;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* ---- FOOTER ---- */
    .custom-footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-col-middle {
        display: none !important;
    }

    .footer-top {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
        align-items: center;
    }

    .footer-col-left,
    .footer-col-right {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 2rem;
    }

    .footer-huge-text {
        font-size: 18vw;
    }
}

/* ---- Extra-small phones ---- */
@media (max-width: 480px) {

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-actions .btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.25rem;
    }

    .narrative-header h2 {
        font-size: 1.85rem !important;
    }

    .footer-col-middle {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-card {
        width: 260px;
    }
}

/* Before/After App V2 Overrides */
.app-sidebar-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: none;
    padding-top: 0.5rem;
    background: transparent !important;
}

.app-thumbnails-v2 {
    display: flex;
    /* Need to ensure it flows nicely */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.app-thumbnails-v2 .ba-thumb {
    width: auto;
    height: auto;
    padding: 10px;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.app-thumbnails-v2 .ba-thumb.active {
    opacity: 1;
    background: transparent;
}

/* Let the outline glow sit purely on the image wrapper */
.app-thumbnails-v2 .thumb-wrapper {
    width: 140px;
    height: 90px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-thumbnails-v2 .ba-thumb.active .thumb-wrapper {
    border-color: #3498db;
    box-shadow: 0 0 16px rgba(52, 152, 219, 0.6);
}

.ba-description-area {
    margin-top: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-align: center;
}

.ba-desc-vs {
    margin: 0 1rem;
    color: #1abc9c;
    font-weight: bold;
}

.ba-desc-right {
    color: #fff;
}

/* App Header V2 */
.app-header-v2 {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent !important;
    border-bottom: none !important;
}

/* Make main before-after container transparent */
.before-after-app {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.app-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-title-v2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
}

.app-drag-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
}

/* Canvas changes for v2 */
.app-canvas {
    background: transparent;
    padding: 0;
}

.app-slider {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: auto;
    height: 730px;
}

/* Force image to cover aspect ratio issues from global styles */
.app-slider .ba-after,
.app-slider .ba-before {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1;
    transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-slider .ba-image-wrapper.is-swapping .ba-after,
.app-slider .ba-image-wrapper.is-swapping .ba-before {
    opacity: 0;
}

.app-label {
    background: #111;
    border-radius: 20px;
    padding: 6px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================================================= */
/* RESPONSIVE APP V2 RULES                                                   */
/* ========================================================================= */
@media (max-width: 768px) {

    /* Shrink the slider height so it fits on screens */
    .app-slider {
        height: 400px;
        border-radius: 8px;
    }

    /* Shrink header padding and font size */
    .app-header-v2 {
        padding: 1rem 1rem 0.5rem 1rem !important;
    }

    .app-title-v2 {
        font-size: 1.1rem;
    }

    /* Shrink the wrapper for thumbnails so they fit side-by-side easily */
    .app-thumbnails-v2 .thumb-wrapper {
        width: 80px;
        height: 50px;
    }

    .app-thumbnails-v2 .ba-thumb {
        padding: 6px;
    }

    /* Decrease text sizes on labels and descriptions */
    .app-label {
        font-size: 9px;
        padding: 4px 10px;
        bottom: 0.5rem;
    }

    .ba-description-area {
        font-size: 10px;
        margin-top: 0.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {

    /* For smaller phones, constrain height more */
    .app-slider {
        height: 300px;
    }

    .app-thumbnails-v2 .thumb-wrapper {
        width: 65px;
        height: 40px;
    }

    .app-thumbnails-v2 .ba-thumb {
        padding: 4px;
    }

    .app-header-left {
        gap: 0.5rem;
    }

    .app-drag-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
}

/* ==========================================================================
   FEATURE PAGES TEMPLATE
   ========================================================================== */

.feature-page-wrapper {
    background-color: #0a0a0a;
    color: #f1f1f1;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* 1. Hero Section */
.feature-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
    background: #050505;
}

.feature-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center 30%, rgba(26, 188, 156, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.feature-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center bottom;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to bottom, transparent 10%, black 50%, transparent 90%);
}

.feature-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-hero-content .hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.feature-breadcrumb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Space Mono', monospace;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-breadcrumb a:hover {
    color: #1abc9c;
}

.feature-breadcrumb .current {
    color: #1abc9c;
}

/* 2. General Sections */
.feature-section {
    padding: 100px 20px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
    border: 1px solid rgba(26, 188, 156, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 3. Layouts */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-col-layout.align-center {
    align-items: center;
}

.sticky-col {
    position: sticky;
    top: 120px;
}

/* Cards */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1abc9c;
}

.card-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Solution Points */
.point-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    width: 24px;
    height: 24px;
    color: #1abc9c;
    flex-shrink: 0;
    margin-top: 4px;
}

.point-list li strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.point-list li span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Browser/Image Mockup */
.browser-mockup {
    background: #111;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.solution-screenshot {
    width: 100%;
    display: block;
    height: auto;
}

/* Benefit Grid */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
}

.faq-question {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA */
.feature-cta {
    background: radial-gradient(circle at center, rgba(26, 188, 156, 0.05) 0%, transparent 70%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mt-4 {
    margin-top: 40px;
}

/* Responsive adjustments for Feature Pages */
@media (max-width: 992px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-col {
        position: relative;
        top: 0;
    }

    .feature-hero-content .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .feature-hero-content .hero-title {
        font-size: 2.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-heading {
        font-size: 2rem;
    }
}
