:root {
    --color-primary: #137374;
    --color-dark-blue-0a: #0a355b;
    --color-dark-navy: #032137;
    --color-gray-text: #434343;
    --color-white: #ffffff;
    --color-cream: #fff7e9;
    --color-yellow: #fed992;
    --color-yellow-border: #fdbf49;
    --color-green: #98d29b;
    --color-teal-light: #78c6c4;
    
    --font-heading: 'Figtree', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-body);
    background-color: #fff;
    color: var(--color-gray-text);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ====================================
   Layout & Typography Utils
   ==================================== */
.landing-page {
    position: relative;
    width: 100%;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background: #fff;
    /* Center align large content */
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* Wrapper to constrain max width on large screens */
.landing-page > header,
.landing-page > section,
.landing-page > footer {
    width: 100%;
    max-width: 1440px; /* Standard Max Width */
    margin: 0 auto;
}

/* Footer and Header might need full width backgrounds, 
   so we might wrap their INTERNALS instead. 
   Let's keep it simple for sections first. */
.landing-page > section {
    box-sizing: border-box;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 18px;
    line-height: 35px;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.h1-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 70px;
    line-height: 90px;
    color: var(--color-dark-navy);
}

.h2-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 45px;
    line-height: 55px; /* or 60px depending on section */
    color: var(--color-dark-navy);
}

.body-text-lg {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    color: var(--color-gray-text);
}

.body-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-gray-text);
}

/* ====================================
   Header
   ==================================== */
.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px clamp(20px, 5vw, 100px);
    background: linear-gradient(135deg, rgba(120, 198, 196, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.header-menu.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-menu.visible {
    transform: translateY(0);
    opacity: 1;
}

.logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 30px;
    line-height: 45px;
    color: var(--color-dark-blue-0a);
    display: inline-flex;
    gap: 6px;
}

.logo img {
    height: 120px !important;
    width: auto;
}

/* Logo Animation */
.logo-rn {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    background-color: transparent;
    color: var(--color-dark-blue-0a);
    transition: background-color 0.3s ease, color 0.3s ease;
    animation: rnHighlight 2s ease-in-out infinite;
}

.logo-analytics {
    display: inline-block;
    padding: 2px 0;
    color: var(--color-dark-blue-0a);
    transition: opacity 0.3s ease;
    animation: analyticsHighlight 2s ease-in-out infinite;
}

@keyframes rnHighlight {
    0%, 100% {
        background-color: transparent;
        color: var(--color-dark-blue-0a);
    }
    25%, 50% {
        background-color: var(--color-dark-blue-0a);
        color: #fff;
    }
}

@keyframes analyticsHighlight {
    0%, 50% {
        opacity: 0.6;
    }
    75%, 100% {
        opacity: 1;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.mobile-nav-only {
    display: none !important;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark-navy);
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-primary);
}


/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    padding: clamp(160px, 18vh, 220px) clamp(20px, 5vw, 100px) clamp(60px, 8vh, 100px); /* Increased top padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible; /* Allow decorations to extend if needed */
}

.hero-deco-star {
    position: absolute;
    top: 15%; /* Fluid positioning */
    left: 13%;
    width: 60px;
    height: 60px;
    background-image: url('../assets/icons/Star 26.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-deco-star-bottom {
    position: absolute;
    top: 93%;
    left: 70%;
    width: 60px;
    height: 60px;
    background-image: url('../assets/icons/Star 29.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-deco-star-30 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 60px;
    height: 60px;
    background-image: url('../assets/icons/Star 30.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-deco-star-30-bottom {
    position: absolute;
    top: 90.5%;
    left: 10%;
    width: 60px;
    height: 60px;
    background-image: url('../assets/icons/Star 30.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-deco-percent {
    position: absolute;
    bottom: 15%; /* Fluid positioning */
    left: 18%;
    width: 60px;
    height: 60px;
    background-image: url('../assets/icons/Group 17.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-deco-dash {
    position: absolute;
    bottom: 18%; /* Fluid positioning */
    right: 18%;
    width: 60px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 4px;
    z-index: 1;
}

.hero-section h1 {
    max-width: 1165px;
    margin-bottom: 60px;
}

/* Adjusting gap to be reasonable for web if 220px is too huge, 
   but user asked for explicit design follow. 
   Let's use a large noticeable gap. */

.hero-sub {
    max-width: 881px;
    margin-bottom: 90px;
}

.btn-primary {
    background: var(--color-primary);
    border-radius: 25px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    line-height: 55px;
    padding: 5px 60px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0e5859;
}


/* ====================================
   How We Work Section
   ==================================== */
.how-we-work-section {
    position: relative;
    padding: 30px clamp(20px, 5vw, 100px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 100px);
    background-color: #FED99233;
}

/* Background blob removed */

/* Left Column: Vertical Process */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* Gaps handled by spacing */
    position: relative;
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
}

.process-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 2;
}

.line {
    width: 2px;
    flex-grow: 1;
    min-height: 80px;
    margin-top: -2px; /* connect to dot */
    z-index: 1;
}

.process-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    color: var(--color-dark-navy);
    margin-bottom: 5px;
}

.process-content p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-gray-text);
    max-width: 480px; /* approximate from Figma width */
}

/* Step Specific Colors */
.p-decisions .dot { background: var(--color-teal-light); }
.p-decisions .line { background: var(--color-teal-light); }

.p-data .dot { background: var(--color-primary); }
.p-data .line { background: var(--color-primary); }

.p-systems .dot { background: var(--color-green); }
.p-systems .line { background: var(--color-green); }

.p-insights .dot { background: var(--color-dark-blue-0a); }
.p-insights .line { background: var(--color-dark-blue-0a); }

.p-action .dot { background: var(--color-yellow); }
.p-action .line { display: none; } /* Last one */

/* Right Column: Text */
.how-we-work-text {
    padding-top: 100px; /* Align with visual */
}

.how-we-work-text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    color: var(--color-gray-text);
}


/* ====================================
   Services Pillars Section
   ==================================== */
.services-section {
    padding: 80px clamp(20px, 5vw, 100px) 80px;
}

.services-layout {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.services-menu {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-tab {
    padding: 24px;
    border-radius: 25px;
    cursor: pointer;
    background: white;
    border: 1px solid transparent; /* inactive state */
    transition: all 0.3s;
}

.service-tab h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    color: var(--color-dark-navy);
}

.service-tab.active {
    background: rgba(152, 210, 155, 0.20);
    border: 1px solid var(--color-green);
}

.service-detail-container {
    flex: 1;
}

.service-detail-card {
    border: 1px solid var(--color-green);
    border-radius: 40px;
    padding: 60px;
    background: white;
    min-height: 647px;
    display: none;
    /* Flexbox layout to push image to bottom */
    flex-direction: column;
    justify-content: space-between;
}
.service-detail-card.active { display: flex; }

.service-detail-card p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    color: black;
}


/* ====================================
   Proof & Impact Section
   ==================================== */
.proof-section {
    margin: 40px clamp(20px, 12vw, 210px) 100px;
    padding: 80px 0 70px;
    background: rgba(120, 198, 196, 0.15);
    border-radius: 70px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* Decorative yellow bar icon */
.proof-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 80px;
    width: 60px;
    height: 8px;
    background: #fdbf49;
    border-radius: 4px;
}

/* Header Box Overlay */
.proof-header-box {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Title Border Box */
.proof-header-content {
    padding: 0;
    background: transparent;
}

.proof-section {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.proof-section h2 {
    margin-bottom: 0;
    font-size: 42px;
    line-height: 1.3;
    color: var(--color-dark-navy);
    font-family: var(--font-heading);
    font-weight: 800;
}

.impact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
}

.impact-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    flex: 0 0 220px;
    width: 220px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    position: relative;
}

.impact-card:first-child {
    transform: translateX(45%);
    margin-right: 110px;
}

.impact-card:last-child {
    transform: translateX(-45%);
    margin-left: 110px;
}

.impact-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 20px;
}

.impact-title-lg {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    color: #78c6c4;
    margin-bottom: 15px;
}

.impact-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-dark-navy);
    font-weight: 400;
    text-transform: none;
}

/* Specific Colors */
.c-teal { color: #137374; }
.c-yellow { color: #fdbf49; }
.c-green { color: #98d29b; }
.c-blue { color: #0a355b; }

.fw-800 { font-weight: 800; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .impact-grid {
        flex-wrap: wrap;
    }
    .proof-section {
        margin: 80px 50px;
        padding: 50px 40px 60px;
    }
    .impact-card {
        width: 45%; 
    }
}

@media (max-width: 768px) {
    .proof-header-content {
        padding: 0;
    }
    .proof-section {
        margin: 60px 20px;
        padding: 40px 20px;
        border-radius: 40px;
    }
    .impact-card {
        width: 100%;
        max-width: 100%;
    }
}

.fw-800 { font-weight: 800; }

/* Base State: Hide Mobile Components on Desktop */
.services-mobile-accordion, 
.mobile-menu-btn {
    display: none;
}

/* ====================================
   Mobile Strict Implementation (max-width: 480px)
   ==================================== */
@media (max-width: 480px) {
    /* 1. Header */
    .header-menu { padding: 10px 20px; }
    .logo img {
        height: 50px !important;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: #EFF8F6;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links.active .mobile-nav-only { display: block !important; }
    
    .mobile-nav-logo {
        width: 60px;
        height: auto;
        margin-bottom: 0;
    }

    .nav-links.active .mobile-nav-btn {
        background-color: var(--color-primary) !important;
        color: #fff !important;
        width: 250px !important;
        height: 60px !important;
        font-size: 20px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        border-radius: 25px;
    }

    .mobile-menu-btn { display: block; background: none; border: none; z-index: 1000; }
    .mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--color-dark-navy); margin: 5px 0; transition: 0.3s; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

    /* 2. Hero Section */
    .hero-section {
        padding: 90px 20px 40px;
    }
    .h1-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 10px;
    }
    .hero-sub {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 40px;
    }
    .btn-primary {
        font-size: 24px;
        padding: 15px 40px;
        line-height: 1.2;
        width: 100%;
        text-align: center;
    }
    /* Hide desktop decorations, show mobile ones if needed or adjust */
    /* .hero-deco-star, .hero-deco-star-30, .hero-deco-percent { display: none; }  */
    .hero-deco-dash { right: 5%; bottom: 60%; } /* Simplified positioning */
    .hero-deco-star-30 {
        position: absolute;
        top: 32%;
        left: 85%;
        width: 40px;
        height: 40px;
        background-image: url('../assets/icons/Star 30.svg');
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 1;
    }
    .hero-deco-star-bottom {
        width: 40px;
        height: 40px;
    }
    .hero-deco-star-30-bottom {
        top: 85%;
        width: 40px;
        height: 40px;
    }

    /* 3. How We Work */
    .how-we-work-section {
        padding: 60px 20px;
        display: flex;
        flex-direction: column-reverse; /* Text first (top), then Process */
        gap: 40px;
    }
    
    /* Reorder: Figma shows text "Built For Decisions..." at top */
    .how-we-work-text {
        padding-top: 0;
        text-align: center;
    }
    .how-we-work-text h2 { font-size: 35px; line-height: 45px; }
    .how-we-work-text p { font-size: 18px; line-height: 28px; }

    .process-list { gap: 20px; }
    .process-item { gap: 20px; }
    .process-content h4 { font-size: 20px; }
    .process-content p { font-size: 16px; line-height: 24px; }
    
    /* 4. Services Pillars */
    .services-section { padding: 60px 20px; }
    .services-layout { display: none; } /* Hide Desktop Layout */
    .services-mobile-accordion { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }

    .service-mobile-item {
        border-bottom: 1px solid #e0e0e0;
    }
    .service-mobile-header {
        width: 100%;
        background: none; border: none;
        display: flex; justify-content: space-between; align-items: center;
        padding: 20px 0;
        text-align: left;
    }
    .service-mobile-header h3 {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 700;
        color: var(--color-dark-navy);
    }
    .service-mobile-header .icon {
        font-size: 24px;
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        border: 1px solid var(--color-dark-navy);
        border-radius: 50%;
        color: var(--color-dark-navy);
    }
    .service-mobile-header.active .icon {
        background: var(--color-dark-navy);
        color: white;
    }
    
    .service-mobile-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    .service-mobile-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .mobile-service-img { margin-top: 20px; margin-bottom: 20px; text-align: center; }

    /* 5. Proof & Impact */
    .proof-section {
        margin: 40px 20px;
        padding: 40px 20px;
        border-radius: 30px;
    }
    .proof-section h2 { font-size: 30px; }
    
    .impact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Columns */
        gap: 15px;
        margin-top: 30px;
    }
    
    .impact-card {
        width: 100%;
        flex: auto;
        margin: 0 !important; /* Reset margins */
        transform: none !important; /* Reset transforms */
        padding: 20px 10px;
        border-radius: 15px;
    }
    .impact-card:last-child {
       grid-column: span 2; /* Center the last odd item if needed */
       width: 100%;
       max-width: 250px;
       margin: 0 auto !important;
    }
    
    .impact-num { font-size: 40px; margin-bottom: 10px; }
    .impact-desc { font-size: 13px; line-height: 18px; }

    /* 6. Testimonials */
    .testimonials-section {
        padding: 60px 20px 80px;
        min-height: auto;
        background: rgba(152, 210, 155, 0.20); /* Light green background */
        overflow: hidden; /* Contain absolute decorations */
    }
    
    /* 
       Force items to display one after another vertically (Row basis in terms of full rows).
       We use Flex Column to stack them. Note: 'Row basis' request interpreted as 'stacked rows'.
    */
    .testimonials-layout {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Margin between each testimonial */
        margin-top: 30px;
        width: 100%;
    }
    
    /* Ensure the columns inside don't restrict width */
    .test-col-left, .test-col-right {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .test-col-right { padding-top: 0; }

    /* The third card is outside the layout container in HTML. We must force it to behave like the others. */
    .testimonials-section > div[style*="max-width"] { 
        margin: 20px 0 0 !important; 
        max-width: 100% !important;
        width: 100% !important;
        position: static !important;
        left: auto !important;
        transform: none !important;
    }
    
    /* Card Visuals */
    .testimonial-card { 
        width: 100%;
        padding: 30px 20px; 
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        border-radius: 20px;
        border: 1px solid #98d29b; /* Green border */
        background: white;
        box-sizing: border-box; /* Ensure padding doesn't overflow width */
    }
    
    .testimonial-text { 
        font-size: 15px; 
        line-height: 24px;
        margin: 20px 0;
    }

    /* Mobile Decorations */
    .testimonials-section::before {
        /* Top Right Yellow Icon */
        content: '';
        top: 20px; 
        right: 20px;
        width: 40px; 
        height: 40px;
        background-image: url('../assets/icons/Group 17.svg');
        background-size: contain;
    }
    .testimonials-section::after {
        /* Bottom Left Teal Star */
        content: '';
        top: auto; 
        bottom: 20px;
        left: 20px;
        width: 50px; 
        height: 50px;
        background-image: url('../assets/icons/Star 29.svg');
        transform: none;
    }

    /* Author Avatar Green Circle */
    .avatar {
        background-color: #98d29b;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    .author-info h4 { font-size: 18px; }
    .author-info span { font-size: 14px; }

    /* 7. Final CTA */
    .final-cta { padding: 40px 20px; }
    .final-cta h2 { 
        font-size: 10px;
        font-weight: 300;
        /* word-wrap: break-word; */
        line-height: 30px; 
        width: 100%;
        text-align: center; }
    .final-cta p { font-size: 20px; line-height: 30px; }
    
    /* 8. Footer (Match Home) */
    .footer { padding: 20px; }
    .footer-logo-section { display: none; }
    .footer-content, .footer-links-container { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
}

/* ====================================
   Testimonials Section
   ==================================== */
.testimonials-section {
    position: relative;
    padding: 60px clamp(20px, 5vw, 100px) 80px;
    background: rgba(152, 210, 155, 0.20);
    min-height: 1010px; 
}

/* Decorative Icons */
/* Red/coral diagonal dashes - top right */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-image: url('../assets/icons/Group 17 red.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Blue/teal X icon - left side middle */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 150px;
    width: 80px;
    height: 80px;
    background-image: url('../assets/icons/Star 29.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

/* Grid Layout matching the Figma absolute positions approximately */
.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.test-col-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.test-col-right {
    padding-top: 60px;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--color-green);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.testimonial-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-gray-text);
    margin: 20px 0 30px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 58px;
    height: 58px;
    background: var(--color-teal-light);
    border-radius: 50%;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--color-dark-navy);
}
.author-info span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-dark-navy);
}

/* Yellow bar decoration - bottom right */
.testimonials-section .testimonials-layout::after {
    content: '';
    position: absolute;
    bottom: -80%;
    right: 100px;
    width: 60px;
    height: 8px;
    background: #fdbf49;
    border-radius: 4px;
}

/* ====================================
   Final CTA
   ==================================== */
.final-cta {
    padding: 70px 20px;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 100px;
    line-height: 110px;
    color: var(--color-dark-navy);
    margin-bottom: 20px;
}

.final-cta p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    line-height: 60px;
    color: var(--color-dark-navy);
    margin-bottom: 50px;
}


/* ====================================
   Footer
   ==================================== */
.footer {
    background-color: var(--color-dark-blue-0a);
    padding: 30px 50px 10px;
    position: relative;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.footer-logo-section {
    flex-shrink: 0;
}

.footer-logo {
    width: 100px;
    height: auto;
}

.footer-links-container {
    display: flex;
    gap: 25px;
    flex: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 90px;
}

.footer-header {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
    transition: opacity 0.3s;
}

.footer-header:hover {
    opacity: 0.8;
}

.footer-detail {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.4;
}

.contact-value {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.4;
    text-decoration: none;
}
a.contact-value:hover {
    text-decoration: underline;
}

.linkedin-link {
    display: inline-block;
}

.linkedin-link img {
    width: 20px;
    height: 20px;
}

.copyright {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-white);
    text-align: right;
    margin-top: 20px;
}

/* =================================================================
   MOBILE OVERRIDES (Appended for Specificity)
   ================================================================= */
@media (max-width: 480px) {
    /* hero section */
    .hero-section {
        padding: 90px 20px 40px;
    }
    .h1-title {
        font-size: 40px;
        width: 100%;
        font-weight: 700;
        line-height: 50px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    .hero-sub {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 40px;
    }
    .btn-primary {
        font-size: 24px;
        padding: 15px 40px;
        line-height: 1.2;
        width: 100%;
        text-align: center;
    }
    .hero-deco-star {
        position: absolute;
        top: 70px;
        left: 2%;
        width: 40px;
        height: 40px;
        background-image: url('../assets/icons/Star 26.svg');
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 1;
    }
    .hero-deco-percent {
        position: absolute;
        bottom: 390px;
        left: 5%;
        width: 35%;
        height: 35px;
        z-index: 1;
    }
    /* Testimonials Mobile Fix */
    .testimonials-section {
        padding: 60px 20px 80px;
        min-height: auto;
        background: rgba(152, 210, 155, 0.20);
        overflow: hidden;
    }
    
    .testimonials-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        margin-top: 30px;
        width: 100%;
        grid-template-columns: none;
    }
    
    .test-col-left, .test-col-right {
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
    }
    
    /* Reset the centered 3rd card container styles */
    .testimonials-section > div[style*="max-width"] {
        margin: 20px 0 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        position: static !important;
        left: auto !important;
        transform: none !important;
    }
    
    .testimonial-card {
        width: 100%;
        margin: 0 !important;
        padding: 30px 20px;
        box-sizing: border-box;
        border: 1px solid #98d29b;
        background: white;
        border-radius: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 24px;
        margin: 20px 0;
    }
    
    /* Mobile Decorations */
    .testimonials-section::before {
        /* Top Right Yellow Icon */
        content: '';
        top: 20px; 
        right: 20px;
        width: 40px; 
        height: 40px;
        background-image: url('../assets/icons/Group 17.svg');
        background-size: contain;
    }
    
    .testimonials-section::after {
        /* Bottom Left Teal Star */
        content: '';
        top: auto; 
        bottom: 30px;
        right: -20px;
        display: none !important;
        width: 40px; 
        height: 40px;
        background-image: url('../assets/icons/Star 29.svg');
        transform: none;
    }
    
    .avatar {
        background-color: #98d29b;
        width: 50px;
        height: 50px;
    }
    .final-cta { padding: 40px 20px; }
    .final-cta h2 { 
        font-size: 50px;
        font-weight: 700;
        /* word-wrap: break-word; */
        line-height: 60px; 
        width: 100%;
        text-align: center; }
    .final-cta p { font-size: 20px; line-height: 30px; }

    /* Service Pillars Mobile Styling */
    .service-mobile-item {
        background: rgba(152, 210, 155, 0.20);
        border: 1px solid #98d29b;
        border-radius: 20px;
        margin-bottom: 15px;
        padding: 0 20px; /* Add internal spacing */
    }
    .service-mobile-item .service-mobile-header {
        border: none; /* remove any default borders */
    }

    /* Footer Mobile Centering */
    .footer-content, .footer-links-container, .footer-column, .footer-detail {
        text-align: center !important;
        align-items: center !important;
    }
    .copyright {
        text-align: center !important;
    }
}
