/* 
 * ------------------------------------------------------------------
 * DIGITAL MARKETING PAGE SPECIFIC STYLES
 * File: css/digital-marketing.locked.css
 * ------------------------------------------------------------------
 * This file contains styles ONLY used by digital-marketing.html.
 * Changes here will NOT affect other pages (index.html, etc.).
 * Likewise, do NOT add global styles meant for other pages here.
 * Maintain this isolation to prevent regressions across the site.
 * ------------------------------------------------------------------
 */

: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-main: var(--font-heading);

    /* 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;
}

/* 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);
}

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

.badge-pill {
    background: #eee;
    color: #333;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-desc {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        margin: 16px 0;
    }
}

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

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

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

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

/* Feature Content Cards (Ajans Farkı section) */
.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    text-align: left;
}

.feature-content-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;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.feature-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1.4;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-content-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

/* Subtle premium accent */
.card-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(to bottom, #111, transparent);
    opacity: 0.1;
}

/* Role Pill inside card */
.role-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 5px 12px 5px 6px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 2px;
}

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

.pill-text {
    font-size: 10px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    margin: 0;
    letter-spacing: -0.01em;
}

.card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (max-width: 992px) {
    .feature-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Animation Classes handled via fadeUp in style.css */

/* 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: #fff;
    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: var(--font-heading);
    color: var(--color-text-main);
}

/* White Hero Section - Redesigned Premium Background */
.hero-white {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Base color: Clean off-white */
    background-color: #FBFBFD;
    /* 
       Layer B: Soft Radial Gradients (CSS Implementation for perfect scaling) 
       - Blob 1 (Top Left): Soft Blue - Increased opacity
       - Blob 2 (Bottom Right): Mint Green - Increased opacity
       - Blob 3 (Top Right/Center): Soft Peach - Increased opacity
    */
    background-image:
        radial-gradient(circle at 15% 15%, rgba(64, 158, 255, 0.25) 0%, transparent 50%),
        /* 0.08 -> 0.25 */
        radial-gradient(circle at 85% 85%, rgba(79, 209, 197, 0.25) 0%, transparent 50%),
        /* 0.10 -> 0.25 */
        radial-gradient(circle at 70% 20%, rgba(255, 145, 110, 0.20) 0%, transparent 40%);
    /* 0.06 -> 0.20 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Layer C: Premium Noise Overlay */
.hero-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use the generated premium noise texture */
    background-image: url('../assets/noise.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    /* Small tile size for fine grain */
    opacity: 0.15;
    /* 0.03 -> 0.15 (Much more visible) */
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    /* Changed from overlay to multiply for better visibility on light bg */
}

.hero-white-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding-bottom: 120px;
    /* Space for marquee */
}

/* Large Center Logo */

/* Hero Tagline */
.hero-tagline {
    font-family: "Outfit", sans-serif;
    font-size: 2.5rem;
    /* Reduced from 4rem for minimalism */
    font-weight: 400;
    /* Clean look */
    line-height: 1.2;
    color: #444;
    /* Lightened from #000 */
    margin-bottom: 32px;
    /* Reduced spacing */
    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: #ffffff;
    z-index: 10;
}

.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 40s 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: 32px;
    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 */
}

.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: 1.5rem;
    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: "Outfit", sans-serif;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
    color: #111;
    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: 18px;
    line-height: 1.6;
    color: #555;
    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) {
}

@media (max-width: 768px) {

}

/* Digital Marketing Process Section */

/* Track Line (Background Arrow Path) */

/* Hero White Section (Fixed for Sticky Scroll) */
/* Hero White Section (Fixed for Sticky Scroll) */
.hero-white {
    width: 100%;
    /* min-height: 100vh;  Removed to allow 300vh override */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensure content starts at top */
    align-items: center;
    background-color: #fff;
    position: relative;
    z-index: 2;
    overflow: visible;
    /* FORCE visible for sticky to work */
}

/* Mobile Responsiveness */
@media (max-width: 900px) {

}

/* How It Works (Timeline) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: var(--color-border-light);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

/* Influencer Section */

/* Features Section (Tabs) */
.features-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.tab-link {
    padding-bottom: 20px;
    font-size: 18px;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.tab-link.active {
    color: var(--color-primary);
    font-weight: 700;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
}

.tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Scrollytelling Features Section */

.scrolly-container {
    display: flex;
    align-items: flex-start;
    padding: 0;
    /* Full width inside container */
    max-width: 1400px;
    /* Wider for this section */
    margin: 0 auto;
}

/* Sticky Image Column (Left) */

.feature-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 60px;
    /* Added padding to make it smaller/contained */
    opacity: 0;
    will-change: transform, opacity;
    /* transition: opacity 0.6s... removed for JS control */
    transform: scale(0.95);
    /* Start slightly smaller */
}

/* Scrollable Text Column (Right) */

.feature-step {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 40px 0;
    opacity: 1;
    /* Always fully visible, no fade */
    transition: none;
    transform: none !important;
}

/* Text - Always Visible, No Effects */
.feature-step h2,
.feature-step p,
.feature-step li {
    opacity: 1;
    transform: none !important;
    filter: none;
    transition: none;
    will-change: auto;
}

.step-content {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Fixed Step Number - Simple Text */
.step-number {
    position: relative;
    /* Reset from potential defaults */
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;

    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
}

.feature-step h2 {
    font-size: var(--text-6xl);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 500;
    /* Removed text-shadow per user request */
}

.feature-step p {
    font-size: 18px;
    color: #FFFFFF;
    font-family: "Outfit", sans-serif;
    /* Removed text-shadow */
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    /* Consistent width for all steps */
}

.highlight {
    display: table;
    /* Behave like block but width fits content */
    position: relative;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    color: #FFFFFF;
    /* Make it slightly bolder */
}

.highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 12px;
    /* Taller for brush effect */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.00025 7.00003C52.8806 3.63697 122.991 -0.244307 198.001 2.50003' stroke='%23FF6A3D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin-top: -2px;
    /* Pull it up closer */
    position: absolute;
    bottom: -6px;
    left: 0;
    z-index: -1;
}

/* Removed ::before pseudo element for bullets */

@media (max-width: 960px) {
    .scrolly-container {
        flex-direction: column-reverse;
    }

    .feature-step {
        min-height: auto;
        padding: 60px 24px;
        opacity: 1;
        /* Always visible on mobile */
    }
}

.chart-bar {
    width: 60px;
    background: linear-gradient(0deg, var(--color-primary) 0%, rgba(255, 106, 61, 0.4) 100%);
    border-radius: 4px 4px 0 0;
    transition: height 1.5s ease-out;
    height: 0;
    /* Animated with JS */
    position: relative;
}

/* Big CTA Section */
.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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/cta_collage_new.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Adjusted for better text legibility on the new image */
    animation: slowZoom 20s infinite alternate;
}

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

    to {
        transform: scale(1.1);
    }
}

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

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-logo-img {
    height: 32px;
}

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

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

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

.footer-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

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

/* Login Overlay */
#login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#login-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.login-box {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#access-password {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    /* Fix width overlap */
}

#access-password:focus {
    border-color: var(--color-primary);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #0d0d0d;
    position: relative;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 106, 61, 0.3);
}

.quote-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

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

.author-info h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    display: block;
}

/* Highlight Wrapper for Underline */

/* Updated Brush Stroke to fit the wrapper */

/* Scrollytelling Link */

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

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

/* =========================================
   Influencer Marketing Page Styles
   ========================================= */

/* Process Timeline Section */
.process-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
    /* Ensure content doesn't spill on small screens */
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    /* Slightly tighter padding */
    z-index: 2;
    background: #fff;
    /* White bg cover dashed line if needed */
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 3;
}

/* Absolute Line approach for reliability */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    /* Center of the number (60/2) */
    left: 5%;
    /* Start a bit in */
    width: 90%;
    /* Span most width */
    height: 2px;
    border-top: 2px dashed #e0e0e0;
    z-index: 1;
}

/* Hide individual connectors since we use one main line */
.step-connector {
    display: none;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 50px;
    /* Alignment helper */
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ROI Section */

/* Success Stories Section */

.carousel-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

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

    /* Process */
    .process-timeline {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .process-timeline::before {
        display: none;
        /* Hide line on mobile */
    }

    .process-step {
        margin-bottom: 40px;
        width: 100%;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    /* ROI */
    .roi-container {
        padding: 30px;
    }

    .roi-chart-header {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .chart-bars {
        gap: 10px;
    }

    .chart-bar-group {
        width: auto;
        flex: 1;
    }

    .chart-bar-group .bar {
        width: 40px;
    }

    .chart-bar-group .bar-label {
        font-size: 11px;
        bottom: -80px;
    }

    .roi-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 120px;
    }

    /* Stories */

}

/* Hero Statistics */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    opacity: 0;
    /* Hidden initially for animation */
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    transition-delay: 0.5s;
    width: 100%;
    /* Ensure full width for centering */
    flex-wrap: wrap;
    /* Allow wrapping on medium screens */
}

.hero-stats.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    /* Ensure matches brand font */
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* Feature Grid Section */

.features-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    flex-shrink: 0;
}

.feature-text-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.feature-text-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-2x2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-box {
        flex-direction: column;
        /* Optional: Stack icon on mobile? Or keep side-by-side? Reference image is wide. Let's keep side-by-side but ensure wrapping if text is long. */
        align-items: flex-start;
    }
}

/* Video Section */

/* Standard snap alignment for all full-screen sections */
.fs-section,
.snap-section,
.hero-white {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Combined Features & Video Styles */
.features-video-snap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9f9f9;
    padding: 100px 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.feature-grid-content {
    width: 100%;
}

.video-content {
    width: 100%;
}

/* Adjustments for fixed header with scroll snap */
/* Scroll snap can sometimes hide content behind fixed headers */
.snap-section {
    scroll-margin-top: 0;
}

@media (max-width: 768px) {
    .features-video-snap {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        scroll-snap-align: none;
        /* Disable snap on mobile if content is too long */
    }

    html {
        scroll-snap-type: none;
    }
}

/* Plyr Custom Theme Settings */
:root {
    --plyr-color-main: #FF6A3D;
    /* Brandfluencer Orange */
    --plyr-video-background: #000;
}

/* Video Player Container Styling */
.video-content {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure parent container doesn't squash the video */
.video-content .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /* Aspect Ratio Enforcement (16:9) */
    aspect-ratio: 16 / 9;

    /* Ensure it fills flex parent */
    flex: 0 0 100%;

    border: 1px solid rgba(255, 106, 61, 0.3);
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    /* Ensure video respects rounded corners */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 106, 61, 0.1);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 5;
    background: #000;
}

@media (max-height: 800px) {
    .video-container {
        /* Limit height so it fits in the snapped section */
        max-height: 60vh;
        max-width: 100%;
        /* Maintain aspect ratio */
        width: auto;
        aspect-ratio: 16 / 9;
        /* Override flex-basis/grow to allow width to shrink */
        flex: 0 1 auto;
    }
}

/* Isolate glassmorphism to a separate layer behind the video to preserve sharpness */
.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    /* Hint for sharper edge rendering if scaled */
}

.video-container:hover {
    border-color: rgba(255, 106, 61, 0.5);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 106, 61, 0.2);
}

/* New Sections CSS - UGC Studio Restructure */

/* 3. Features Section (Samimiyet Satışı) - Restored */
/* 3. Features Section (Samimiyet Satışı) - Restored */
.features-grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-new {
    flex: 0 0 30%;
    /* Strict 30% width to fit 3 per row with gaps */
    min-width: 300px;
    /* Prevent squishing */
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #eee;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card-new h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.feature-card-new p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .features-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Common Utilities */
.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
    line-height: 1.1;
}

.section-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

/* 4. KOBİ Problems Section */
.kobi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.kobi-card {
    background: #f9f9f9;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.kobi-card:hover {
    transform: translateY(-8px);
}

.kobi-icon {
    font-size: 32px;
    color: #000;
    margin-bottom: 24px;
    background: #fff;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.kobi-card p {
    font-size: 16px;
    color: #666;
}

.kobi-bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

/* 5. Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-box {
    border: 1px solid #eee;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: left;
}

.solution-step-num {
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 16px;
    display: block;
}

.solution-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 6. Packages Section */

/* 7. Sectors Section */

/* 8. Social Proof Section */
.proof-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.proof-item {
    aspect-ratio: 9/16;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
}

.mini-case {
    background: #f9f9f9;
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.case-results {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}

.case-metric {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-metric i {
    color: #27C76F;
}

/* 9. FAQ Section */

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* 10. Final CTA Section */

/* Missing Layout Wrappers for Content Studio */
.showcase-split-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.showcase-left,
.showcase-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.showcase-right {
    align-items: flex-end;
}

.showcase-text-content {
    max-width: 540px;
}

.showcase-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.showcase-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.showcase-img-box .img-a {
    position: relative;
    z-index: 1;
}

.showcase-img-box .img-b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
}

.showcase-img-box:hover .img-b {
    opacity: 1;
}

.showcase-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .showcase-split-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .showcase-left,
    .showcase-right {
        width: 100%;
        align-items: center;
    }

    .showcase-text-content {
        max-width: 100%;
    }
}

/* Phone Frame Styles */
.phone-frame {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    position: relative;
    border: 12px solid #111;
    overflow: hidden;
    /* Masks the scrolling content */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    z-index: 5;
}

/* iPhone Notch */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #111;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

/* Feed Track (the moving part) */
.feed-track {
    width: 100%;
    /* Height is determined by content */
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Snappy transition */
}

/* Feed Images */
.feed-track img {
    display: block;
    width: 320px;
    /* Exact frame width */
    height: 650px;
    /* Exact frame height */
    object-fit: cover;
    pointer-events: none;
}

/* Instagram Style CTA Overlay */
.insta-cta-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 15;
}

.insta-cta-overlay.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

.product-thumb {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 4px;
    background-image: url('../assets/product_showcase/1_a.png');
    /* Placeholder */
    background-size: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p-name {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.p-price {
    font-size: 13px;
    color: #666;
}

.btn-shop {
    background: #0095f6;
    /* Instagram Blue */
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

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

/* Problem Section (Kobi) - White Theme */
.kobi-section {
    padding: 100px 0;
    background: #FAFAFA;
    /* Light background for section contrast */
}

.kobi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.kobi-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    /* Soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
}

.kobi-icon {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.kobi-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.kobi-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Solution Section - Card Redesign (Reference Style) */
.solution-section {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.solution-box {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 30px 24px;
    /* Reduced horizontal padding */
    text-align: center;
    /* Centered text */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
    /* Ensure uniform height */
}

.solution-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.solution-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.solution-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
    /* Push badge to bottom */
}

/* New Badge Styling */
.solution-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
}

.badge-orange {
    background-color: #F8EBE6;
    color: #9C6B56;
}

.badge-blue {
    background-color: #E6EDF8;
    color: #56739C;
}

.badge-green {
    background-color: #E6F8EF;
    color: #4C8C70;
}

.badge-purple {
    background-color: #F0E6F8;
    color: #7D569C;
}

@media (max-width: 992px) {

    .kobi-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Solution Visuals - Image Based Styling */
.solution-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    object-fit: contain;
    z-index: 2;
}

/* Glow Aesthetic Gradients */
.glow-orange {
    background: radial-gradient(circle at 50% 30%, rgba(248, 235, 230, 0.4) 0%, rgba(255, 255, 255, 1) 70%);
}

.glow-blue {
    background: radial-gradient(circle at 50% 30%, rgba(230, 237, 248, 0.4) 0%, rgba(255, 255, 255, 1) 70%);
}

.glow-green {
    background: radial-gradient(circle at 50% 30%, rgba(230, 248, 239, 0.4) 0%, rgba(255, 255, 255, 1) 70%);
}

.glow-purple {
    background: radial-gradient(circle at 50% 30%, rgba(240, 230, 248, 0.4) 0%, rgba(255, 255, 255, 1) 70%);
}

/* Site Background Rhythm - Hero Tone Override */
body.site-bg-rhythm .hero-white,
body.site-bg-rhythm .hero-home,
body.site-bg-rhythm .hero-section,
body.site-bg-rhythm .section-hero {
    background-color: #fbfbfd !important;
    background-image:
        radial-gradient(72% 60% at 10% 12%, rgba(109, 165, 233, 0.10) 0%, rgba(109, 165, 233, 0) 72%),
        radial-gradient(68% 58% at 92% 88%, rgba(125, 191, 170, 0.09) 0%, rgba(125, 191, 170, 0) 72%),
        radial-gradient(58% 50% at 84% 14%, rgba(238, 184, 156, 0.06) 0%, rgba(238, 184, 156, 0) 74%) !important;
}

@media (max-width: 768px) {

    body.site-bg-rhythm .hero-white,
    body.site-bg-rhythm .hero-home,
    body.site-bg-rhythm .hero-section,
    body.site-bg-rhythm .section-hero {
        background-image:
            radial-gradient(86% 66% at -10% 6%, rgba(109, 165, 233, 0.09) 0%, rgba(109, 165, 233, 0) 74%),
            radial-gradient(84% 68% at 112% 98%, rgba(125, 191, 170, 0.08) 0%, rgba(125, 191, 170, 0) 74%),
            radial-gradient(68% 52% at 96% -10%, rgba(238, 184, 156, 0.05) 0%, rgba(238, 184, 156, 0) 76%) !important;
    }
}

/* Site Hero Typography Alignment */
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 .hero-white .hero-tagline,
body.site-bg-rhythm .hero-section .hero-tagline,
body.site-bg-rhythm .section-hero h1,
body.site-bg-rhythm .hero-white h1,
body.site-bg-rhythm .hero-section h1 {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.14 !important;
    color: var(--color-text-main) !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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 {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.38 !important;
    color: #6a6f76 !important;
    -webkit-font-smoothing: antialiased;
}

@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;
}

/* Big CTA - remove washed/blurred layer */
.big-cta-section {
    background: transparent !important;
}

.big-cta-bg {
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    animation: none !important;
    transform: none !important;
}

/* Big CTA - Influencer Marketing Style */
.big-cta-section {
    position: relative !important;
    background: #000 !important;
    color: #fff !important;
    overflow: hidden !important;
    /* Flex properties handled inline in HTML for layout */
}

.big-cta-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../assets/cta_collage_new.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0.3 !important;
    /* Match Influencer Marketing opacity */
    animation: slowZoom 20s infinite alternate !important;
    transform: scale(1);
}

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

    to {
        transform: scale(1.1);
    }
}

.big-cta-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    padding: 0 20px !important;
    color: #ffffff !important;
}

.big-cta-content h2,
.big-cta-content p {
    color: #ffffff !important;
}

/* 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;
}

/* --- Mobile Menu Styles (Copied from Global Style) --- */

/* 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;
    cursor: pointer;
    /* Added cursor pointer */
}

.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 !important;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.mobile-menu-panel.open {
    opacity: 1 !important;
    visibility: visible;
    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;
    display: block;
    /* Ensure full width clickable */
    padding: 8px 0;
    /* Add padding for touch targets */
}

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

@media (max-width: 768px) {
    .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 !important;
    }

    /* Ensure header pill is responsive on mobile */
    .header-pill {
        justify-content: center;
        /* Center content (logo) */
        padding-right: 48px;
        /* Make space for hamburger */
    }
}

/* Footer edge-to-edge layout */
.footer .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
}

.footer-grid,
.footer-bottom {
    width: 100%;
}

@media (max-width: 768px) {
    .footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* --- Hero Background Update --- */
/* Overriding global style.css hero-atmosphere for this specific page */
.hero-atmosphere {
    background: url('../assets/digital_marketing_hero_bg.png') no-repeat center center !important;
    background-size: cover !important;
}

/* Hide the CSS-generated gradients and noise from style.css */
.hero-atmosphere::before,
.hero-atmosphere::after,
.hero-atmosphere--b::before {
    display: none !important;
    content: none !important;
}

/* Ensure mobile unification respects the new background if needed */
@media (max-width: 768px) {
    .hero-atmosphere {
        background-position: center top !important;
    }
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    font-size: 14px;
    color: #555;
    flex-wrap: wrap;
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-section-centered {
    padding-top: 140px;
    text-align: center;
}

.hero-cta-btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.icon-check-green {
    color: #27C76F;
}

.section-light-gray-1 {
    background: #f9f9f9;
}

.section-light-gray-2 {
    background: #f5f5f5;
}

.section-desc-wide {
    max-width: 800px;
}

.badge-pill-strong {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
}

.wallet-icon {
    font-size: 48px;
    color: #27C76F;
    margin-bottom: 20px;
}

.budget-list {
    list-style: none;
    padding: 0;
    font-size: 20px;
    color: #333;
    line-height: 2;
}

.budget-check-icon {
    color: #27C76F;
    margin-right: 10px;
}

.budget-note {
    margin-top: 30px;
    color: #666;
}

@media (max-width: 768px) {
    .hero-section.hero-mobile-unified {
        min-height: 100svh !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-section.hero-mobile-unified .hero-mobile-content {
        min-height: calc(100svh - 88px) !important;
        padding-top: 86px !important;
        padding-bottom: 14px !important;
        justify-content: center !important;
        transform: translateY(-14px);
    }

    .hero-section.hero-mobile-unified .hero-cta-group {
        margin-bottom: 0 !important;
    }

    .hero-section.hero-mobile-unified .trust-row {
        margin-top: 18px !important;
    }

    .hero-visual-floating {
        display: none !important;
    }
}

.hero-section-centered {
    position: relative;
}

.hero-visual-floating {
    position: absolute;
    top: 452px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-100%);
    animation: fadeInVisual 1s ease-out 0.8s forwards;
}

@keyframes fadeInVisual {
    from {
        opacity: 0;
        transform: translateY(-90%);
    }

    to {
        opacity: 1;
        transform: translateY(-100%);
    }
}

.floating-left {
    right: 820px;
}

.floating-right {
    left: 820px;
}

.hero-visual-img {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.hero-visual-floating:hover .hero-visual-img {
    transform: scale(1.02);
}

.sales-increase-pill-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.sales-increase-pill {
    background: #9DE3C5;
    color: #006644;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(157, 227, 197, 0.4);
    display: inline-flex;
    align-items: center;
}
