﻿/* 
=========================================================
  VIBRANT.CSS - Enterprise & Hooky UI/UX Overhaul
  Fountain City Foods
========================================================= 
*/

:root {
    --vibrant-blue: #0A58CA;
    --vibrant-cyan: #0dcaf0;
    --vibrant-gold: #FFB800;
    --vibrant-purple: #6f42c1;
    --vibrant-pink: #d63384;
    --dark-slate: #0f172a;
    --pure-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* Base Typographic Overrides */
body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* =========================================================
   ANIMATED BACKGROUND
========================================================= */
.vibrant-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: #f8fafc;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    filter: blur(140px);
    opacity: 0.15;
    animation: drift 20s infinite alternate ease-in-out;
    border-radius: 50%;
}

.shape-1 {
    width: 800px;
    height: 800px;
    background: var(--vibrant-cyan);
    top: -200px;
    left: -200px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--vibrant-purple);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--vibrant-gold);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 150px) scale(1.1);
    }
}

/* =========================================================
   VIBRANT HEADER
========================================================= */
.vibrant-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(13, 202, 240, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

img.header-logo {
    height: 55px;
    width: auto;
    transition: transform 0.3s;
}

img.header-logo:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-slate);
    text-transform: capitalize;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-cyan));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--vibrant-gold), #ff9900);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.nav-cta-btn::after {
    display: none;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--vibrant-blue);
    cursor: pointer;
}

/* =========================================================
   HERO SECTION & SEARCH 
========================================================= */
.vibrant-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 100px;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-tagline {
    background: rgba(13, 202, 240, 0.15);
    color: var(--vibrant-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--dark-slate);
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--vibrant-blue), var(--vibrant-purple), var(--vibrant-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Vibrant Search */
.hero-search-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.vibrant-search-form {
    display: flex;
    background: var(--pure-white);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(10, 88, 202, 0.15);
    border: 2px solid rgba(10, 88, 202, 0.1);
    align-items: center;
    position: relative;
    z-index: 10;
    transition: all 0.3s;
}

.vibrant-search-form:focus-within {
    border-color: var(--vibrant-cyan);
    box-shadow: 0 25px 60px rgba(13, 202, 240, 0.25);
    transform: translateY(-2px);
}

.vibrant-search-form .search-icon {
    font-size: 1.4rem;
    color: var(--vibrant-blue);
    margin-left: 20px;
    position: static !important;
    transform: none !important;
}

.vibrant-search-form input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark-slate);
    outline: none;
    background: transparent;
}

.search-btn {
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-cyan));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
    transition: all 0.3s;
}

.search-btn:hover {
    box-shadow: 0 8px 25px rgba(13, 202, 240, 0.5);
    transform: scale(1.02);
}

/* Dropdown Recommendations */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 25px;
    text-align: left;
    display: none;
    /* Toggled via JS */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.search-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-section {
    margin-bottom: 25px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    font-size: 1rem;
    color: var(--vibrant-blue);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    background: rgba(13, 202, 240, 0.1);
    color: var(--vibrant-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(13, 202, 240, 0.2);
}

.search-tag:hover {
    background: var(--vibrant-cyan);
    color: white;
    transform: translateY(-2px);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-slate);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s;
}

.dropdown-list li i {
    color: var(--vibrant-gold);
    font-size: 1.2rem;
}

.dropdown-list li:hover {
    background: rgba(10, 88, 202, 0.05);
    color: var(--vibrant-blue);
    padding-left: 20px;
}

/* =========================================================
   ENTERPRISE INTRODUCTION GRID (Bento)
========================================================= */
.enterprise-intro-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header .title {
    font-size: 3rem;
    color: var(--dark-slate);
    margin-bottom: 15px;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.bento-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 350px 300px;
    gap: 25px;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    background: white;
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 81, 151, 0.15);
}

.card-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.bento-card:hover .card-img-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 88, 202, 0.9) 0%, transparent 100%);
    color: white;
}

.solid-overlay {
    height: 100%;
    background: rgba(10, 88, 202, 0.85);
    /* fallback */
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.blue-overlay {
    background: linear-gradient(135deg, rgba(10, 88, 202, 0.9), rgba(13, 202, 240, 0.9));
}

.gold-overlay {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.9), rgba(214, 51, 132, 0.9));
}

.card-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.card-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.arrow-link {
    color: var(--vibrant-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arrow-link:hover {
    text-decoration: underline;
}

.card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.card-small {
    grid-row: 1 / 2;
}

.card-wide {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.card-content-split {
    display: flex;
    height: 100%;
}

.text-side {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.text-side h3 {
    font-size: 2.2rem;
    color: var(--vibrant-blue);
    margin-bottom: 15px;
}

.text-side p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.img-side {
    flex: 0.8;
    background-size: cover;
    background-position: center;
}

.vibrant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.primary-btn {
    background: var(--vibrant-blue);
    color: white;
    box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
}

.primary-btn:hover {
    background: #084298;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 88, 202, 0.5);
}


/* =========================================================
   HOOKY SECTION: STATS & COUNTERS
========================================================= */
.custom-hook-section {
    background: linear-gradient(135deg, var(--vibrant-blue), var(--dark-slate));
    padding: 100px 5%;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Add an animated overlay inside the hook section */
.custom-hook-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.hook-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hook-text {
    flex: 1;
}

.hook-text h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hook-text p {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.stats-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-box:last-child {
    grid-column: span 2;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--vibrant-gold);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 5px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* =========================================================
   BEST BRANDS DYNAMIC GRID (with Amazon Reviews)
========================================================= */
.best-brands-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dynamic-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.brand-showcase-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.brand-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 88, 202, 0.1);
    border-color: rgba(10, 88, 202, 0.2);
}

.bsc-image {
    height: 250px;
    background: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bsc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.brand-showcase-card:hover .bsc-image img {
    transform: scale(1.05);
}

.bsc-brand-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--vibrant-blue);
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bsc-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bsc-title {
    font-size: 1.5rem;
    color: var(--dark-slate);
    margin-bottom: 15px;
}

/* Amazon Review Block */
.amazon-review-block {
    background: #f8fafc;
    border-left: 4px solid var(--vibrant-gold);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.amazon-stars {
    color: var(--vibrant-gold);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.amazon-text {
    font-style: italic;
    color: #475569;
    font-size: 0.95rem;
}

.amazon-author {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.bsc-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.action-amz {
    background: var(--vibrant-gold);
    color: white;
}

.action-amz:hover {
    background: #e5aa26;
}

.action-dir {
    background: #f1f5f9;
    color: var(--vibrant-blue);
}

.action-dir:hover {
    background: #e2e8f0;
}

.load-more-container {
    text-align: center;
}

.outline-btn {
    background: transparent;
    color: var(--vibrant-blue);
    border: 2px solid var(--vibrant-blue);
}

.outline-btn:hover {
    background: var(--vibrant-blue);
    color: white;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.5rem;
    color: var(--vibrant-blue);
    padding: 50px;
}

/* =========================================================
   B2B & MULTI-STEP FORM
========================================================= */
.vibrant-b2b-section {
    background: var(--pure-white);
    padding: 120px 5%;
}

.b2b-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.b2b-text-column {
    flex: 1;
}

.badge {
    background: rgba(13, 202, 240, 0.15);
    color: var(--vibrant-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.b2b-text-column h2 {
    font-size: 3rem;
    color: var(--dark-slate);
    margin-bottom: 25px;
    line-height: 1.2;
}

.b2b-text-column p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.b2b-benefits {
    list-style: none;
    padding: 0;
}

.b2b-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vibrant-blue);
    margin-bottom: 20px;
}

.b2b-benefits li i {
    font-size: 1.5rem;
    color: var(--vibrant-cyan);
}


.b2b-form-column {
    flex: 1;
    max-width: 600px;
}

/* Form Styling with Glowing Border */
@keyframes vibrantGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.premium-form-box {
    background: white;
    padding: 50px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.premium-form-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    background: linear-gradient(45deg, var(--vibrant-blue), var(--vibrant-cyan), var(--vibrant-purple), var(--vibrant-gold));
    background-size: 300% 300%;
    animation: vibrantGlow 8s ease infinite;
    border-radius: 26px;
}

.form-progress {
    margin-bottom: 40px;
    position: relative;
}

.progress-bar-fill {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    background: rgba(10, 88, 202, 0.2);
    width: 100%;
    z-index: 1;
}

.step-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.node {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid rgba(10, 88, 202, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s;
}

.node.active {
    border-color: var(--vibrant-blue);
    background: var(--vibrant-blue);
    color: white;
    box-shadow: 0 0 15px rgba(10, 88, 202, 0.4);
}

.form-slide {
    display: none;
    animation: slideIn 0.4s ease forwards;
}

.form-slide.active-slide {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-slide h3 {
    font-size: 1.8rem;
    color: var(--dark-slate);
    margin-bottom: 30px;
}

.input-wrap {
    position: relative;
    margin-bottom: 25px;
}

.input-wrap i {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #94a3b8;
    font-size: 1.2rem;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark-slate);
    outline: none;
    transition: all 0.3s;
    background: #f8fafc;
}

.input-wrap.textarea-wrap i {
    display: none;
}

.input-wrap.textarea-wrap textarea {
    padding-left: 20px;
    resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    border-color: var(--vibrant-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.1);
}

.full-width {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.text-btn {
    background: transparent;
    color: #64748b;
}

.text-btn:hover {
    color: var(--vibrant-blue);
    background: rgba(10, 88, 202, 0.05);
}

.submit-btn {
    background: linear-gradient(135deg, var(--vibrant-green, #198754), #20c997);
    color: white;
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
    flex: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(32, 201, 151, 0.5);
}

/* =========================================================
   VIBRANT FOOTER
========================================================= */
.vibrant-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 100px 5% 40px;
    border-top: 5px solid var(--vibrant-cyan);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-img-logo {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.social-pills {
    display: flex;
    gap: 15px;
}

.social-pills a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-pills a:hover {
    background: var(--vibrant-cyan);
    transform: translateY(-5px);
}

.footer-links-col h4,
.footer-newsletter-col h4 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-links-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: var(--vibrant-cyan);
}

.footer-newsletter-col p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-input {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    outline: none;
}

.newsletter-input button {
    background: var(--vibrant-blue);
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-input button:hover {
    background: var(--vibrant-cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 80px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.legal-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

/* =========================================================
   SCROLL REVEAL UTILITY
========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   BENTO SHOP NOW BUTTON (D2C Card)
========================================================= */
.bento-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    align-self: flex-start;
}

.bento-shop-btn:hover {
    background: white;
    color: #d63384;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* =========================================================
   HERO SUBTITLE UPDATE  
========================================================= */
.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 50px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* =========================================================
   REVIEWS SHOW MORE / TOGGLE (brand.html)
========================================================= */
.reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-count-badge {
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-cyan));
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.reviews-extra-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-extra-wrapper.expanded {
    max-height: 3000px;
}

.reviews-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.reviews-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid var(--vibrant-blue);
    color: var(--vibrant-blue);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 5px 20px rgba(10, 88, 202, 0.1);
}

.reviews-toggle-btn:hover {
    background: var(--vibrant-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 88, 202, 0.25);
}

.reviews-toggle-btn i {
    transition: transform 0.4s ease;
    font-size: 1rem;
}

/* =========================================================
   ENHANCED GLASSMORPHISM SIDEBAR (directory.html)
========================================================= */
.vibrant-sidebar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    border-radius: 20px !important;
}

.sidebar-promo {
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-cyan));
    color: white;
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
}

.sidebar-promo h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
}

.sidebar-promo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Mobile sidebar collapse toggle */
.sidebar-mobile-toggle {
    display: none;
    width: 100%;
    background: var(--vibrant-blue);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-content-collapsible {
    overflow: visible;
    max-height: none;
    transition: max-height 0.4s ease;
}

.sidebar-content-collapsible.collapsed {
    max-height: 0;
    overflow: hidden;
}

/* =========================================================
   SCROLL BEHAVIOR
========================================================= */
html {
    scroll-behavior: smooth;
}

/* =========================================================
   IMPROVED ACTION BUTTONS (Amazon)
========================================================= */
.action-amz {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white !important;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.action-amz:hover {
    background: linear-gradient(135deg, #ff6600, #e55c00);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 0, 0.4);
}

/* =========================================================
   INDEX.HTML HERO UPDATES
========================================================= */
.hero-tagline {
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* =========================================================
   IMPROVED FOOTER
========================================================= */
.vibrant-footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-cyan), var(--vibrant-purple), var(--vibrant-gold));
    margin-bottom: 0;
    position: relative;
    top: -100px;
    margin-top: -100px;
    opacity: 0;
}

.footer-links-col a:hover {
    color: var(--vibrant-cyan);
    padding-left: 5px;
}

/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 5%;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--vibrant-gold);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-menu-links a {
    color: white;
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--vibrant-gold);
    transform: scale(1.05);
}

/* =========================================================
   OLD UNUSED DIRECTORY BRAND PROFILE STYLES
========================================================= */
.brand-cover-photo {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 88, 202, 0.95) 0%, rgba(13, 202, 240, 0.6) 100%);
}

/* =========================================================
   RESPONSIVE — ≤1200px (Large tablets / small desktops)
========================================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .b2b-container {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 40px;
    }
}

/* =========================================================
   RESPONSIVE — ≤1024px (Tablets)
========================================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .bento-intro-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .card-large {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 400px;
    }

    .card-wide {
        grid-column: 1 / -1;
    }

    .hook-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .stat-box:last-child {
        grid-column: span 1;
    }

    .b2b-container {
        flex-direction: column;
        gap: 40px;
    }

    .b2b-text-column {
        text-align: center;
    }

    .b2b-benefits {
        display: inline-block;
        text-align: left;
    }

    .b2b-form-column {
        max-width: 100%;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* Directory sidebar */
    .container {
        flex-direction: column;
        padding: 0 20px;
    }

    .sidebar {
        width: 100%;
        position: static !important;
    }

    .sidebar-mobile-toggle {
        display: flex !important;
    }
}

/* =========================================================
   RESPONSIVE — ≤768px (Mobile)
========================================================= */
@media (max-width: 768px) {

    /* ---- Global ---- */
    html {
        font-size: 15px;
    }

    /* ---- Header ---- */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .vibrant-header {
        padding: 12px 5%;
    }

    img.header-logo {
        height: 42px;
    }

    /* ---- Hero ---- */
    .vibrant-hero {
        padding: 130px 20px 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .hero-tagline {
        font-size: 0.78rem;
    }

    .vibrant-search-form {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 12px;
        gap: 10px;
    }

    .vibrant-search-form input {
        font-size: 1rem;
        padding: 10px 15px;
        min-width: 0;
    }

    .search-btn {
        width: 100%;
        border-radius: 12px;
        padding: 12px;
        font-size: 1rem;
    }

    .search-dropdown {
        border-radius: 16px;
        padding: 20px;
    }

    /* ---- Bento Grid ---- */
    .bento-intro-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .card-large,
    .card-small,
    .card-wide {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 320px;
    }

    .card-content-split {
        flex-direction: column;
    }

    .img-side {
        height: 200px;
    }

    .text-side {
        padding: 25px;
    }

    .text-side h3 {
        font-size: 1.6rem;
    }

    .card-overlay {
        padding: 25px;
    }

    .card-overlay h3 {
        font-size: 1.5rem;
    }

    /* ---- Section Headers ---- */
    .section-header .title {
        font-size: 2.2rem;
    }

    .enterprise-intro-section {
        padding: 60px 5%;
    }

    /* ---- Hook / Stats ---- */
    .custom-hook-section {
        padding: 70px 5%;
    }

    .hook-text h2 {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box:last-child {
        grid-column: span 2;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    /* ---- Best Brands Section ---- */
    .best-brands-section {
        padding: 70px 5%;
    }

    .dynamic-brand-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* ---- B2B Form Section ---- */
    .vibrant-b2b-section {
        padding: 70px 5%;
    }

    .b2b-text-column h2 {
        font-size: 2.2rem;
    }

    .premium-form-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .form-slide h3 {
        font-size: 1.5rem;
    }

    /* ---- Footer ---- */
    .vibrant-footer {
        padding: 60px 5% 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
    }

    .legal-links a {
        margin-left: 0;
        margin-right: 15px;
    }

    /* ---- Directory Page ---- */
    .main-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }

    .vibrant-search-form[style*="width: 400px"] {
        width: 100% !important;
    }

    /* ---- Brand Profile ---- */
    .hero-showcase {
        height: 350px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .hero-logo-box {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .profile-toolbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .filter-pills {
        justify-content: center;
    }

    .reviews-section {
        padding: 30px 20px;
    }

    .reviews-title {
        font-size: 1.8rem;
    }

    .reviews-header {
        flex-direction: column;
        gap: 10px;
    }

    /* ---- Mobile Menu links ---- */
    .mobile-menu-links a {
        font-size: 1.8rem;
    }
}

/* =========================================================
   RESPONSIVE — ≤480px (Small phones)
========================================================= */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .card-large,
    .card-small,
    .card-wide {
        height: 280px;
    }

    .hook-text h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box:last-child {
        grid-column: span 1;
    }

    .b2b-text-column h2 {
        font-size: 1.9rem;
    }

    .section-header .title {
        font-size: 1.8rem;
    }

    .premium-form-box {
        padding: 25px 15px;
    }

    .node {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .vibrant-header {
        padding: 10px 4%;
    }

    img.header-logo {
        height: 36px;
    }

    .brand-profile-container {
        padding: 0 4%;
    }

    .hero-showcase {
        height: 280px;
    }

    .reviews-toggle-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .bento-shop-btn {
        padding: 9px 18px;
        font-size: 0.9rem;
    }

    .footer-img-logo {
        height: 50px;
    }
}

/* =========================================================
   RESPONSIVE — ≤360px (Very small phones)
========================================================= */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .search-btn {
        font-size: 0.9rem;
    }

    .vibrant-search-form input {
        font-size: 0.9rem;
    }

    .mobile-menu-links a {
        font-size: 1.5rem;
        gap: 25px;
    }
}


/* =========================================================
   PARTICLE CANVAS
========================================================= */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.shape-4 {
    width: 700px;
    height: 700px;
    background: var(--vibrant-pink);
    top: 60%;
    right: 10%;
    animation-delay: -15s;
    opacity: 0.08;
}

/* =========================================================
   PAGE-LOAD TRANSITION
========================================================= */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body:not(.page-loading) {
    opacity: 1;
}

/* =========================================================
   SCROLL REVEAL SYSTEM
========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-anim-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.hero-anim-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.hero-anim-in.revealed,
.hero-anim-in-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   HERO SPLIT LAYOUT
========================================================= */
.vibrant-hero.hero-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 140px 6% 80px;
    min-height: 100vh;
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-split .hero-content {
    flex: 1 1 55%;
    max-width: 640px;
    text-align: left;
}

.hero-split .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 88, 202, 0.15);
    color: var(--dark-slate);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-badge i {
    color: var(--vibrant-blue);
}

.hero-badge:hover {
    background: var(--vibrant-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 88, 202, 0.25);
}

.hero-badge:hover i {
    color: white;
}

/* =========================================================
   HERO FLOATING IMAGE / VISUAL
========================================================= */
.hero-visual {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero-img-container {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinning rings */
.hero-img-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: spin-ring 8s linear infinite;
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(13, 202, 240, 0.35) transparent rgba(10, 88, 202, 0.35) transparent;
    animation-duration: 8s;
}

.ring-2 {
    width: 370px;
    height: 370px;
    border-color: transparent rgba(111, 66, 193, 0.25) transparent rgba(255, 184, 0, 0.25);
    animation-duration: 14s;
    animation-direction: reverse;
}

.ring-3 {
    width: 420px;
    height: 420px;
    border-color: rgba(214, 51, 132, 0.15) transparent rgba(13, 202, 240, 0.15) transparent;
    animation-duration: 20s;
}

@keyframes spin-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Central glow */
.hero-img-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.25) 0%, rgba(10, 88, 202, 0.15) 50%, transparent 75%);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Floating logo */
.hero-floating-img {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(10, 88, 202, 0.3));
    animation: float-img 5s ease-in-out infinite;
    border-radius: 32px;
    background: white;
    padding: 20px;
}

@keyframes float-img {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(-1deg);
    }
}

/* Floating popup badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-slate);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.fb-top {
    top: 8%;
    right: -10px;
    animation: badge-float 4s ease-in-out infinite;
}

.fb-bottom {
    bottom: 8%;
    left: -10px;
    animation: badge-float 4s ease-in-out infinite 1.5s;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =========================================================
   SITEWIDE TRANSITION POLISH
========================================================= */
.stat-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 88, 202, 0.15) !important;
    background: linear-gradient(135deg, rgba(10, 88, 202, 0.08), rgba(13, 202, 240, 0.06)) !important;
}

/* =========================================================
   GLOBAL OVERFLOW GUARD
========================================================= */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =========================================================
   RESPONSIVE — ≤1024px
========================================================= */
@media (max-width: 1024px) {
    .vibrant-hero.hero-split {
        flex-direction: column;
        padding: 120px 5% 70px;
        text-align: center;
        gap: 50px;
        min-height: auto;
    }

    .hero-split .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-split .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-img-container {
        width: 280px;
        height: 280px;
    }

    .ring-1 {
        width: 270px;
        height: 270px;
    }

    .ring-2 {
        width: 310px;
        height: 310px;
    }

    .ring-3 {
        width: 350px;
        height: 350px;
    }

    .hero-floating-img {
        width: 160px;
        height: 160px;
    }
}

/* =========================================================
   RESPONSIVE — ≤768px
========================================================= */
@media (max-width: 768px) {
    .vibrant-hero.hero-split {
        padding: 100px 4% 60px;
        gap: 35px;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .fb-top {
        right: 0;
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .fb-bottom {
        left: 0;
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .hero-img-container {
        width: 240px;
        height: 240px;
    }

    .ring-1 {
        width: 230px;
        height: 230px;
    }

    .ring-2 {
        width: 270px;
        height: 270px;
    }

    .ring-3 {
        width: 300px;
        height: 300px;
    }

    .hero-floating-img {
        width: 130px;
        height: 130px;
        padding: 15px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .bento-intro-grid {
        grid-template-rows: none !important;
    }

    .vibrant-search-form .search-icon {
        display: none;
    }
}

/* =========================================================
   RESPONSIVE — ≤480px
========================================================= */
@media (max-width: 480px) {
    .vibrant-hero.hero-split {
        padding: 90px 4% 50px;
    }

    .hero-title {
        font-size: 1.85rem !important;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-img-container {
        width: 200px;
        height: 200px;
    }

    .ring-1 {
        width: 195px;
        height: 195px;
    }

    .ring-2 {
        width: 230px;
        height: 230px;
    }

    .ring-3 {
        width: 260px;
        height: 260px;
    }

    .hero-floating-img {
        width: 110px;
        height: 110px;
        padding: 12px;
    }

    .fb-top,
    .fb-bottom {
        display: none;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .bento-card,
    .stat-box,
    .premium-form-box,
    .b2b-text-column,
    .b2b-form-column {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   BENTO FEATURED CARD — Ken Burns + Shimmer + Inner Badge
========================================================= */

/* Ken Burns: slow perpetual zoom-drift on the image */
.bento-img-animated {
    animation: kenburns 16s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.08) translate(-1%, 1%);
    }

    66% {
        transform: scale(1.05) translate(2%, -1.5%);
    }

    100% {
        transform: scale(1.1) translate(-1.5%, 0.5%);
    }
}

/* Pause Ken Burns on hover so it feels responsive */
.bento-card-featured:hover .bento-img-animated {
    animation-play-state: paused;
}

/* Shimmer sweep — a diagonal light streak on hover */
.bento-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 70%);
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.bento-card-featured:hover .bento-shimmer {
    animation: shimmer-sweep 0.7s ease forwards;
}

@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 160%;
    }
}

/* Floating glass badge inside the card */
.bento-inner-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark-slate);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: badge-float 4s ease-in-out infinite;
}

.bento-inner-badge i {
    color: var(--vibrant-gold);
    font-size: 1rem;
}