.feature-step h2 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-family: "Outfit", sans-serif;
    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,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
    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);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    gap: 40px;
}

/* Combined Section Spacing Overrides */
.combined-process-campaign .process-timeline {
    margin: 20px auto 30px;
    gap: 20px;
}

.combined-process-campaign .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
}

.combined-process-campaign .step-connector {
    margin-top: 20px;
}

.combined-process-campaign .process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.combined-process-campaign .process-step p {
    font-size: 13px;
    line-height: 1.4;
}

.combined-process-campaign .section-title {
    font-size: 28px;
    margin-bottom: 10px;
}

@media (max-width: 1400px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .process-timeline {
        margin-top: 30px;
        gap: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .campaign-grid {
        gap: 16px;
    }

    .campaign-card {
        padding: 20px;
    }
}

@media (max-height: 850px) {
    .fs-section {
        padding: 80px 0 40px !important;
    }

    .combined-process-campaign .process-wrapper {
        margin-bottom: 50px !important;
    }

    .combined-process-campaign .section-title {
        font-size: 24px;
    }

    .process-timeline {
        margin-top: 20px;
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .campaign-grid {
        gap: 12px;
    }

    .campaign-card {
        padding: 15px;
    }

    .campaign-card h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .campaign-card p {
        font-size: 11.5px;
        line-height: 1.3;
    }

    .card-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: #FF6A3D;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

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

/* Connector Line */
.step-connector {
    flex-grow: 1;
    height: 2px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
    margin-top: 30px;
    /* Align with center of circle (60px/2) */
    opacity: 0.5;
}

/* Campaign Grid Styles */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.combined-process-campaign .campaign-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
}

.combined-process-campaign .campaign-card {
    padding: 20px;
    border-radius: 16px;
}

.combined-process-campaign .card-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
}

.combined-process-campaign .campaign-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.combined-process-campaign .campaign-card p {
    font-size: 13px;
    line-height: 1.4;
}

.campaign-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 106, 61, 0.3);
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
}

/* Specific Backgrounds */
.instagram-bg {
    background: #FFF0EB;
    /* Light Orange/Pink tint */
    color: #E1306C;
}

.tiktok-bg {
    background: #F0F0F0;
    color: #000;
}

.video-bg {
    background: #EBF8FF;
    /* Light Blue tint */
    color: #FF6A3D;
    /* Brand Orange for generic video */
}

.user-bg {
    background: #FFF5F0;
    color: #FF6A3D;
}

/* Icons styling */
.card-icon-wrapper i {
    font-size: 22px;
}

.card-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

/* Badge Styling */
.card-icon-wrapper.has-badge {
    position: relative;
}

.badge-ads {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #FF6A3D;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255, 106, 61, 0.3);
    border: 2px solid #fff;
}

.campaign-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.campaign-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .step-connector {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .process-step {
        width: 100%;
    }

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

    .campaign-card {
        padding: 30px;
    }
}

/* ROI Section Refinement */
.roi-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.roi-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.roi-chart-box {
    background: #fff;
    border-radius: 32px;
    padding: 60px 60px 100px;
    /* Adjusted padding to match reference */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 60px;
    border: 1px solid #f0f0f0;
}

.roi-chart-header {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}

.roi-chart-visual {
    height: 400px;
    position: relative;
    margin-top: 80px;
    /* Added spacing at top for bar values */
    margin-bottom: 120px;
    /* Space for labels below */
    padding-left: 100px;
    /* Increased space for Y axis labels */
}

/* Y-Axis Title */
.y-axis-title {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 11px;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Grid Lines */
.grid-lines-bg {
    position: absolute;
    top: 0;
    left: 100px;
    /* Match increased visual padding */
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    width: 100%;
    height: 0;
    border-top: 1px dashed #e5e5e5;
    position: relative;
}

.grid-line.zero {
    border-top: 1.5px solid #666;
    opacity: 0.8;
}

.grid-line::before {
    content: attr(data-label);
    position: absolute;
    left: -45px;
    top: -8px;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    width: 40px;
    text-align: right;
}

/* Chart Bars Container */
.chart-bars {
    position: absolute;
    top: 0;
    left: 100px;
    /* Match increased visual padding */
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    z-index: 2;
}

.chart-bar-group {
    width: 140px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Bar Sizing & Placement */
.bar {
    width: 110px;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chart-bar-group.negative .bar {
    top: 50%;
    /* height is set via inline style as % */
}

.chart-bar-group.positive .bar {
    bottom: 50%;
    /* height is set via inline style as % */
}

/* Bar Colors & Gradients - To match high-fidelity reference */
.bar-orange {
    background: linear-gradient(180deg, #ff6b3d 0%, rgba(255, 107, 61, 0.2) 100%);
}

.bar-orange-light {
    background: linear-gradient(180deg, #ff8a65 0%, rgba(255, 138, 101, 0.2) 100%);
}

.bar-blue-light {
    background: linear-gradient(0deg, #b3e5fc 100%, #29b6f6 0%);
    /* Inverted for fade to top? No, image has solid at bottom axis */
}

/* Re-check image: Blue bars are solid blue at the axis and fade UP to white. Orange fade DOWN to white. */
.bar-blue {
    background: linear-gradient(0deg, rgba(79, 195, 247, 0.1) 0%, #4fc3f7 100%);
}

.bar-blue-light {
    background: linear-gradient(0deg, rgba(129, 212, 250, 0.1) 0%, #81d4fa 100%);
}

/* ROI Chart Specific Gradients from Image */
.chart-bar-group.negative .bar {
    background: linear-gradient(180deg, #ff643b 0%, rgba(255, 100, 59, 0) 100%);
    border-radius: 0 0 4px 4px;
}

.chart-bar-group.positive .bar {
    background: linear-gradient(0deg, #4ea7cc 0%, rgba(78, 167, 204, 0) 100%);
    border-radius: 4px 4px 0 0;
}

/* Transparent variants matching reference */
.chart-bar-group.negative:nth-child(2) .bar {
    background: linear-gradient(180deg, rgba(255, 100, 59, 0.4) 0%, rgba(255, 100, 59, 0) 100%);
}

.chart-bar-group.positive:nth-child(3) .bar {
    background: linear-gradient(0deg, rgba(78, 167, 204, 0.4) 0%, rgba(78, 167, 204, 0) 100%);
}

/* Percentage Values - Aligned in a row at the top */
.bar-value {
    position: absolute;
    top: -45px;
    /* Aligned in one row at the top */
    font-weight: 700;
    font-size: 16px;
    color: #4ea7cc;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.chart-bar-group.negative .bar-value {
    color: #ff643b;
    opacity: 0.6;
    /* Matched from reference */
}

/* Lighter value nodes */
.chart-bar-group.negative:nth-child(2) .bar-value,
.chart-bar-group.positive:nth-child(3) .bar-value {
    opacity: 0.4;
}

/* Category Labels - Below the chart */
.bar-label {
    position: absolute;
    top: calc(100% + 80px);
    text-align: center;
    width: 100%;
    font-weight: 800;
    font-size: 13px;
    color: #111;
    line-height: 1.25;
}

.bar-label small {
    display: block;
    color: #aaa;
    font-weight: 500;
    font-size: 11px;
    margin-top: 8px;
    letter-spacing: 0.2px;
}

/* Feature Cards Grid */
.roi-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.roi-feature-card {
    background: #f3f3f3;
    border: 1px solid #ececec;
    padding: 50px 40px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-feature-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-color: #eee;
}

.roi-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.roi-feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .y-axis-title {
        display: none;
    }

    .grid-lines-bg,
    .chart-bars {
        left: 40px;
    }

    .grid-line::before {
        left: -35px;
        width: 30px;
        font-size: 10px;
    }

    .bar {
        width: 70px;
    }

    .bar-value {
        font-size: 14px;
        top: -30px;
    }

    .bar-label {
        font-size: 12px;
    }

    .roi-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Example Content Carousel Section */
.example-content-section {
    padding: 100px 0;
    overflow: hidden;
}

.content-carousel {
    display: flex;
    display: flex;
    padding: 60px 0;
    /* Increased to 60px to prevent cropping of zoomed center video & button */
    width: 100%;
    max-width: 95vw;
    /* Increased from 1346px to fill large screens */
    margin: 0 auto;
    overflow: hidden;
    /* No scrolling needed for exactly 5 items */
}

.content-carousel::-webkit-scrollbar {
    display: none;
}

.content-card {
    flex: 0 0 auto;
    width: 20%;
    /* Exactly 5 items */
    padding: 0 10px;
    /* 10px + 10px = 20px base gap */
    /* 10px left + 10px right for uniform spacing */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    /* Increased to 32px to separate button further */
    /* Space for the button */

    /* Default State: Medium size (Neighbors) */
    transform: scale(0.95) !important;
    /* Bumped to 0.95 (Large-Medium) */
    filter: grayscale(100%);
    opacity: 0.8;
    /* Slightly visible */
    /* Smoother transition/filter for animation */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease, opacity 0.6s ease;
    z-index: 1;
    will-change: transform, filter;
    /* Optimization hint */
}

/* Highlight the Center (3rd) Video */
/* Highlight the Center Video (Class-based for animation control) */
.content-card.active-highlight {
    transform: scale(1.1) !important;
    /* 1.1 Center */
    filter: grayscale(0%);
    opacity: 1;
    z-index: 10;
    background: none;
    box-shadow: none;
}

/* Only show button for active video */
.content-card.active-highlight .action-btn {
    opacity: 1;
    pointer-events: auto;
}

/* Edge Videos (Far Left/Right) for 3D Depth */
/* Edge Videos (Far Left) - Pull Right slightly to close gap to ~20px */
.content-card.pos-edge-left {
    transform: scale(0.8) translateX(12%) !important;
    /* Reduced from 25% to prevent overlap */
    opacity: 0.6;
    z-index: 0;
}

/* Edge Videos (Far Right) - Pull Left slightly to close gap to ~20px */
.content-card.pos-edge-right {
    transform: scale(0.8) translateX(-12%) !important;
    /* Reduced from 25% to prevent overlap */
    opacity: 0.6;
    z-index: 0;
}

.card-video-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Vertical Video Ratio */
    background-color: transparent;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    left: 20px;
}

.carousel-nav-btn.next {
    right: 20px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff !important;
    border: 1px solid #cccccc;
    border-radius: 100px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
    /* Non-clickable by default */
}

.action-btn:hover {
    background: #f8f9fa !important;
    border-color: #bbb;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.action-btn:hover svg {
    transform: translateX(2px);
    transform: rotate(0deg);
    /* ensuring no rotation from old styles */
}

.carousel-nav-btn {
    position: absolute;
    top: 55%;
    /* Vertically centered relative to the cards (adjust as needed) */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    left: 40px;
}

.carousel-nav-btn.next {
    right: 40px;
}

/* Hide navigation on touch devices as swipes are easier */
@media (hover: none) and (pointer: coarse) {
    .carousel-nav-btn {
        display: none;
    }
}

/* FIX: Constrain container width to prevent it from expanding with carousel */
.example-content-section .container-fluid {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    /* Ensure content stays within */
    position: relative;
    /* Context for absolute buttons */
}

/* Ensure centering doesn't break layout */
.example-content-section.fs-section {
    justify-content: center;
    /* Keep vertical centering */
    align-items: stretch;
    /* Stretch horizontally instead of center */
}

/* Adjust padding and alignment to move title higher like other sections */
.example-content-section.fs-section {
    justify-content: flex-start !important;
    /* Keep start to control top offset manually */
    padding-top: 22vh !important;
    /* Push visuals down to be vertically centered on screen */
    display: flex;
    flex-direction: column;
}

/* Adjust title margin to balance the centering */
.example-content-section .section-title {
    margin-bottom: 60px !important;
    margin-top: auto;
    /* Push title down a bit if needed, or leave natural */

}

/* Ensure navigation buttons stay centered relative to the cards even with more top space */
.carousel-nav-btn {
    top: 60% !important;
    /* Adjusted from 55% to account for more spacing above */
}

/* Increase horizontal padding so the first/last cards don't touch the screen edges */
.content-carousel {
    padding-left: 10% !important;
    padding-right: 10% !important;
}

/* Adjust navigation buttons to stay outside the padded content range if possible, or just look better */
.carousel-nav-btn.prev {
    left: 2% !important;
}

.carousel-nav-btn.next {
    right: 2% !important;
}

/* FIX: Ensure scroll snapping respects the container's padding */
.content-carousel {
    scroll-padding-left: 10% !important;
    scroll-padding-right: 10% !important;
}

/* Adjust button positions slightly more outside to avoid overlapping content */
.carousel-nav-btn.prev {
    left: 20px !important;
}

.carousel-nav-btn.next {
    right: 20px !important;
}

/* Ensure first/last cards have visible padding on mobile/touch as well */
.content-card:first-child {
    margin-left: 0;
    /* Already handled by carousel padding */
}

/* Refine side padding and arrow positions to close the gap */
/* Padding removed to allow center alignment to work naturally */

.carousel-nav-btn.prev {
    left: 40px !important;
}

.carousel-nav-btn.next {
    right: 40px !important;
}

/* 3D Carousel Styles */
.content-carousel {
    perspective: 1000px;
    /* Add depth for 3D effect */
    align-items: center;
    /* Center items vertically */
}

.content-card {
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    transform: scale(0.9);
    /* Default scaled down state */
    opacity: 0.8;
    filter: grayscale(100%);
    /* Grayscale for inactive items */
}

/* Active card state (center) */

/* Ensure video covers the card area */
.card-video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    /* Match card border radius */
}

/* Hide play icon if it existed, though removed in HTML */

/* Example Content Overlay Styles */
.card-video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overlay-logo {
    max-width: 60%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make white */
    opacity: 0.9;
}

/* Hide overlay on active card */
.content-card.active-highlight .video-overlay {
    opacity: 0;
}

/* Update section to allow flush bottom */
.example-content-section {
    padding-bottom: 0 !important;
}

/* Play Button Overlay Styles */
.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    /* Slight dim when paused */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hide overlay when playing */
.video-container.playing .play-btn-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-icon i {
    font-size: 32px;
    color: #fff;
    margin-left: 4px;
    /* Optical center adjustment for triangle */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.play-btn-overlay:hover .play-icon {
    transform: scale(1.1);
    background: rgba(255, 106, 61, 0.9);
    /* Brand orange */
    border-color: rgba(255, 106, 61, 1);
    box-shadow: 0 15px 40px rgba(255, 106, 61, 0.4);
}

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

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

/* Unified Bottom Area + Sharp CTA Background */
.big-cta-section {
    position: relative !important;
    background: #000 !important;
    color: #fff !important;
    overflow: hidden !important;
}

.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: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    animation: none !important;
    transform: none !important;
    image-rendering: auto !important;
}

.big-cta-content {
    position: relative !important;
    z-index: 2 !important;
}

.footer {
    background: #000 !important;
    color: #fff !important;
}

/* Global Dark Collage Overlay */
.big-cta-bg {
    position: absolute !important;
    inset: 0 !important;
}

.big-cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    pointer-events: 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 influencer-marketing.html */
.im-hero-section {
    min-height: 100vh;
}

.im-hero-content {
    margin-top: 0;
}

.im-hero-title {
    font-size: 64px;
    margin-bottom: 24px;
}

.im-hero-subtext {
    font-size: 24px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.im-intro-video {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.im-process-section {
    background-color: #fff;
    padding: 40px 0;
}

.im-process-wrapper {
    margin-bottom: 80px;
}

.im-card-icon-gift {
    background: rgba(255, 100, 59, 0.1);
    color: #ff643b;
}

.im-roi-title {
    margin-bottom: 60px;
}

.im-bar-h-60 {
    height: 60%;
}

.im-bar-h-12 {
    height: 12%;
}

.im-bar-h-14 {
    height: 14%;
}

.im-bar-h-367 {
    height: 36.7%;
}

.im-container-fluid {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.im-carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

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

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

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

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