:root {
    /* Colors */
    --color-primary: #FF6A3D;
    --color-primary-hover: #E85C30;
    --color-text-main: #000000;
    --color-text-secondary: #1A1A1A;
    --color-text-muted: #666666;
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F6F6F6;
    --color-border-light: #EDEDED;
    --color-border-hover: #CFCFCF;

    /* Typography */
    /* Typography */
    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-main: var(--font-heading);
    /* Legacy support */

    /* Font Sizes (Scale) */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 32px;
    --text-4xl: 42px;
    --text-5xl: 54px;
    --text-6xl: 64px;

    /* Spacing & Sizes */
    --container-width: 100%;
    --header-height: 70px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll just in case */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

html.snap-mandatory {
    scroll-snap-type: y mandatory;
    /* Enabled for fast scrolling */
    scroll-padding-top: 0;
    scroll-behavior: smooth;
    /* Removed height: 100% and overflow-y: scroll to prevent snap interference */
}

html.snap-scroll-enabled {
    scroll-snap-type: y proximity;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Removed height: 100% to ensure body can grow naturally with content and snap correctly */
}

.fs-section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 20px 40px;
    box-sizing: border-box;
}

/* Ensure content is centered in the remaining space */
.fs-section>.container {
    width: 100%;
    margin: 0 auto;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s ease;
}

.icon-inline-gap {
    margin-right: 4px;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    /* Increased padding */
}

.section {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    /* Reduced vertical padding (thinner) */
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    /* Fully rounded pill shape */
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    border: 2px solid #E86C44;
    color: #E86C44;
    box-shadow: 0 4px 15px rgba(232, 108, 68, 0.1);
}

.btn-primary:hover {
    background-color: #E86C44;
    color: #ffffff;
    transform: translateY(-1px);
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Floating Pill Header */
.header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}

.header-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    max-width: fit-content;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Scrolled Mode (Collapsed) */
body.scrolled-mode .header-pill {
    padding: 12px;
    gap: 0;
    border-radius: 50%;
    /* Create a perfect circle around the logo */
    width: 60px;
    height: 60px;
    justify-content: center;
}

/* Hide these elements when scrolled */
body.scrolled-mode .nav-links,
body.scrolled-mode .nav-divider,
body.scrolled-mode .header-actions {
    opacity: 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-40px);
    /* Slide left into logo */
}

/* Ensure smooth transition for disappearing elements */
.nav-links,
.nav-divider,
.header-actions {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 800px;
    /* Arbitrary large width */
    opacity: 1;
    transform: translateX(0);
}

.logo-img {
    height: 24px;
    width: auto;
    display: block;
}

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

.nav-link {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
    background: #f5f5f5;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: #e5e5e5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-signin {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-signin:hover {
    background: #f5f5f5;
}

/* Reusing .btn-black-pill but with header specific padding */
.header-pill .btn-black-pill {
    padding: 10px 24px;
    font-size: 14px;
}

/* Global Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
}

/* White Hero Section */
.hero-white {
    position: relative;
    /* Changed from fixed to allow natural scroll */
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content */
    padding-top: 0;
    /* Removed offset for better centering */
    overflow: hidden;
    /* transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); Remove transition effect as it's no longer used */
}

.hero-white-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding-top: 180px;
    /* Increased to shift content down from header */
    padding-bottom: 100px;
    /* Slightly less at bottom to balance visually */
}

/* Main Hero Title */
.hero-main-title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-main);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-main-subtitle {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
}

.hero-main-title .hero-main-line,
.hero-main-title .hero-main-subtitle {
    display: block;
    white-space: nowrap;
}

/* Prevent background scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Accessibility: respect reduced-motion preference without changing default visuals */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Large Center Logo */

/* Hero Tagline (h2) */
.hero-tagline {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* Typewriter override for black text context */
.typewriter-text {
    color: inherit;
    font-weight: inherit;
    background: transparent !important;
    padding: 0 !important;
}

.typewriter-text::after {
    color: #444;
    /* Match the tagline's cursor color */
}

/* Black CTA Button */
.btn-black {
    background: #000;
    color: #fff;
    padding: 12px 32px;
    /* Reduced from 16px 40px */
    font-size: 16px;
    /* Reduced from 18px */
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.hero-cta-label {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Marquee */
.hero-bottom-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    z-index: 10;
}

/* Keep homepage marquee at the same visual level as creator page */
.hero-home .hero-bottom-marquee {
    margin-top: auto;
    padding-bottom: 40px;
}

.creator-hero-marquee {
    margin-top: auto;
    padding-bottom: 40px;
}

.brand-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    /* Subtle logos */
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
}

/* Override existing logo inversion to make them dark/normal for white bg */
.logo-item img {
    height: 40px;
    width: auto;
    filter: brightness(0);
    /* Turn white logos to black */
    object-fit: contain;
}

/* Info Cards */
/* Marketing Statement Section */
.marketing-statement-section {
    min-height: 400vh;
    /* Increased to 400vh to prevent skipping */
    position: relative;
    z-index: 2;
    background-color: #fff;
    /* Removed flex centering here, moved to sticky container */
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Consistent capitalization inside the marketing statement block */
.marketing-statement-section .chaos-word,
.marketing-statement-section .marketing-statement-text,
.marketing-statement-section .text-highlight {
    text-transform: capitalize;
}

.sticky-marketing-content {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.chaos-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: auto;
    z-index: 1;
    /* Same as words */
    pointer-events: none;
    will-change: opacity, transform;
}

.chaos-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.chaos-line {
    stroke: #ccc;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    /* Dashed effect */
    opacity: 0;
    /* Will fade in via JS */
}

.chaos-words-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.chaos-word {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    color: #333;
    /* Darker for readability */
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    /* JS will handle initial state */
    will-change: transform, opacity;
}

/* Container for the final text */
.main-statement-container {
    opacity: 0;
    transform: scale(0.9);
    transition: none;
    /* Controlled via JS */
    position: relative;
    z-index: 2;
}

.marketing-statement-text {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    line-height: 1.3;
    font-weight: 400;
    color: var(--color-text-main);
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: #000;
    font-weight: 600;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.card {
    background: white;
    padding: 32px 24px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: left;
}

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

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    color: var(--color-text-secondary);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

/* Responsive Grid */
@media (max-width: 1024px) {}

/* Features Main Header - Plain Redesign */

/* Main Features Header */

/* Feature Cards Grid */
/* Alternating Features Section */

/* Feature Content */
.feature-content {
    flex: 0 1 480px;
    /* Allow shrinking but preferred width */
    max-width: 480px;
}

/* ... (skipping tags/typography unchanged) ... */

/* Feature Image */

.feature-content h3 {
    font-size: var(--text-4xl);
    /* Large bold title */
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.feature-content p {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* Black Pill Button */
.btn-black-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-black-pill:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* White Pill Button */
.btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
}

.btn-white-pill:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Feature Image */

/* Responsive */
@media (max-width: 1024px) {

    /* Feature Image */

    .feature-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {

    /* Keep Image Top for all on mobile */

    /* Fixed mobile logic: For even rows in HTML (Text Left), we need column-reverse to pull Img Top */

}

/* Underline removed as it's now handled by the mirrored rules above */

@media (max-width: 1024px) {

    .inhouse-header h2 {
        font-size: 28px;
    }

    .inhouse-header p {
        font-size: 16px;
    }

    .card-visual {
        justify-content: flex-start;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .big-cta-section .hero-title {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .big-cta-section .btn-white-pill,
    .big-cta-section .btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile header hamburger */
.hamburger {
    flex-direction: column;
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 999px;
}

.mobile-menu-panel {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.mobile-menu-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-inner {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    margin: 0 12px;
    padding: 16px;
    display: grid;
    gap: 12px;
}

.mobile-menu-inner a {
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .marketing-statement-text {
        word-break: break-word;
        overflow-wrap: anywhere;
        font-size: 24px;
        line-height: 1.3;
        padding: 0;
    }

    .main-statement-container {
        padding: 0 16px;
        max-width: 100%;
    }
}

/* Mobile header layout (stable) */
@media (max-width: 768px) {
    .header {
        top: 10px;
        padding: 0 10px;
    }

    .header-pill {
        width: 100%;
        max-width: 100%;
        position: relative;
        justify-content: center;
        padding: 10px 48px 10px 48px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .logo-img {
        height: 28px;
    }

    .hamburger {
        display: inline-flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 4px;
    }

    .hamburger span {
        width: 20px;
    }

    .nav-links,
    .nav-divider,
    .header-actions {
        display: none;
    }
}

/* Mobile cards layout */
@media (max-width: 768px) {

    .card-visual {
        justify-content: flex-start;
    }

}

/* Mobile fix: force hamburger + hide desktop nav */
@media (max-width: 768px) {

    .nav-links,
    .nav-divider,
    .header-actions {
        display: none !important;
    }

    .hamburger {
        display: inline-flex !important;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Mobile fix: ensure card visuals render as panels */
@media (max-width: 768px) {

    .card-visual {
        display: flex !important;
        justify-content: flex-start !important;
    }
}

/* mobile menu dark */

.mobile-menu-inner {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5) !important;
    border-radius: 16px !important;
    padding: 8px 0 !important;
}

.mobile-menu-inner a {
    color: #fff !important;
    padding: 14px 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.mobile-menu-inner a:first-child {
    border-top: none !important;
}

.mobile-menu-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 16px 18px 10px !important;
}

.mobile-menu-actions .nav-signin {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-align: center !important;
}

.mobile-menu-actions .btn-black {
    background: #fff !important;
    color: #111 !important;
}

/* Mobile header fix */

@media (max-width: 768px) {
    .header-pill {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    .hamburger {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        width: 32px !important;
        height: 32px !important;
        gap: 4px !important;
        flex-direction: column !important;
    }

    .hamburger span {
        width: 20px !important;
        height: 2px !important;
        background: #111 !important;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.1rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {}

@media (max-width: 768px) {
    .header-pill {
        align-items: center;
    }

    .hamburger {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .hamburger {
        top: calc(50% + 4px);
    }
}

/* Mobile: restore card look */
@media (max-width: 768px) {

    .team-strip {
        gap: 8px;
        justify-content: center;
    }

    .team-strip span {
        font-size: 11px;
        padding: 6px 10px;
    }

    .card-visual {
        justify-content: flex-start;
    }

}

/* Mobile: colored cards + visuals */
@media (max-width: 768px) {

    .card-visual {
        display: flex;
    }

}

/* Desktop: 2x2 colored cards with visuals */
@media (min-width: 769px) {

    .card-visual {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

}

/* Inhouse header formatting */
.inhouse-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px auto;
}

.inhouse-header h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.inhouse-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.team-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-strip-sub {
    text-align: center;
    margin: 10px 0 30px;
    color: #777;
}

/* Index cleanup: replaces inline styles in product intro block */
.inhouse-header-spacious {
    margin-bottom: 60px;
}

.inhouse-header-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.inhouse-header-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.team-strip-spacious {
    gap: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #888;
}

.team-strip-sub-spacious {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 60px;
}

/* Card colors + visuals */

/* Inhouse team strip + visuals reset */
.team-strip {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: #888;
}

.team-strip span {
    padding: 6px 12px;
    border: 1px solid #eee;
    border-radius: 999px;
    background: #fafafa;
}

@media (max-width: 768px) {}

/* Card content formatting */

/* Card footer layout: list then CTA */

.card-cta {
    display: flex;
    justify-content: flex-start;
}

.card-cta .card-link {
    font-weight: 600;
}

/* Inhouse Cards v3 (clean layout) */

.card-body {
    display: grid;
    gap: 14px;
}

.card-cta {
    display: flex;
    justify-content: flex-start;
}

.card-cta .card-link {
    font-weight: 600;
}

.card-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 768px) {}

/* Inhouse Cards v3 vertical spacing */

.card-body {
    gap: 18px;
}

/* Perf card cycle visual */

@media (max-width: 768px) {}

/* --- Product Showcase Section --- */
.product-showcase-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.card-warm {
    background: linear-gradient(135deg, rgba(255, 245, 240, 0.8) 0%, rgba(240, 247, 255, 0.8) 100%);
}

.card-cool {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.8) 0%, rgba(240, 255, 247, 0.8) 100%);
}

.role-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 12px;
}

.pill-icon {
    width: 24px;
    height: 24px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.pill-text {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    margin-bottom: 16px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features li {
    font-size: 14px;
    color: #444;
    padding-left: 20px;
    position: relative;
}

.card-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #aaa;
}

.card-cta-link {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.card-cta-link:hover {
    gap: 12px;
}

/* Visual Components */
.visual-container {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    min-height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Advertising Diagram */
.automation-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diagram-orbit {
    position: relative;
    width: 140px;
    height: 140px;
    border: 2px dashed #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-node {
    position: absolute;
    background: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.node-test {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.node-sales {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #7ee3b5;
    color: #fff;
}

.node-ads {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #8fb7ff;
    color: #fff;
}

.v-chip {
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 100px;
    font-size: 11px;
    color: #555;
}

.v-chip.solid {
    background: #111;
    color: #fff;
}

.v-chip.wide {
    width: 100%;
    text-align: center;
}

/* Creator Dashboard */
.creator-dashboard {
    align-items: stretch;
    padding: 20px;
}

.dashboard-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.list-item {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-info {
    font-size: 13px;
    color: #111;
}

/* Responsive */
@media (max-width: 968px) {
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* --- 4-Card Update --- */

.card-green {
    background: linear-gradient(135deg, rgba(240, 255, 245, 0.9) 0%, rgba(220, 255, 240, 0.9) 100%);
}

.card-purple {
    background: linear-gradient(135deg, rgba(248, 245, 255, 0.9) 0%, rgba(240, 240, 255, 0.9) 100%);
}

/* Green Checkmark List */
.check-list li::before {
    content: "";
    /* Clean old bullet */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310B981'%3E%3Cpath fill-rule='evenodd' d='M19.916 4.626a.75.75 0 01.208 1.04l-9 13.5a.75.75 0 01-1.154.114l-6-6a.75.75 0 011.06-1.06l5.353 5.353 8.493-12.739a.75.75 0 011.04-.208z' clip-rule='evenodd'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
}

.check-list li {
    padding-left: 28px;
    margin-bottom: 8px;
}

/* New Visual Panels */

/* Medya / UGC Panel */
.ugc-panel {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.panel-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #444;
}

.ugc-thumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.ugc-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}

.ugc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-chip.icon-check::before {
    content: "✓";
    font-weight: bold;
    color: #10B981;
    margin-right: 4px;
}

.visual-action-btn {
    width: 100%;
    background: linear-gradient(90deg, #475569 0%, #64748B 100%);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

/* Kreatif Panel */
.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.creative-item {
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.item-red {
    background: #fee2e2;
    color: #991b1b;
}

.item-blue {
    background: #dbeafe;
    color: #1e40af;
}

.item-purple {
    background: #f3e8ff;
    color: #6b21a8;
}

.item-orange {
    background: #ffedd5;
    color: #9a3412;
}

.c-icon {
    font-size: 18px;
}

/* Responsive adjustment for 4 cards */
/* Already handled by .product-grid definition? Check if it was 2 columns */
/* Ensuring 2 columns on tablet/desktop */

@media (min-width: 969px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* --- Refined Visual Styles --- */

/* UGC Panel Improvements */
.ugc-thumbs {
    justify-content: space-between;
}

.ugc-thumb {
    width: 30%;
    aspect-ratio: 1;
    height: auto;
    border-radius: 12px;
}

.v-chip.gray {
    background: #F3F4F6;
    color: #4B5563;
    border: 1px solid #E5E7EB;
}

/* Kreatif Panel Improvements */
.creative-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.creative-item {
    aspect-ratio: 1.4;
    /* Slightly rectangular */
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.2s;
    cursor: default;
}

.creative-item:hover {
    transform: translateY(-2px);
}

.creative-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Specific pastel colors from reference */
.item-red {
    background: #FFE4E6;
    color: #BE123C;
}

.item-blue {
    background: #DBEAFE;
    color: #1D4ED8;
}

.item-purple {
    background: #F3E8FF;
    color: #7E22CE;
}

.item-orange {
    background: #FFEDD5;
    color: #C2410C;
}

.c-icon svg {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

/* Button Refinement */
.visual-action-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.visual-action-btn:hover {
    transform: translateY(-1px);
}

.visual-action-btn.dark {
    background: #334155;
    color: white;
}

/* Fix for Partner Card Avatars */
.item-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.list-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 8px;
}

/* Refined Styles for chips */
.v-chip.icon-shield {
    background: #DCFCE7;
    /* Light green */
    color: #166534;
    display: inline-flex;
    align-items: center;
}

.v-chip.icon-shield svg {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure no conflict with previous icon-check rule */
.v-chip.icon-check::before {
    display: none;
}

/* --- Refined Card 1 Styles (Performance Marketing) --- */
.product-card.card-warm {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 1px solid #FFE4E6;
}

.product-card {
    position: relative;
    /* For absolute positioning of bottom-right CTA */
}

/* Bottom Right CTA */
.card-cta-link.bottom-right {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s;
    z-index: 10;
}

.card-cta-link.bottom-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Automation Diagram Refinements */
.automation-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 240px;
}

.diagram-orbit {
    width: 220px;
    height: 220px;
    border: none;
    /* We use SVG for the path */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 241, 242, 0) 70%);
}

.orbit-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin-slow 20s linear infinite;
    pointer-events: none;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-node {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* Specific Node Positioning (Relative to 220px container) */
/* Top: Mesaj */
.node-msg {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-msg {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFEDD5 0%, #FDBA74 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(253, 186, 116, 0.3);
}

/* Bottom: Satış */
.node-sales {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    /* Reset old */
}

.icon-sales {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #DCFCE7 0%, #86EFAC 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(134, 239, 172, 0.3);
}

/* Right: Test */
.node-test {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #4B5563;
    /* Text color */
}

.node-test span {
    background: #fff;
    border: 1px solid #E5E7EB;
    padding: 12px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Left: Reklam */
.node-ads {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
}

.node-ads span {
    background: linear-gradient(135deg, #DBEAFE 0%, #93C5FD 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(147, 197, 253, 0.3);
}

.orbit-node span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* Override previous specific node styles */

/* --- Fix for Diagram Background Clarity --- */

/* Remove the white radial gradient/background from the orbit container */
.diagram-orbit {
    background: none !important;
    border: none !important;
}

/* Ensure the card has the correct gradient (re-enforcing if needed) */
.product-card.card-warm {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
}

/* Ensure individual nodes don't carry unwanted white backgrounds unless specified */
.orbit-node {
    background: transparent;
    box-shadow: none;
}

/* Specific node tweaks for "Mesaj" and "Satış" to look like icons floating on card, not boxed */
/* Mesaj and Sales already have internal icon divs with gradients, so the wrapper should be clean. */

/* "Test" circle should remain white as per design, but ensure no extra shadow/border around wrapper */
.node-test span {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* "Reklam" box should remain colored gradient */

/* Ensure SVG is visible but transparent background */
.orbit-svg {
    background: transparent;
}

/* --- Exact Override for White Container Background on Card 1 --- */
.visual-container.automation-diagram {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    /* Remove padding if it affects layout spacing */
}

/* --- Standardize All Product Cards --- */

/* Transparent Visual Containers */
.visual-container.creator-dashboard,
.visual-container.ugc-panel,
.visual-container.creative-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

/* Ensure all cards have the rounded corners and relative positioning for CTA */
.product-card.card-cool,
.product-card.card-green,
.product-card.card-purple {
    position: relative;
    /* Maintain specific gradients but ensure they look good without white boxes */
}

/* Specific tweaks for individual panels to look good on transparent bg */

/* Partner Panel (Creator Dashboard) */
.dashboard-header {
    margin-bottom: 12px;
    font-weight: 600;
    color: #444;
}

.list-item {
    background: rgba(255, 255, 255, 0.6);
    /* Semi-transparent for legibility */
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
}

/* UGC Panel */

/* Creative Panel */
.creative-grid {
    gap: 12px;
}

.creative-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Action Buttons (like 'Reklamda Kullan' inside visuals) - make them floaty */
.visual-action-btn {
    background: #111;
    color: #fff;
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Fix Partner Card Header Visibility --- */
.dashboard-header {
    background: transparent;
    color: #111;
    /* Stronger contrast */
    padding: 4px 0 12px 0;
    /* Add top padding to prevent clipping */
    width: 100%;
    margin-bottom: 8px;
    /* Slightly reduce bottom margin */
    text-align: center;
    font-size: 14px;
    /* Ensure readable font size */
    font-weight: 700;
}

/* Ensure the list inside is spaced correctly */
.dashboard-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Fix Bottom Cards Layout Distortion --- */

/* Ensure visual containers don't stretch too wide */
.visual-container {
    max-width: 320px !important;
    margin: 0 auto;
    width: 100%;
}

/* Fix specific panels */
.ugc-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.ugc-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 260px;
    /* Constrain the grid */
    margin: 0 auto;
}

.creative-item {
    aspect-ratio: 1;
    /* Keep them square */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

/* Fix CTA Button Overlap */
.card-visual {
    padding-bottom: 60px !important;
    /* Reserve space for absolute button */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensure content starts at top */
}

/* Chaos Animation Desktop Resize */
@media (min-width: 969px) {
    .marketing-statement-section .chaos-word {
        font-size: 1.35rem !important;
        /* Increased from 0.9rem */
    }

    .chaos-center-logo {
        width: 100px !important;
        /* Increased from 64px */
    }
}

/* Increase Final Statement Text Size on Desktop */
@media (min-width: 969px) {
    .marketing-statement-text {
        font-size: 4.2rem !important;
        /* Increased from 2.8rem */
        max-width: 1100px;
        /* Allow more width for larger text */
    }
}

/* Testimonials Section Layout Fix */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 0 60px 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.quote-icon {
    color: #ffdce5;
    margin-bottom: 20px;
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 24px;
    min-height: 80px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

/* Index cleanup: replaces inline testimonial styles */
.testimonials-title {
    color: #fff;
    font-size: 36px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.avatar-orange {
    background-color: #FF6A3D;
}

.avatar-blue {
    background-color: #4A90E2;
}

.avatar-mint-dark {
    background-color: #50E3C2;
    color: #000;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Ensure testimonial heading copy is readable */
.testimonials-section {
    background: #0b0b0d !important;
}

.testimonials-section .hero-title {
    color: #ffffff !important;
}

.testimonials-section .hero-text {
    color: rgba(255, 255, 255, 0.78) !important;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
}

.author-info span {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix Mobile Text Overflow */
@media (max-width: 480px) {
    .main-statement-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .marketing-statement-text {
        font-size: 1.15rem !important;
        /* Slightly smaller to ensure fit */
        line-height: 1.4 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        /* Force fit to viewport */
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: normal !important;
        /* Natural break */
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    .marketing-statement-text span {
        white-space: normal !important;
        display: inline !important;
    }

    .hero-main-title {
        font-size: 2rem !important;
        overflow-wrap: break-word;
        /* Ensure title wraps too */
    }

    .hero-tagline {
        font-size: 1.1rem !important;
        padding: 0 10px;
    }
}

/* --- Footer & Big CTA Section (Imported from UGC Studio) --- */

/* Global Footer - Influencer Marketing Style */
.footer {
    background: #000 !important;
    color: #fff !important;
    padding: 80px 0 40px !important;
    border-top: 1px solid #222 !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
}

.footer-col h4 {
    font-size: 16px !important;
    margin-bottom: 24px !important;
    color: white !important;
}

.footer-link {
    display: block !important;
    color: #999 !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
}

.footer-link:hover {
    color: #FF6A3D !important;
    /* Primary Brand Color */
    text-decoration: underline !important;
}

.footer-desc {
    color: #999 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: 300px !important;
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    color: #666 !important;
    font-size: 13px !important;
}

/* Big CTA - Home Collage Dark Fix */
/* CTA & Button Styles from Influencer Marketing */
.btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000 !important;
    font-size: 15px;
    /* Matches source CSS */
    font-weight: 600;
    padding: 14px 32px;
    /* Matches source CSS, smaller than inline 20px 48px */
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-white-pill:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    color: #000 !important;
}

.big-cta-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: #000;
    overflow: hidden;
}

.big-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/cta_collage_new.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Keeping 0.3 as confirmed working for 'white screen' fix */
    animation: slowZoom 20s infinite alternate;
}

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

    to {
        transform: scale(1.1);
    }
}

.big-cta-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.big-cta-content h2 {
    font-size: 48px !important;
    /* Enforce 48px */
    margin-bottom: 32px;
    color: white !important;
    line-height: 1.2;
}

@media (max-width: 768px) {

    body.site-bg-rhythm .hero-white .hero-main-title,
    body.site-bg-rhythm .hero-white .hero-title,
    body.site-bg-rhythm .hero-section .hero-title,
    body.site-bg-rhythm .section-hero h1,
    body.site-bg-rhythm .hero-white h1,
    body.site-bg-rhythm .hero-section h1 {
        letter-spacing: -0.015em !important;
        line-height: 1.16 !important;
    }

    body.site-bg-rhythm .hero-white .hero-tagline,
    body.site-bg-rhythm .hero-white .hero-desc,
    body.site-bg-rhythm .hero-section .hero-desc,
    body.site-bg-rhythm .hero-section .hero-subtitle,
    body.site-bg-rhythm .section-hero p,
    body.site-bg-rhythm .hero-white p {
        line-height: 1.42 !important;
    }
}

/* Site Hero Typography - Final Weight Lock */
body.site-bg-rhythm .hero-white h1.hero-title,
body.site-bg-rhythm .hero-white h1.hero-tagline,
body.site-bg-rhythm .hero-section h1.hero-title,
body.site-bg-rhythm .hero-section h1.hero-tagline,
body.site-bg-rhythm .hero-white .hero-main-title,
body.site-bg-rhythm .section-hero h1 {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    font-variation-settings: "wght" 500 !important;
    font-synthesis: none;
}

/* Shared Colorful Background Styles */
.site-bg-colorful {
    background: linear-gradient(180deg, #fbfbfd 0%, #f7f9fc 100%);
}

.site-bg-colorful main>section.snap-section:not(.hero-section) {
    position: relative;
    background-color: rgba(255, 255, 255, 0.58) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.site-bg-colorful main>section.snap-section:not(.hero-section):nth-of-type(even) {
    background-color: rgba(245, 249, 255, 0.55) !important;
}

.site-bg-colorful main>section.snap-section:not(.hero-section):nth-of-type(odd) {
    background-color: rgba(244, 252, 248, 0.46) !important;
}

.site-bg-colorful main>section.snap-section:not(.hero-section)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.08) 50%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .site-bg-colorful main>section.snap-section:not(.hero-section) {
        background-color: rgba(255, 255, 255, 0.7) !important;
    }
}

/* Hero Atmosphere */
.hero-atmosphere {
    position: relative;
    isolation: isolate;
    background-color: #FBFBFD !important;
    /* Force override if mixed with hero-white */
    overflow: hidden;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Layer 2 - Variant A (2 blobs) */

/* Layer 2 - Variant B (3 blobs) */
.hero-atmosphere--b::before {
    background-image:
        radial-gradient(78% 68% at 7% 15%, rgba(109, 165, 233, 0.11) 0%, rgba(109, 165, 233, 0) 72%),
        radial-gradient(72% 66% at 93% 86%, rgba(125, 191, 170, 0.10) 0%, rgba(125, 191, 170, 0) 72%),
        radial-gradient(62% 54% at 84% 12%, rgba(238, 184, 156, 0.07) 0%, rgba(238, 184, 156, 0) 74%);
    z-index: 0;
}

/* Layer 3 - Fine monochrome grain */
.hero-atmosphere::after {
    opacity: 0.028;
    mix-blend-mode: multiply;
    background-repeat: repeat;
    background-size: 180px 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    z-index: 0;
}

.hero-atmosphere>.container,
.hero-atmosphere>.hero-white-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {

    .hero-atmosphere--b::before {
        background-image:
            radial-gradient(88% 70% at -14% 2%, rgba(109, 165, 233, 0.10) 0%, rgba(109, 165, 233, 0) 74%),
            radial-gradient(86% 72% at 114% 98%, rgba(125, 191, 170, 0.09) 0%, rgba(125, 191, 170, 0) 74%),
            radial-gradient(72% 58% at 96% -8%, rgba(238, 184, 156, 0.06) 0%, rgba(238, 184, 156, 0) 76%);
    }

    .hero-atmosphere::after {
        opacity: 0.026;
    }
}

/* --- Global Typography Standards --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Navigation Dropdown / Mega Menu Styles */
.nav-item-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
}

.nav-chevron {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-item-dropdown-wrapper:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    /* Directly below the nav item */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 600px;
    /* Mega menu width */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Premium shadow & border */
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

/* Hover State */
.nav-item-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Grid */
.nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columns */
    gap: 8px;
}

/* Dropdown Items */
.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.nav-dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.nav-dropdown-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.nav-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown-title {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

.nav-dropdown-desc {
    font-size: 13px;
    color: #86868b;
    line-height: 1.4;
}

/* Mobile Fix */
@media (max-width: 900px) {
    .nav-item-dropdown-wrapper {
        display: none !important;
    }
}

/* Dropdown Header Block */
.nav-dropdown-header-block {
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 12px;
}

.nav-dropdown-header-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.nav-dropdown-header-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 90%;
}

.nav-dropdown-header-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.nav-dropdown-header-link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* Navigation Separator */
.nav-separator {
    width: 1px;
    height: 24px;
    background-color: #e5e5e5;
    margin: 0 12px;
}
