.marketing-hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 24px;
    position: relative;
}

.marketing-hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(180deg, #0F0F0F 0%, rgba(0, 0, 0, 0) 51.92%, #070707 100%);

}

.marketing-hero-section .hero-inner{
    justify-content: center;
    height: 100%;
}

.marketing-hero-section .hero-inner .hero-content{
    text-align: center;
    align-items: center;
    padding-top: 0;
}

.marketing-hero-section .hero-inner .hero-content h1{
    font-size: 56px;
    line-height: 1.1;
    max-width: 900px;
    text-wrap: balance;
}

.marketing-hero-section .hero-content p:first-of-type{
    text-transform: none;
    max-width: 958px;
    font-size: 20px;
}

.marketing-hero-section .hero-content .primary-btn{
    width: fit-content;
    font-size: 18px;
    line-height: 1.6;
}

.marketing-hero-section .see-how-it-works{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 576px){
    .marketing-hero-section{
        height: auto;
        padding: 160px 20px;
    }
    .marketing-hero-section::before{
        display: none;
    }
    .marketing-hero-section .hero-inner .hero-content h1{
        font-size: 40px;
    }
    .marketing-hero-section .hero-content p:first-of-type{
        font-size: 18px;
    }
}


/* Marketing vs Growth Section Styles */
.marketing-growth-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    overflow: hidden;
    position: relative;
}

.marketing-growth-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
}

.marketing-growth-content {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.marketing-growth-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 35px;
    color: var(--text-color);
}

.marketing-growth-lead {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.marketing-growth-sublead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Specific List with Brand Bullets */
.marketing-growth-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.marketing-growth-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.marketing-growth-list li::before {
    content: '●';
    color: #f60043; /* Primary Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 2px;
}

.marketing-growth-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
}

.marketing-growth-footer strong {
    font-weight: 850; /* Garet-Bold weight */
}

/* Image Aura and Portrait Styling */
.marketing-growth-image {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-glow-aura {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.portrait-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .marketing-growth-wrapper {
        flex-direction: column-reverse;
        text-align: left;
    }

    .marketing-growth-title {
        font-size: 38px;
    }

    .marketing-growth-image {
        margin-top: 50px;
        order: -1;
    }
}


/* Fragmented Marketing Section Styles */
.fragmented-marketing-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle red glow hitting the top-right corner */
.fragmented-marketing-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.fragmented-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fragmented-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

.fragmented-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.fragmented-title .text-signature {
    font-size: 64px;
}

/* Glass Card Styling */
.fragmented-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.card-intro, 
.card-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

/* Impact List with Red Bullets */
.fragmented-impact-list {
    list-style: none;
    padding: 0;
}

.fragmented-impact-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.fragmented-impact-list li::before {
    content: '◉';
    color: #A30933; /* Primary red bullet from brand-audit.css */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.fragmented-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .fragmented-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .fragmented-image:nth-child(1){
        order: 2;
    }
    .fragmented-image:nth-child(2){
        order: 1;
    }

    .fragmented-title {
        font-size: 42px;
        text-align: left;
    }

    .fragmented-image {
        max-width: 550px;
        margin: 0 auto;
    }
}


/* Marketing Ecosystem Section Styles */
.marketing-ecosystem-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    overflow: hidden;
    position: relative;
}

.ecosystem-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
}

.ecosystem-content {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.ecosystem-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 45px;
    color: var(--text-color);
}

.ecosystem-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0.9;
}

.ecosystem-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* List with Brand Bullets */
.ecosystem-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
}

.ecosystem-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.ecosystem-list li::before {
    content: '●';
    color: #f60043; /* Primary Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 2px;
}

.ecosystem-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
}

.ecosystem-footer strong {
    font-weight: 850; /* Garet-Bold weight */
}

/* Image and Atmosphere Styling */
.ecosystem-image {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-glow-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.portrait-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: grayscale(100%);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .ecosystem-wrapper {
        flex-direction: column-reverse;
        text-align: left;
    }

    .ecosystem-title {
        font-size: 38px;
    }

    .ecosystem-image {
        margin-top: 50px;
        order: -1; /* Image appears first on mobile */
    }

    .red-glow-backdrop {
        width: 320px;
        height: 320px;
    }
}


/* Predictable Growth Coordination Section */
.growth-coordination-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow behind the content */
.growth-coordination-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: rgba(246, 0, 67, 0.3);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.coordination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.coordination-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

.coordination-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.coordination-title .text-signature {
    font-size: 64px;
}

/* Glass Card Styling */
.coordination-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.card-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 15px;
}

.card-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Feature List with Red Bullets */
.coordination-feature-list {
    list-style: none;
    padding: 0;
}

.coordination-feature-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.coordination-feature-list li::before {
    content: '◉';
    color: #A30933; /* Brand Primary Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.coordination-footer p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .coordination-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .coordination-image:nth-child(1){
        order: 2;
    }
    .coordination-image:nth-child(2){
        order: 1;
    }

    .coordination-title {
        font-size: 42px;
        text-align: left;
    }

    .coordination-image {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* Revenue vs Noise Section Styling */
.revenue-noise-section {
    padding: 120px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.revenue-header {
    margin-bottom: 60px;
}

.revenue-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
}

/* Glassmorphism Card with Internal Glow */
.revenue-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Atmospheric glow positioned inside the card on the right */
.revenue-glass-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: rgba(140, 1, 39, 0.57);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.card-inner-content {
    max-width: 600px;
}

.revenue-glass-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.card-main-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.card-main-text strong {
    font-weight: 850; /* Garet-Bold */
}

.methodology-list p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .revenue-title {
        font-size: 38px;
    }

    .revenue-glass-card {
        padding: 40px 25px;
    }

    .card-main-text {
        font-size: 18px;
    }
}


/* Strategy Is The System Section Styles */
.strategy-system-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Atmospheric red glow in the top-left corner background */
.strategy-system-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: rgba(140, 1, 39, 0.57);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.strategy-system-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.strategy-system-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.strategy-system-title .text-signature {
    font-size: 64px;
}

/* Glass Card Content Styling */
.strategy-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
}

.strategy-glass-card .card-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature List with Signature Red Bullets */
.strategy-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.strategy-feature-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.strategy-feature-list li::before {
    content: '◉';
    color: #A30933; /* Primary Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.strategy-closing p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* Image Styling */
.strategy-system-image{
    display: flex;
    justify-content: end;
    align-items: center;
}

.strategy-system-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .strategy-system-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .strategy-system-title {
        font-size: 42px;
        text-align: left;
    }

    .strategy-system-image {
        max-width: 600px;
        margin: 0 auto;
    }
}


/* Brand Growth Strategy Section */
.brand-growth-strategy-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow in the center */
.brand-growth-strategy-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.growth-strategy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    position: relative;
    z-index: 1;
}

/* Left Column Styles */
.strategy-main-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.strategy-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.strategy-glass-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.strategy-definition-list {
    list-style: none;
    padding: 0;
}

.strategy-definition-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.strategy-definition-list li::before,
.outcomes-list li::before {
    content: '●';
    color: #A30933; /* Brand Primary Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.strategy-blueprint-note {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    opacity: 0.8;
}

/* Right Column Styles */
.strategy-sub-title {
    font-family: 'Prata', serif;
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.investment-amount {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    margin-bottom: 50px;
}

.investment-amount strong {
    font-weight: 850; /* Garet-Bold */
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
}

.outcomes-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

/* CTA Alignment */
.strategy-actions .primary-btn {
    width: fit-content;
    padding: 20px 40px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .growth-strategy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .strategy-main-title {
        font-size: 42px;
    }
}


/* Strategy To Execution Section Styling */
.execution-alignment-section {
    padding: 120px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Atmospheric red glow in bottom-left background */
.execution-alignment-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.execution-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Capabilities Card Styling */
.capabilities-title {
    font-family: 'Prata', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.capabilities-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
}

.capabilities-list {
    list-style: none;
    padding: 0;
}

.capabilities-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    opacity: 0.9;
}

.capabilities-list li::before {
    content: '●';
    color: #A30933; /* Brand Primary Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* Right Side Content Styling */
.execution-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.execution-title .text-signature {
    font-size: 64px;
}

.copy-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

.package-details p,
.requirement-note {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.requirement-note {
    margin-top: 35px;
    opacity: 1;
}

.alignment-statement p {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.alignment-statement strong {
    font-weight: 850; /* Garet-Bold */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .execution-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .execution-title {
        font-size: 42px;
    }

    .capabilities-glass-card {
        padding: 40px 30px;
    }
}


/* Sustainable Growth Section Styling */
.sustainable-growth-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.sustainable-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Typography Styling */
.sustainable-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--text-color);
}

.sustainable-title .text-signature {
    font-size: 64px;
}

.copy-lead, 
.copy-body {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Image and Glow Styling */
.sustainable-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.red-atmospheric-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.sustainable-image img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    filter: grayscale(100%);
    width: 100%;
    max-width: 600px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .sustainable-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sustainable-image:nth-child(1){
        order: 2;
    }
    .sustainable-image:nth-child(2){
        order: 1;
    }

    .sustainable-title {
        font-size: 42px;
    }

    .sustainable-image {
        order: -1; /* Image appears first on mobile devices */
    }
}


/* Fit Qualifier Section Styling */
.fit-qualifier-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Typography Styling */
.fit-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    margin-bottom: 50px;
    color: var(--text-color);
}

.fit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.fit-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    opacity: 0.9;
}

/* Brand Primary Red Bullet */
.fit-list li::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.not-a-fit {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    max-width: 450px;
    opacity: 0.8;
}

.not-a-fit strong {
    font-weight: 850; /* Garet-Bold */
    color: var(--text-color);
}

/* Image and Glow Styling */
.fit-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.fit-glow-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.fit-image img {
    position: relative;
    z-index: 1;
    filter: grayscale(100%);
    width: 100%;
    max-width: 500px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .fit-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .fit-image:nth-child(1){
        order: 2;
    }
    .fit-image:nth-child(2){
        order: 1;
    }

    .fit-title {
        font-size: 42px;
    }

    .fit-image {
        order: -1; /* Image moves above text on mobile */
    }
}


@media (max-width: 576px){
    section {
        padding: 60px 24px !important;
    }
}