@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@400;500;700&family=Outfit:wght@400;500;700&display=swap');

/* Satoshi fallback to Outfit if not found */
@font-face {
    font-family: 'Satoshi';
    src: url('https://cdn.fontshare.com/wf/TTX2Z3BF3S6YOR6S6S6S6S6S6S6S6S6S/76621487849c4f7499690d7945d81232/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

:root {
    --primary-red: #D4323D;
    --dark-red: #A22831;
    --deep-bg: #2A1115;
    --white: #FFFFFF;
    --white-soft: #FFFFF0;
    --glass-bg: rgba(63, 31, 31, 0.2);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
    position: relative;
    margin-right: -10px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(42, 17, 21, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-nav a {
    font-family: 'Helvetica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav a.active {
    color: #D4323D;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-capsule {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .mobile-overlay {
        display: flex !important;
    }
}

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

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    background-color: #2A1115;
}

body {
    background: radial-gradient(118.85% 178.27% at 73.59% 47.13%, #D4323D 7%, #A22831 29%, #2A1115 77%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    font-family: 'Satoshi', 'Outfit', sans-serif;
    color: var(--white);
    min-height: 100vh;
}

.casestudy-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.cs-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

/* Navbar */
.main-header {
    position: absolute !important;
    width: 100%;
    max-width: 1440px;
    top: 50px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px !important;
    /* Removed top padding to move it up */
}

.header-logo {
    width: 199px;
    height: 109px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-capsule {
    width: auto;
    min-width: 813px;
    height: 70px;
    background: #FFFFFF;
    border: 0.5px solid #E1E1E1;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), -14.6921px 110.191px 44.8926px rgba(0, 0, 0, 0.01), -8.16229px 62.0334px 37.5466px rgba(0, 0, 0, 0.03), -3.26492px 27.7518px 27.7518px rgba(0, 0, 0, 0.04), -0.81623px 6.52984px 15.5084px rgba(0, 0, 0, 0.05);
    border-radius: 35.9141px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    gap: 45px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item a {
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-item.active-pill {
    padding: 10px 25px;
    background: #D4323D;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.active-pill a {
    color: #FFFFFF;
    font-weight: 500;
}

/* CONTACT */

/* Hero Section */
.cs-hero {
    margin-top: 280px;
    /* Increased padding to prevent any header overlap */
    text-align: center;
    width: 100%;
}

.cs-hero-title {
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
    font-size: 64px;
    /* Reduced from 90px */
    line-height: 1.2;
    text-transform: uppercase;
    width: 1000px;
    margin: 0 auto;
}

.cs-hero-title span {
    display: block;
    font-size: 38px;
    /* Further reduced as per request */
    line-height: 1.5;
    margin-top: 15px;
}

.cs-hero-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    /* Reduced from 28px */
    font-weight: 400;
    line-height: 32px;
    margin-top: 30px;
}

/* Showcase Grid */
.cs-showcase-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 85px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.cs-showcase-card {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 620px;
    height: auto;
    min-height: 500px;
    background: rgba(63, 31, 31, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 27.83px;
    /* Glossy Borders on all sides */
    border-top: 1.16px solid rgba(255, 255, 255, 0.4);
    border-left: 1.16px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1.16px solid rgba(255, 255, 255, 0.4);
    border-right: 1.16px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure all content is left-aligned */
    text-align: left;
}

.card-badge {
    background: #D4323D;
    color: #FFFFFF;
    border-radius: 9px;
    padding: 8px 18px;
    font-family: 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
    text-transform: uppercase;
}

.card-title {
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    margin-top: 35px;
    color: #FFFFFF;
    text-transform: none;
}

.view-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    /* Centered as per screenshot */
    background: #D4323D;
    border-radius: 12px;
    padding: 14px 60px;
    /* Precise capsule padding */
    font-family: 'Helvetica', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #A22831;
    transform: translateX(-50%) scale(1.05);
}

/* Proven Results Section */
.cs-results {
    margin-top: 220px;
    text-align: center;
    width: 100%;
}

.cs-section-accent-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 44px;
    text-decoration: underline;
    text-transform: capitalize;
    margin-bottom: 140px;
}

.results-grid {
    display: flex;
    justify-content: space-between;
    padding: 0 110px;
    position: relative;
}

.results-grid::before,
.results-grid::after {
    content: '';
    position: absolute;
    left: 110px;
    right: 110px;
    height: 1px;
    background: #FFFFFF;
    transform: rotate(-0.34deg);
}

.results-grid::before {
    top: -46px;
}

.results-grid::after {
    bottom: -40px;
}

.result-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item .label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.result-item .value {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1.2px;
    text-transform: capitalize;
}

/* Challenges Section */
.cs-challenges-section {
    margin-top: 200px;
    width: 100%;
}

.badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.badge-v3 {
    background: rgba(240, 240, 240, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 30px;
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: inset 0px -5px 4px rgba(255, 255, 255, 0.25), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
}

.title-v3 {
    text-align: center;
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 142.02%;
    text-transform: capitalize;
    margin-bottom: 100px;
}

.challenges-list {
    display: flex;
    justify-content: center;
    gap: 160px;
    padding: 0 100px;
}

.challenge-col {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.challenge-li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
}

.challenge-li .num {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Strategy Section */
.cs-strategy-section {
    margin-top: 220px;
}

.approach-badge {
    background: #F6E0E0;
    border-radius: 24px;
    padding: 10px 25px;
    color: #D4323D;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
}

.strategy-cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
}

.strategy-card {
    width: 309px;
    height: 313px;
    background: rgba(63, 31, 31, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 27.8px;
    padding: 30px 22px;
    /* Glossy Borders on all sides */
    border-top: 1.16px solid rgba(255, 255, 255, 0.4);
    border-left: 1.16px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1.16px solid rgba(255, 255, 255, 0.4);
    border-right: 1.16px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.s-number {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: #E5E7EB;
    margin-bottom: 25px;
}

.s-content h4 {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
}

.s-content p {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: var(--white);
}

/* Impact Section */
.cs-impact-section {
    margin-top: 150px;
    background: url('path-to-red-bg-rect.png');
    /* Rectangle 10310 */
    padding: 100px 0;
}

.impact-main-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 90px;
    text-align: center;
    margin-bottom: 100px;
}

.impact-stats {
    display: flex;
    justify-content: center;
    position: relative;
}

.stat-box {
    width: 430px;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 200px;
    width: 1px;
    background: #FFFFFF;
    opacity: 0.4;
    transform: rotate(0.75deg);
}

.stat-num {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 120px;
    line-height: 138px;
}

.stat-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    text-transform: capitalize;
    margin-top: 15px;
}

/* Comparison Section */
.cs-comparison {
    margin-top: 100px;
    width: 100%;
}

.comparison-block {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 100px;
}

.comp-text {
    flex: 1;
}

.comp-text h3 {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.comp-line {
    width: 80px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.comp-text p {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    max-width: 400px;
}

.comp-phones {
    display: flex;
    gap: 30px;
}

.comp-phones img {
    width: 253px;
    height: auto;
}

.after {
    margin-top: 0px;
    justify-content: flex-end;
}

.after .comp-text {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* CTA Section */
.cs-cta-final {
    margin-top: 200px;
    text-align: center;
    padding-bottom: 200px;
}

.cs-cta-final h2 {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.25;
    width: 843px;
    margin: 0 auto 70px;
}

.cta-primary-btn {
    background: #D4323D;
    border-radius: 12px;
    padding: 0 40px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-family: 'Helvetica', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

/* --- HOME PAGE SYNCED COMPONENTS (MARQUEE, FOOTER, LOGO) --- */

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@700&display=swap');

.logo-box-gbb {
    background: url("https://storage.googleapis.com/tagjs-prod.appspot.com/v1/flFwkqyA62/71u9cghl_expires_30_days.png") center/contain no-repeat !important;
}

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

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

.animate-marquee-gbb {
    display: flex;
    animation: marquee-gbb 30s linear infinite;
}

/* Equivalent Vanilla CSS for the Tailwind classes used in Home Marquee */
.animate-marquee-gbb span {
    font-size: 70px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    color: #D4323D !important;
    text-transform: uppercase !important;
    margin-left: 56px !important;
    margin-right: 56px !important;
    display: flex !important;
    align-items: center !important;
    gap: 56px !important;
    white-space: nowrap !important;
    font-family: 'Antonio', sans-serif !important;
}

.animate-marquee-gbb .text-6xl {
    font-size: 60px !important;
}

.marquee-wrapper-gbb {
    margin-top: 50px;
    background: white !important;
    height: 120px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

/* UNIQUE ISOLATED FOOTER STYLES */
.gbb-footer-section {
    background-color: #00010B !important;
    color: #FFFFF0 !important;
    width: 100% !important;
    min-height: 490px !important;
    padding: 40px 0 30px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: hidden !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    position: relative !important;
    z-index: 100 !important;
}

.gbb-footer-container {
    width: 100% !important;
    max-width: 1500px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    /* Re-applied vertical centering per request */
    padding: 0 60px !important;
    position: relative !important;
}

.gbb-brand-col {
    flex: 0 0 409px !important;
    display: block !important;
}

.gbb-footer-logo {
    width: 199px !important;
    height: 109px !important;
    margin-bottom: 20px !important;
    background: url("https://storage.googleapis.com/tagjs-prod.appspot.com/v1/flFwkqyA62/71u9cghl_expires_30_days.png") center/contain no-repeat !important;
    display: block !important;
    filter: brightness(1.2) !important;
}

.gbb-brand-description {
    font-family: 'Satoshi', 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 28px !important;
    color: #FFFFF0 !important;
    margin-bottom: 20px !important;
    text-align: left !important;
    max-width: 409px !important;
}

.gbb-contact-unit {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

.gbb-bullet-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #FFFFFF !important;
    border-radius: 50% !important;
    margin-top: 12px !important;
    flex-shrink: 0 !important;
}

.gbb-contact-info-block {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.gbb-contact-label {
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    display: block !important;
    color: #FFFFF0 !important;
}

.gbb-contact-value {
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 35px !important;
    color: #FFFFFF !important;
}

.gbb-contact-value.email {
    font-size: 20px !important;
}

.gbb-links-col {
    display: block !important;
}

.gbb-links-col h3 {
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    margin-bottom: 40px !important;
    text-align: left !important;
    color: #FFFFFF !important;
    text-transform: none !important;
}

.gbb-links-col ul {
    list-style: none !important;
    padding: 0 !important;
    text-align: left !important;
    margin: 0 !important;
}

.gbb-links-col ul li {
    margin-bottom: 25px !important;
    display: block !important;
}

.gbb-links-col ul li a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s !important;
    display: block !important;
}

.gbb-links-col ul li a:hover {
    opacity: 1 !important;
}

.gbb-social-col h3 {
    font-size: 24px !important;
    font-weight: 500 !important;
    margin-bottom: 40px !important;
    text-align: left !important;
    color: #FFFFFF !important;
}

.gbb-social-flex {
    display: flex !important;
    gap: 12px !important;
}

.gbb-social-icon {
    width: 45px !important;
    height: 45px !important;
    border: 1px solid #FFFFF0 !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #FFFFF0 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    transition: background 0.3s, color 0.3s !important;
}

.gbb-social-icon:hover {
    background-color: #FFFFF0 !important;
    color: #00010B !important;
}

.gbb-footer-bottom {
    width: 100% !important;
    max-width: 1272px !important;
}

.gbb-footer-line {
    width: 100% !important;
    border-top: 1px solid #FFFFF0 !important;
    margin-bottom: 25px !important;
    opacity: 0.2 !important;
}

.gbb-copyright-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-align: center !important;
    color: #FFFFF0 !important;
}

/* Responsive fixes */
/* ==========================================================================
   FORCE MOBILE RESPONSIVENESS OVERHAUL (Aggressive Override)
   ========================================================================== */

@media (max-width: 1024px) {

    /* Base Overrides */
    html,
    body,
    .casestudy-page {
        width: 100% !important;
        background: radial-gradient(118.85% 178.27% at 73.59% 47.13%, #D4323D 7%, #A22831 29%, #2A1115 77%) !important;
        background-attachment: scroll !important;
        overflow-x: hidden !important;
    }

    /* Navbar */
    .main-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px !important;
        height: auto !important;
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        top: 0 !important;
    }

    .header-logo,
    .logo-box-gbb {
        position: relative !important;
        width: 120px !important;
        height: 60px !important;
        left: 0 !important;
        top: 0 !important;
        background-size: contain !important;
    }

    .nav-capsule {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
    }

    /* Hero */
    .cs-hero {
        text-align: center !important;
        padding: 20px !important;
        margin-top: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cs-hero-title {
        font-size: 22px !important;
        line-height: 1.4 !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        padding: 0 !important;
    }

    .cs-hero-title span {
        font-size: 16px !important;
        display: inline !important;
    }

    .cs-hero-subtitle {
        font-size: 14px !important;
        opacity: 0.9 !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }

    /* Cards */
    .cs-showcase-grid {
        padding: 15px !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .cs-showcase-card {
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        padding: 15px !important;
        border-radius: 12px !important;
        background: rgba(63, 31, 31, 0.3) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        width: 100% !important;
        height: auto !important;
        /* CRITICAL: Override 500px desktop height */
        min-height: unset !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .card-badge {
        font-size: 9px !important;
        margin-bottom: 5px !important;
        position: static !important;
        display: block !important;
    }

    .card-title {
        font-size: 15px !important;
        margin-bottom: 12px !important;
        position: static !important;
        width: 100% !important;
        text-align: left !important;
        line-height: 1.3 !important;
    }

    .view-btn {
        background: #ff4d4d !important;
        padding: 10px 20px !important;
        border-radius: 6px !important;
        display: inline-block !important;
        font-size: 14px !important;
        width: auto !important;
        position: relative !important;
        /* Move into card flow */
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        border: none !important;
        margin-top: 10px !important;
        text-align: center !important;
    }

    /* Results Redesign */
    .cs-results {
        text-align: center !important;
        padding: 40px 20px !important;
        margin-top: 40px !important;
        /* Removed huge desktop margin */
    }

    .results-grid::before,
    .results-grid::after {
        display: none !important;
    }

    /* Remove white lines */

    .cs-section-accent-title {
        font-size: 24px !important;
        margin-bottom: 30px !important;
        color: #fff !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        text-decoration: none !important;
        border-bottom: 2px solid #ff4d4d !important;
        display: inline-block !important;
        padding-bottom: 5px !important;
    }

    .results-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        /* 2x2 layout */
        gap: 15px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .result-item {
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 20px 10px !important;
        border-radius: 12px !important;
        background: rgba(63, 31, 31, 0.4) !important;
        /* Synced with deep red theme */
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 110px !important;
    }

    .result-item .label {
        font-size: 10px !important;
        opacity: 0.6 !important;
        text-transform: uppercase !important;
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
        display: block !important;
    }

    .result-item .value {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #fff !important;
        line-height: 1.2 !important;
        display: block !important;
        text-transform: capitalize !important;
    }

    /* Challenges Section Redesign */
    .cs-challenges-section {
        padding: 40px 20px !important;
        margin-top: 40px !important;
        /* Removed huge desktop margin */
        width: 100% !important;
    }

    .title-v3 {
        font-size: 20px !important;
        text-align: center !important;
        margin-bottom: 30px !important;
        line-height: 1.4 !important;
    }

    .challenges-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 !important;
    }

    .challenge-li {
        display: flex !important;
        flex-direction: column !important;
        /* Stacked layout */
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    .challenge-li .num {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 30px !important;
        height: 30px !important;
        background: #D4323D !important;
        border-radius: 50% !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #fff !important;
    }

    .challenge-li::before {
        display: none !important;
    }

    /* Approach Section Redesign */
    .cs-strategy-section {
        margin-top: 40px !important;
        /* Removed huge desktop margin */
        padding: 0 20px !important;
    }

    .cs-strategy-section .title-v3 {
        margin-bottom: 20px !important;
        /* Space after 'Overcoming the challenges' */
    }

    .strategy-cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 !important;
        margin-top: 20px !important;
        /* Reduced space after the title */
    }

    .strategy-card {
        background: rgba(63, 31, 31, 0.3) !important;
        backdrop-filter: blur(20px) !important;
        padding: 20px !important;
        border-radius: 12px !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-sizing: border-box !important;
    }

    .s-number {
        font-size: 24px !important;
        margin-bottom: 8px !important;
        position: static !important;
        color: #ff4d4d !important;
    }

    .s-content h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        font-weight: 700 !important;
    }

    .s-content p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        opacity: 0.8 !important;
    }

    /* Impact Section Redesign */
    .cs-impact-section {
        margin-top: 50px !important;
        /* Removed huge desktop margin */
        padding: 40px 20px !important;
        background-attachment: scroll !important;
        /* Performance on mobile */
    }

    .impact-main-title {
        font-size: 24px !important;
        /* Better visibility */
        text-align: center !important;
        margin-bottom: 40px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .impact-stats {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
    }

    .stat-box {
        padding: 0 !important;
        border: none !important;
        text-align: center !important;
        width: 100% !important;
    }

    .stat-num {
        font-size: 40px !important;
        /* Bolder visibility */
        font-weight: 800 !important;
        color: #fff !important;
        margin-bottom: 5px !important;
        line-height: 1 !important;
    }

    .stat-text {
        font-size: 14px !important;
        text-transform: uppercase !important;
        opacity: 0.8 !important;
        letter-spacing: 1px !important;
    }

    .stat-box:not(:last-child)::after {
        display: none !important;
    }

    /* Hide desktop bars */

    /* Comparison Redesign */
    .cs-comparison {
        padding: 40px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
    }

    .comparison-block {
        background: rgba(63, 31, 31, 0.4) !important;
        backdrop-filter: blur(20px) !important;
        border-radius: 20px !important;
        padding: 30px 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .comparison-block h3 {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #fff !important;
        margin-bottom: 10px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .comp-text p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        opacity: 0.8 !important;
        margin-bottom: 25px !important;
    }

    .comp-line {
        width: 40px !important;
        height: 3px !important;
        background: #ff4d4d !important;
        margin: 0 auto 15px auto !important;
    }

    .comp-phones {
        display: flex !important;
        flex-direction: row !important;
        /* Side by side */
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 8px !important;
        /* Tighter gap for small row */
        width: 100% !important;
        margin-top: 15px !important;
    }

    .comp-phones img {
        width: 31% !important;
        /* Fits 3 side by side */
        max-width: 110px !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
        height: auto !important;
    }

    /* CTA Section Redesign */
    .cs-cta-final {
        padding: 60px 20px !important;
        text-align: center !important;
        margin-top: 60px !important;
        /* Removed huge desktop margin */
    }

    .cs-cta-final h2 {
        font-size: 20px !important;
        /* Slightly shrunken to fit better */
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
        font-weight: 700 !important;
        width: 100% !important;
        max-width: none !important;
        white-space: normal !important;
        /* Allow wrapping */
        word-wrap: break-word !important;
        display: block !important;
    }

    .cta-primary-btn {
        display: inline-block !important;
        background: #ff4d4d !important;
        padding: 15px 40px !important;
        /* Larger pill style */
        border-radius: 30px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #fff !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        letter-spacing: 1px !important;
        box-shadow: 0 5px 20px rgba(212, 50, 61, 0.3) !important;
    }

    /* Footer Sync */
    .gbb-footer-container {
        padding: 20px !important;
        gap: 30px !important;
        flex-direction: column !important;
    }

    .gbb-brand-col,
    .gbb-links-col,
    .gbb-social-col {
        text-align: left !important;
        width: 100% !important;
    }

    .gbb-links-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Marquee Mobile Sync (Matches Home Page) */
    .marquee-wrapper-gbb {
        height: 60px !important;
        margin-top: 30px !important;
    }

    .animate-marquee-gbb span {
        font-size: 28px !important;
        gap: 20px !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .animate-marquee-gbb .text-6xl {
        font-size: 30px !important;
    }
}