/* Global Styles - Light Mode Replica */
:root {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f9fafb;
    /* Light Gray */
    --color-bg-card: #ffffff;

    --color-text-primary: #111827;
    /* Gray-900 */
    --color-text-secondary: #4b5563;
    /* Gray-600 */

    /* Vibrant Yellow for accents (replacing the green in screenshot) */
    --color-yellow-light: #fef08a;
    /* Yellow-200 */
    --color-yellow-primary: #facc15;
    /* Yellow-400 */
    --color-yellow-dark: #eab308;
    /* Yellow-500 */

    --color-border: #e5e7eb;
    /* Gray-200 */
    --color-black: #0a0a0a;

    --font-heading: 'Outfit', sans-serif;
    /* Cleaner geometric */
    --font-body: 'Inter', sans-serif;

    --radius-full: 9999px;
    --radius-lg: 32px;
    /* Screenshot has very rounded corners */
    --radius-md: 12px;
    --bg-warm-gradient: linear-gradient(180deg, #ffffff 0%, #fefce8 50%, #ffffff 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-highlight {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

/* Text highlight effect like 'billo' in the screenshot */
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 40%;
    background-color: var(--color-yellow-light);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary Button (Black with White text, like 'Sign up for free') */
.btn-primary {
    background-color: var(--color-black);
    color: white;
    border: 2px solid var(--color-black);
}

.btn-primary:hover {
    background-color: #262626;
    transform: translateY(-4px);
    /* More pronounced lift */
    box-shadow: 0 15px 30px -5px rgba(250, 204, 21, 0.5);
    /* Stronger Yellow glow */
    border-color: #262626;
}

/* Outline Button (White with Black border, like 'Book a demo') */
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

/* Navbar - Clean White */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-yellow-primary), var(--color-yellow-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(250, 204, 21, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-black);
    stroke: var(--color-black);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-primary);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--color-black);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
    /* Increased spacing */
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* For floating shapes */
}

/* Floating Shapes (Like the rounded rectangles in screenshot) */
.shape-pill {
    position: absolute;
    background: linear-gradient(135deg, var(--color-yellow-light), #fff);
    border-radius: 100px;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.8;
}

.shape-1 {
    width: 300px;
    height: 150px;
    top: 10%;
    left: -100px;
    transform: rotate(15deg);
    background: var(--color-yellow-primary);
}

.shape-2 {
    width: 200px;
    height: 100px;
    top: 30%;
    right: -50px;
    transform: rotate(-10deg);
    background: var(--color-yellow-light);
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    border-radius: 50%;
    background: var(--color-yellow-light);
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.badge-icon {
    font-weight: 800;
}

.hero-title {
    font-size: 4.5rem;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    color: var(--color-black);
    line-height: 1.1;
    position: relative;
}

/* Brand Sticker Animation (Floating Position) */
.brand-sticker {
    display: inline-flex;
    position: absolute;
    background: var(--color-yellow-primary);
    /* Brand Yellow */
    color: black;
    padding: 0.15rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.4em;
    /* Smaller relative to h1 */
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    /* Start position */
    top: -30px;
    left: 0;
    transform: rotate(-10deg);
    animation: sticker-move 12s ease-in-out infinite;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.brand-sticker:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 20;
    cursor: default;
    pointer-events: auto;
}

/* Remove previous pseudo-element shine */
.brand-sticker::after {
    display: none;
}

@keyframes sticker-move {

    /* Position 1: Top Left (Start) */
    0%,
    20% {
        top: -40px;
        left: -10px;
        transform: rotate(-8deg) scale(1);
    }

    /* Position 2: Middle Right (Generated) */
    33%,
    53% {
        top: 60px;
        left: 60%;
        transform: rotate(4deg) scale(1.1);
    }

    /* Position 3: Bottom Left (UGC) */
    66%,
    86% {
        top: 90%;
        left: 20%;
        transform: rotate(-4deg) scale(0.95);
    }

    /* Return */
    100% {
        top: -40px;
        left: -10px;
        transform: rotate(-8deg) scale(1);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    /* Darker for accessibility */
    font-weight: 500;
    /* Increased weight */
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

/* Dashboard Mockup */
.hero-visual {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1500px;
}

/* Hero UGC Showcase (Replacing Dashboard Mockup) */
.hero-ugc-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-video-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: all 0.3s ease;
}

.hero-video-card.main {
    width: 240px;
    height: 426px;
    /* 9:16 Aspect Ratio */
    z-index: 10;
    border: 4px solid var(--color-yellow-primary);
    box-shadow: 0 25px 50px -12px rgba(250, 204, 21, 0.25);
}

.hero-video-card.small {
    width: 200px;
    height: 355px;
    opacity: 0.8;
    z-index: 5;
    filter: grayscale(20%);
}

.hero-video-card.small:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05) translateY(-5px);
    z-index: 15;
}

.hero-video-card.rotate-left {
    transform: rotate(-6deg) translateY(20px);
}

.hero-video-card.rotate-right {
    transform: rotate(6deg) translateY(20px);
}



.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-user-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-user-pill img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid white;
}

.hero-stat-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero-stat-pill.highlight {
    background: var(--color-yellow-primary);
    color: black;
}

/* Features Clean Grid */
.features {
    padding: 6rem 0;
    background: var(--bg-warm-gradient);
    /* Keep white */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-secondary);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: var(--color-border);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--color-yellow-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    color: var(--color-yellow-dark);
}

/* Footer Simple */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 4rem 0;
    background: #fafafa;
}

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

    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}

/* Brand Logos Strip */
.logos-strip {
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-warm-gradient);
    /* Edge Fade Mask */
    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);
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.logo-item {
    color: #9ca3af;
    /* Light Gray */
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item svg {
    height: 32px;
    width: auto;
    max-width: 120px;
    fill: currentColor;
}

.logo-item:hover {
    transform: scale(1.1);
    filter: none;
}

/* Brand Colors on Hover */
.logo-item:nth-child(1) {
    color: #96bf0d;
}

/* HelloFresh */
.logo-item:nth-child(2) {
    color: #ff5200;
}

/* JBL */
.logo-item:nth-child(3) {
    color: #bca06d;
}

/* L'Oreal */
.logo-item:nth-child(4) {
    color: #0b5ed7;
}

/* Philips */
.logo-item:nth-child(5) {
    color: #007bff;
}

/* Nestle */
.logo-item:nth-child(6) {
    color: #00c4cc;
}

/* Canva */
.logo-item:nth-child(7) {
    color: #000000;
}

/* Zara */

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

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

/* Why Choose Section (Grid of 4) */
.why-choose {
    padding: 6rem 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    text-align: left;
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-yellow-dark);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Purple (now Dark Yellow/Black) Banner */
.banner-cta {
    background: #111827;
    /* Dark Banner */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 24px;
    margin: 4rem auto;
    max-width: 1200px;
}

.banner-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Video Carousel (Proven Talent) */
.video-carousel-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fefce8 100%);
    /* Fade to light yellow */
    text-align: center;
    overflow: hidden;
}

.video-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.video-card {
    width: 200px;
    height: 350px;
    background: #000;
    border-radius: 24px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
}

.video-card.center {
    transform: scale(1.1);
    /* Make center card bigger */
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(250, 204, 21, 0.3);
    /* Yellow glow */
    border: 4px solid var(--color-yellow-primary);
}

.creator-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    backdrop-filter: blur(4px);
}

/* Bento Grid (Data-led) */
.bento-section {
    padding: 6rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 2rem;
    margin-top: 4rem;
}

.bento-card {
    background: #f9fafb;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.bento-card.highlight {
    background: var(--color-yellow-light);
    /* Yellow background for one */
}

.bento-card.large {
    grid-row: span 2;
    /* Tall card */
    background: #fff;
    border: 1px solid var(--color-border);
}

/* Comparison Table */
.comparison-section {
    padding: 6rem 0;
    text-align: center;
}

.comp-table {
    width: 100%;
    margin-top: 4rem;
    border-collapse: separate;
    border-spacing: 0;
}

.comp-table th,
.comp-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.comp-table th.highlight-col,
.comp-table td.highlight-col {
    background: #fffceb;
    /* Lighter yellow */
    /* Highlight NexaVertex Creative column */
    text-align: center;
    font-weight: 700;
    border-left: 2px solid var(--color-yellow-primary);
    border-right: 2px solid var(--color-yellow-primary);
}

.comp-table th.highlight-col {
    border-top: 2px solid var(--color-yellow-primary);
}

.comp-table tr:last-child td.highlight-col {
    border-bottom: 2px solid var(--color-yellow-primary);
}

.comp-table th:first-child {
    width: 40%;
}

.comp-table th.highlight-col {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.comp-table tr:last-child td.highlight-col {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom: none;
}

/* Testimonial / Pre-Footer */
.testimonial-section {
    padding: 6rem 0;
    background: #fff;
}

.testimonial-card-large {
    background: #f9fafb;
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.testimonial-content h3 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.stat-pill {
    display: inline-block;
    background: var(--color-yellow-primary);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    margin-right: 1rem;
}

.testimonial-image {
    width: 300px;
    height: 400px;
    background: #ddd;
    border-radius: 24px;
    object-fit: cover;
}

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

    .why-grid,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .video-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-left: 2rem;
    }

    .comp-table {
        display: block;
        overflow-x: auto;
    }

    .testimonial-card-large {
        flex-direction: column;
        padding: 2rem;
    }

    .testimonial-image {
        width: 100%;
        height: 300px;
    }
}

/* UGC Video Player Section */
.ugc-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    /* Light blue fade from screenshot */
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.category-chip {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-chip:hover {
    color: var(--color-text-primary);
    background: rgba(0, 0, 0, 0.05);
}

.category-chip.active {
    background: white;
    color: var(--color-black);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Screenshot has active state white with subtle shadow and icon */
}

.category-icon {
    font-size: 1.1rem;
}

/* Video Carousel Container */
.video-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    perspective: 1000px;
    min-height: 500px;
    /* Reserve space */
}

/* Video Card (Active Video) */
.video-player-card {
    width: 280px;
    height: 500px;
    background: black;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    /* Center card styles */
    transform: scale(1);
    border: 4px solid white;
}

/* Side Cards (Inactive Videos) */
.video-preview-card {
    width: 200px;
    height: 350px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0.7;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.video-preview-card:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Video Controls Overlay */
.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.video-player-overlay.playing {
    display: none;
}

.play-button {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid white;
    margin-left: 4px;
    /* Optical center */
}

/* Video Info (Bottom Overlay) */
.video-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creator-avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    object-fit: cover;
}

.creator-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-black);
    font-weight: 700;
}

.creator-details span {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    display: block;
}

/* Tag Badge */
.video-tag {
    align-self: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3b82f6;
    /* Blue tag color */
    margin-bottom: 1rem;
    display: inline-block;
}

/* Actual Video Element */
.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3D Carousel Styles */
.hero-ugc-showcase {
    position: relative;
    display: flex;
    /* Fallback */
    justify-content: center;
    align-items: center;
    height: 550px;
    /* Ensure enough height */
    perspective: 1000px;
    padding-top: 2rem;
}

/* Reset existing card styles to base */
.hero-video-card.carousel-card {
    position: absolute;
    width: 260px;
    height: 460px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background: #000;
    overflow: hidden;
    border: none;
    transform-origin: center bottom;
}

/* Center Card (Active) */
.hero-video-card.center {
    transform: translateX(0) scale(1) translateZ(200px);
    z-index: 20;
    opacity: 1;
    border: 4px solid var(--color-yellow-primary);
    box-shadow: 0 30px 60px -10px rgba(250, 204, 21, 0.3);
}

/* Left Card */
.hero-video-card.left {
    transform: translateX(-110%) scale(0.85) translateZ(-100px) rotateY(15deg);
    z-index: 10;
    opacity: 0.6;
    filter: grayscale(40%);
}

.hero-video-card.left:hover {
    transform: translateX(-110%) scale(0.9) translateZ(-50px) rotateY(10deg);
    opacity: 0.8;
    filter: grayscale(0%);
    z-index: 15;
}

/* Right Card */
.hero-video-card.right {
    transform: translateX(110%) scale(0.85) translateZ(-100px) rotateY(-15deg);
    z-index: 10;
    opacity: 0.6;
    filter: grayscale(40%);
}

.hero-video-card.right:hover {
    transform: translateX(110%) scale(0.9) translateZ(-50px) rotateY(-10deg);
    opacity: 0.8;
    filter: grayscale(0%);
    z-index: 15;
}

/* Text Overlap Fix */
.hero-title {
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.brand-sticker {
    top: -45px;
}