
:root {
    --primary: #7ed0fb;
    --secondary: #191660;
    --accent: #b1a77b;
    --white: #ffffff;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-hero {
    position: relative;
    height: 900px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    
    /* ADD THESE LINES TO PREVENT BLUR DURING TRANSITIONS */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0); 
    image-rendering: -webkit-optimize-contrast; /* Sharpens image rendering */
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 22, 96, 0.35);
    z-index: 2;
    backdrop-filter: none; /* Ensure this is definitely none */
    -webkit-backdrop-filter: none; /* Add the webkit prefix for Safari */
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.brand-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    animation: slideDown 0.8s ease-out;
}

.brand-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 20px 0;
    
    /* 1. TYPOGRAPHY POLISH */
    text-transform: uppercase;
    letter-spacing: -0.03em; /* Makes thick fonts look premium */
    line-height: 1.1;
    color: #ffffff;

    /* 2. CONTRAST PROTECTION (Black blur) */
    /* Layer 1: Sharp edge for clarity | Layer 2: Soft glow for readability */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3), 
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 0, 0, 0.2);

    /* KEEPING YOUR ANIMATION */
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.brand-tagline {
    font-size: 1.7rem; /* Slightly larger */
    max-width: 650px;
    opacity: 0.98;
    margin-bottom: 30px;
    
    /* 1. TYPOGRAPHY POLISH */
    line-height: 1.6; /* More breathable */
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #ffffff;

    /* 2. CONTRAST PROTECTION */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

    /* KEEPING YOUR ANIMATION */
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

/* 3. RESPONSIVE FIX (Important for 3.5rem text) */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem; /* Shrinks for mobile so it doesn't break lines */
    }
    .brand-tagline {
        font-size: 1.1rem;
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    animation: slideUp 0.8s ease-out 0.6s backwards;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1.19rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 12px rgba(126, 208, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 208, 251, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 4;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* =========================================
   BRAND STATS SECTION
   ========================================= */

.brand-stats {
    background: var(--secondary); /* Dark Background */
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-wrapper {
    display: grid;
    /* This creates 4 equal columns on desktop, auto-stacks on mobile */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    align-items: start;
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px; /* Space for the line */
}

/* THE "BOTTOM EFFECT" (Underline) */
/* We apply this to ALL items now (removed :not(:last-child)) */
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Perfectly centers the line */
    
    width: 60px;   /* Width of the line */
    height: 4px;   /* Thickness */
    background: var(--primary); /* The Blue Color */
    border-radius: 2px;
    
    /* Optional: Add a subtle glow */
    box-shadow: 0 0 10px rgba(126, 208, 251, 0.6); 
}

/* STATS TEXT STYLING */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: #ffffff;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: block; /* Ensures it sits below number */
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.brand-about {
    padding: 80px 0;
    background: var(--light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
    font-weight: 800;
}

.about-text {
    font-size: 1.25rem; /* Slightly cleaner than 1.19 */
    line-height: 1.85;  /* Breathable spacing for long reading */
    color: var(--text); /* Using #333 instead of #1a1a1a to reduce eye strain */
    font-weight: 400;
    
    max-width: 800px;   /* CRITICAL: Prevents lines from being too long to read */
    margin-bottom: 1.5rem; 
    
    /* Improves how text looks on mobile */
    text-align: left;
    word-spacing: 0.02em;
}

.about-text-short {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--secondary); /* Using your dark blue variable */
    font-style: italic;
    font-weight: 500;
    
    /* Decorative Left Border */
    border-left: 4px solid var(--primary); 
    padding: 10px 0 10px 25px;
    margin: 30px 0;
    
    /* Subtle readable shadow instead of the blurry one */
    text-shadow: 1px 1px 2px rgba(25, 22, 96, 0.05);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}



.brand-audience h2,
.brand-socials h2,
.brand-content h2,
.brand-benefits h2,
.brand-testimonials h2,
.related-brands h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
    font-weight: 800;
}

/* =========================================
   PREMIUM AUDIENCE INSIGHTS (MEGA-ICON STYLE)
   ========================================= */

.brand-audience {
    padding: 120px 0;
    background: #ffffff; /* */
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; /* */
}

/* THE CARD */
.audience-card {
    background: #fff;
    border-radius: 28px; /* Slightly rounder for a friendlier high-end feel */
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(25, 22, 96, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(25, 22, 96, 0.1); /* */
}

/* THE ICON WRAPPER - LARGER AND SHARPER */
.audience-icon-wrapper {
    position: relative;
    width: 120px; /* Larger footprint to house the 80px icon */
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 35%; /* Soft squircle shape */
    opacity: 0.08;
    filter: blur(20px);
    transition: all 0.6s ease;
}

.audience-card:hover .icon-glow {
    opacity: 0.15;
    transform: scale(1.3) rotate(15deg);
    background: var(--secondary);
}

.audience-icon-main {
    width: 80px; /* INCREASED SIZE */
    height: 80px;
    object-fit: contain;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.08)); /* */
    image-rendering: -webkit-optimize-contrast; /* Keeps it sharp */
}

.audience-card:hover .audience-icon-main {
    transform: scale(1.15); /* */
    filter: drop-shadow(0 12px 25px rgba(126, 208, 251, 0.3));
}

.audience-emoji {
    font-size: 4rem; /* Matching the 80px size for placeholders */
    z-index: 2;
}

/* TYPOGRAPHY */
.audience-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audience-value {
    font-size: 2.8rem; /* Scaled up for better balance with the larger icon */
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: -1.5px;
}

.audience-metric {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ICON STANDOUT HOVER */
.audience-card:hover .audience-value {
    color: var(--primary); /* */
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .audience-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    .audience-icon-main {
        width: 65px;
        height: 65px;
    }
    .audience-value {
        font-size: 2.2rem;
    }
}

.brand-socials {
    padding: 80px 0;
    background: var(--light);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.social-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.platform-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.follower-count {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.follower-label {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    font-weight: 500;
}

.brand-content {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.content-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.content-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .content-image img {
    transform: scale(1.08);
}

.content-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.content-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-info h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 700;
}

/* =========================================
   ADVERTISER BENEFITS SECTION
   ========================================= */

.brand-benefits {
    padding: 120px 0;
    background: #fcfdfe; /* Clean, modern off-white */
}

.benefits-intro {
    text-align: center;
    margin-bottom: 70px;
}

.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.benefits-intro h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    font-weight: 800;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* GRID SYSTEM */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* THE CARD */
.benefit-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 40px rgba(25, 22, 96, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(25, 22, 96, 0.1);
    border-color: var(--secondary);
}

/* STYLISH THICK NUMBERS */
.benefit-count {
    margin-bottom: 25px;
}

.benefit-count .num {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: transparent; /* Makes the inside hollow */
    
    /* THICK SECONDARY BORDER */
    -webkit-text-stroke: 2px var(--secondary); 
    
    opacity: 0.8; /* Subtle when resting */
    display: inline-block;
    transition: all 0.4s ease;
}

/* HOVER STATE FOR NUMBERS */
.benefit-card:hover .num {
    color: var(--secondary); /* Fills the number with color */
    opacity: 1;
    transform: scale(1.1); /* Slight pop effect */
}

/* CARD BODY TEXT */
.benefit-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .brand-benefits {
        padding: 80px 0;
    }
    .benefits-intro h2 {
        font-size: 2.2rem;
    }
    .benefits-grid {
        gap: 25px;
    }
    .benefit-card {
        padding: 35px 25px;
    }
}

.brand-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.testimonial-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.partner-logo {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    border-radius: 9%;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.testimonial-text p::before {
    content: '"';
    color: var(--primary);
    font-size: 2rem;
    margin-right: 5px;
}

.testimonial-author {
    border-top: 2px solid var(--primary);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    color: var(--secondary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 1.0rem;
}

.related-brands {
    padding: 80px 0;
    background: var(--light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.related-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 160px;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary);
}

.related-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-card:hover img {
    transform: scale(1.1);
}

.related-card p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.brand-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0f0a3a 100%);
    color: var(--white);
    text-align: center;
}

.brand-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 800;
}

.brand-cta p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

.brand-cta .btn {
    margin: 0 auto;
}

.error-container {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 40px;
}

.error-container h1 {
    font-size: 2.5rem;
    color: var(--text-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .brand-title {
        font-size: 2.5rem;
    }

    .brand-tagline {
        font-size: 1.1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .brand-hero {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .brand-hero {
        height: 450px;
        margin-top: 0;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .brand-tagline {
        font-size: 1rem;
    }

    .brand-logo {
        width: 100px;
        height: 100px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .brand-stats {
        padding: 50px 0;
    }

    .stats-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }

    .brand-about,
    .brand-audience,
    .brand-socials,
    .brand-content,
    .brand-benefits,
    .brand-testimonials,
    .related-brands,
    .brand-cta {
        padding: 60px 0;
    }

    .brand-audience h2,
    .brand-socials h2,
    .brand-content h2,
    .brand-benefits h2,
    .brand-testimonials h2,
    .related-brands h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .audience-grid,
    .social-grid,
    .content-grid,
    .benefits-grid,
    .testimonials-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 30px 20px;
    }

    .brand-cta h2 {
        font-size: 1.8rem;
    }

    .brand-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-hero {
        height: 400px;
    }

    .brand-title {
        font-size: 1.4rem;
    }

    .brand-tagline {
        font-size: 0.95rem;
    }

    .brand-logo {
        width: 80px;
        height: 80px;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn svg {
        display: none;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }

    .slider-nav svg {
        width: 18px;
        height: 18px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .brand-stats,
    .brand-about,
    .brand-audience,
    .brand-socials,
    .brand-content,
    .brand-benefits,
    .brand-testimonials,
    .related-brands,
    .brand-cta {
        padding: 40px 0;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-item {
        padding-bottom: 0;
    }

    .stat-item::after {
        display: none;
    }

    .brand-audience h2,
    .brand-socials h2,
    .brand-content h2,
    .brand-benefits h2,
    .brand-testimonials h2,
    .related-brands h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .audience-card {
        padding: 20px 15px;
    }

    .metric-icon,
    .metric-icon-placeholder {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        font-size: 1.5rem;
    }

    .audience-value {
        font-size: 2rem;
    }

    .audience-metric {
        font-size: 0.9rem;
    }

    .social-card {
        min-height: 150px;
        padding: 25px 15px;
    }

    .platform-name {
        font-size: 1rem;
    }

    .follower-count {
        font-size: 1.6rem;
    }

    .content-image {
        height: 150px;
    }

    .content-info h3 {
        font-size: 0.95rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-header {
        min-height: 50px;
        margin-bottom: 15px;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .testimonial-text p {
        font-size: 0.95rem;
    }

    .testimonial-author strong {
        font-size: 0.95rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }

    .related-card {
        min-height: 140px;
        padding: 20px 15px;
    }

    .related-card img {
        width: 75px;
        height: 75px;
    }

    .related-card p {
        font-size: 0.9rem;
    }

    .brand-cta h2 {
        font-size: 1.5rem;
    }

    .brand-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 1rem;
    }
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .brand-hero,
    .slider-nav,
    .hero-actions,
    .brand-cta {
        display: none;
    }

    body {
        background: var(--white);
    }

    .brand-title,
    .brand-tagline {
        color: var(--dark);
    }
}

.btn:focus,
.social-card:focus,
.related-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a,
button {
    transition: all 0.3s ease;
}


/* Force-disable blur and sharpen images */
.hero-slider, .slide {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Ensure only ONE overlay exists and has no blur */
.hero-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Remove the extra ::before overlay if it's making things look muddy */
.brand-hero::before, .hero-slider::before {
    display: none !important;
}

/* =========================================
   REFINED RESPONSIVE ARCHITECTURE
   ========================================= */

/* Global image handling */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Ensure Slider covers area perfectly */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Text Overlay for Readability */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(25, 22, 96, 0.2), rgba(25, 22, 96, 0.7));
    z-index: 1;
}

/* --- TABLET & LARGE MOBILE (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .brand-hero {
        height: 800px; /* Keeping it tall as requested */
    }
    .brand-title {
        font-size: 3rem;
    }
    .benefits-grid, .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MOBILE OPTIMIZATION (max-width: 768px) --- */
@media (max-width: 768px) {
    .brand-hero {
        height: 750px; /* Strong height for mobile impact */
        padding-top: 60px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .brand-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .brand-tagline {
        font-size: 1.1rem;
        margin: 0 auto 30px;
        max-width: 90%;
    }

    /* Stack all Grids to Single Column */
    .about-wrapper, 
    .stats-wrapper, 
    .benefits-grid, 
    .audience-grid, 
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    /* About Section Image Adjustments */
    .about-image-container {
        margin-top: 40px;
        height: 350px;
    }

    .about-image-container::before {
        display: none; /* Clean up mobile view */
    }

    section {
        padding: 80px 0 !important;
    }

    h2 {
        font-size: 2.2rem !important;
        text-align: center;
    }
}

/* --- SMALL SMARTPHONES (max-width: 480px) --- */
@media (max-width: 480px) {
    .brand-hero {
        height: 700px; /* Still significantly tall for small phones */
    }

    .brand-title {
        font-size: 2.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }

    /* Adjusting Large Elements for Small Screens */
    .stat-number {
        font-size: 2.5rem;
    }

    .benefit-count .num {
        font-size: 2.8rem;
    }

    .audience-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .audience-icon-main {
        width: 65px;
        height: 65px;
    }

    .audience-value {
        font-size: 2rem;
    }
    
    .audience-card {
        padding: 30px 20px;
    }
}