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

/* Sticky Hero Visual Parallax - REVERTED */
/* Replaced with Scroll Snap */
.hero-white {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* UGC Infinite Video Marquee */

.ugc-video-marquee-container {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    /* Fade masks on sides for smooth endless feel */
    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);
}

.ugc-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Ensure track is wide enough for all items */
    animation: marquee-scroll 40s linear infinite;
}

.ugc-video-item {
    width: 200px;
    /* Adjust based on desired size */
    flex-shrink: 0;
    aspect-ratio: 9 / 16;
    background-color: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

    100% {
        transform: translateX(-50%);
        /* Move by half the width (the first set of items) */
    }
}

@media (prefers-reduced-motion: reduce) {
    .ugc-marquee-track {
        animation: none;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .ugc-video-item {
        width: 140px;
    }

    .ugc-marquee-track {
        gap: 12px;
    }
}

/* UGC Process Section Styles */

.ugc-process-section {
    min-height: 100vh;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #fff;
    /* z-index: 5; REVERTED - No longer covering sticky hero */
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.ugc-process-section>.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Base Card Style */
.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 0 0 40px 0;
    /* Padding bottom for text */
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card:hover {
    transform: translateY(-5px);
}

/* Step 2 Highlight */
.process-card.highlight {
    border: 2px solid #5865F2;
    /* Fallback Blue if var missing, but we use Orange below */
    border-color: #FF6A3D;
    /* Brand Orange */
    box-shadow: 0 20px 40px rgba(255, 106, 61, 0.1);
    z-index: 2;
    /* Pop above others */
}

/* Visualization Container */
.visual-area {
    width: 100%;
    height: 220px;
    background: #FAFAFA;
    border-radius: 24px 24px 0 0;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.process-card.highlight .visual-area {
    background: #FFF5F0;
    /* Light Orange Tint */
}

/* Number Badge */
.step-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0F0F0;
    /* Default Gray */
    color: #000;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-card.highlight .step-badge {
    background: #FF6A3D;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 106, 61, 0.3);
}

/* Text Styles */
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 85%;
    margin: 0 auto;
}

/* Money Back Guarantee Banner */

/* --- CSS UI Visualizations --- */

/* Step 1: Brief Doc */
.ui-doc {
    width: 140px;
    height: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: rotate(-3deg);
}

.doc-header {
    width: 40%;
    height: 16px;
    background: #E0E0E0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.doc-line {
    width: 100%;
    height: 8px;
    background: #F0F0F0;
    border-radius: 4px;
}

.doc-line.short {
    width: 70%;
}

.doc-media-row {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.doc-media-item {
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 6px;
    opacity: 0.1;
}

/* Step 2: Profile Selection */
.ui-profiles-stack {
    position: relative;
    width: 180px;
    height: 140px;
}

.ui-profile-card {
    position: absolute;
    width: 100%;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
    border: 1px solid #eee;
}

.profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ddd;
}

.profile-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-line {
    width: 60%;
    height: 6px;
    background: #eee;
    border-radius: 2px;
}

.p-line.s {
    width: 40%;
}

/* Stack positioning */
.ui-profile-card.p1 {
    top: 0;
    transform: scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

.ui-profile-card.p2 {
    top: 25px;
    transform: scale(0.95);
    opacity: 0.8;
    z-index: 2;
}

.ui-profile-card.p3 {
    top: 55px;
    z-index: 3;
    border: 1px solid #ddd;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.check-badge {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 20px;
    height: 20px;
    background: #000;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Step 3: Gallery Grid */
.ui-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 160px;
    transform: rotate(3deg);
}

.ui-gallery-item {
    aspect-ratio: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #333;
    opacity: 0.05;
}

.play-icon-mini {
    width: 16px;
    height: 16px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: white;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 60px;
        /* More space for vertical stack */
    }

    .process-card {
        padding-bottom: 20px;
    }

    .process-card {
        padding-bottom: 20px;
    }
}

/* Meta Ads Banner Styles (Premium Redesign) */
.meta-ads-banner {
    position: relative;
    width: 100%;
    /* Gradient overlay + Background Image */
    background: linear-gradient(90deg, #000 30%, rgba(0, 0, 0, 0.4) 100%),
        url('../assets/feature_brandfluencer_laptop_figma.png');
    background-size: cover;
    background-position: center right;
    color: #fff;
    padding: 100px 0;
    /* Thicker padding */
    z-index: 10;
    margin-top: auto;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text-col {
    flex: 1;
    max-width: 600px;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.banner-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    /* Softer gray text */
    max-width: 90%;
}

.banner-action-col {
    flex-shrink: 0;
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 100px;
    /* Pill shape */
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-white-pill i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn-white-pill:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .meta-ads-banner {
        padding: 40px 0;
    }

    .banner-content {
        flex-direction: column;
        text-align: left;
        /* Align left usually looks better for blocks */
        align-items: flex-start;
        gap: 24px;
    }

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

    .banner-action-col {
        width: 100%;
    }

    .btn-white-pill {
        width: 100%;
        justify-content: center;
    }
}

/* Site Background Rhythm (aligned with digital marketing hero language) */
body.site-bg-rhythm {
    background: linear-gradient(180deg, #fbfbfd 0%, #f7f9fc 100%);
}

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

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

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

body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero)::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) {
    body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero) {
        background-color: rgba(255, 255, 255, 0.7) !important;
    }
}

/* Site Background Rhythm - Strong Override */
body.site-bg-rhythm,
body.site-bg-rhythm main {
    background: linear-gradient(180deg, #fbfbfd 0%, #f7f9fc 100%) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero) {
    position: relative;
    background-color: rgba(250, 252, 255, 0.72) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero):nth-of-type(even) {
    background-color: rgba(244, 249, 255, 0.70) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero):nth-of-type(odd) {
    background-color: rgba(244, 252, 248, 0.62) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero).bg-white,
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background: #fff"],
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background-color: #fff"] {
    background-color: rgba(248, 251, 255, 0.72) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero).bg-light,
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background: #f9f9f9"],
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background-color: #f9f9f9"] {
    background-color: rgba(241, 248, 255, 0.74) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)::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) {
    body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero) {
        background-color: rgba(250, 252, 255, 0.84) !important;
    }
}

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

/* Refactor-only classes replacing inline styles in ugc-studio.html */
.ugc-hero-section {
    min-height: 100vh;
}

.ugc-hero-content-offset {
    margin-top: 120px;
}

.ugc-hero-title {
    font-size: 56px;
    margin-bottom: 24px;
}

.ugc-hero-subtext {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.ugc-avatar-dark {
    background: #333;
}

.ugc-line-dark {
    background: #333;
}

.ugc-features-section {
    background-color: #fff;
}

.ugc-features-header {
    margin-bottom: 80px;
}

.ugc-features-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.ugc-features-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.ugc-mini-case-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ugc-mini-case-text {
    color: #555;
    font-size: 16px;
}

.ugc-login-logo {
    height: 48px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.ugc-login-title {
    color: #fff;
    margin-bottom: 8px;
}

.ugc-login-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

.ugc-login-btn {
    width: 100%;
    margin-top: 16px;
}

.ugc-login-error {
    color: #ff4545;
    font-size: 13px;
    margin-top: 12px;
    display: none;
}

.ugc-proof-unboxing-img {
    transform: scale(1.15);
    transform-origin: top center;
}

/* Hybrid scroll lock rules moved from ugc-studio.html inline style */
body.scroll-locked {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
    touch-action: none;
}

body.scroll-locked::-webkit-scrollbar {
    display: none;
}
