:root {
    --color-primary-blue: #0A355B;
    --color-primary-teal: #137374;
    --color-teal-light: #78C6C4;
    --color-accent-green: #98D29B;
    --color-accent-yellow: #FDBF49; /* Border yellow */
    --color-yellow-light: #FED992; /* BG yellow */
    --color-dark-navy: #032137;
    --color-gray-text: #434343;
    --color-white: #ffffff;
    
    /* Backgrounds with opacity */
    --bg-teal-20: rgba(120, 198, 196, 0.2);
    --bg-yellow-20: rgba(254, 217, 146, 0.2);
    --bg-yellow-dark-20: rgba(253, 191, 73, 0.2);
    --bg-green-20: rgba(152, 210, 155, 0.2);

    --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: var(--color-white);
    color: var(--color-gray-text);
    overflow-x: hidden;
}

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

/* ====================================
   Header (Reusing consistent styles)
   ==================================== */
.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: rgba(255, 255, 255, 0.95);
    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;
    color: var(--color-primary-blue);
    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-primary-blue);
    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-primary-blue);
    transition: opacity 0.3s ease;
    animation: analyticsHighlight 2s ease-in-out infinite;
}

@keyframes rnHighlight {
    0%, 100% {
        background-color: transparent;
        color: var(--color-primary-blue);
    }
    25%, 50% {
        background-color: var(--color-primary-blue);
        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-teal);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-culture {
    position: relative;
    padding: clamp(160px, 18vh, 220px) clamp(20px, 5vw, 80px) 250px; /* Increased top padding for visibility */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns content to top padding */
    text-align: center;
    z-index: 5; /* Ensure hero content stays on top of overlapping sections */
    min-height: 60vh; /* Reduced height to pull next section up */
}

/* The background shape */
.hero-bg-shape {
    position: absolute;
    top: 60px;
    right: 0;
    width: 90%;
    height: 380px;
    background: var(--bg-teal-20);
    border-top-left-radius: 334.5px;
    border-bottom-left-radius: 334.5px;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 0; /* Removed extra padding for compactness */
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800; /* Fixed typo (was 200px) and ensured boldness */
    font-size: 70px;
    line-height: 1.2; /* Tightened line height */
    color: var(--color-dark-navy);
    margin-bottom: 5px;
    padding: 0 5px; /* Adjusted padding */
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 30px;
    line-height: 1.5;
    color: var(--color-gray-text);
    max-width: 800px;
    margin: 0 auto;
}

/* --- Decorative Icons (Hero & Culture) --- */
.deco-icon {
    position: absolute;
    z-index: 5; /* Above shapes */
    pointer-events: none;
}

.culture-star-tl {
    top: 26%; /* Fluid positioning */
    left: 10%;
    width: 50px; /* Smaller */
    height: auto;
}

.culture-dash-tr {
    top: 26%; /* Fluid positioning */
    right: 15%;
    width: 50px;
    height: 6px;
    background-color: var(--color-primary-teal);
    border-radius: 4px;
}

.culture-yellow-mid {
    bottom: 16%; /* Fluid positioning */
    left: 87%;
    width: 30px;
    height: auto;
    transform: rotate(-15deg);
}

.culture-x-br {
    bottom: 5%; /* Fluid positioning */
    right: 5%;
    width: 40px;
    height: auto;
}

/* ====================================
   Why We're Here
   ==================================== */
.why-section {
    position: relative;
    padding: 80px clamp(20px, 5vw, 80px); /* Reduced from 150px 100px */
    z-index: 1;
    margin-top: -300px; /* Moves content up to overlap/join with hero */
}

.why-bg-shape {
    position: absolute;
    top: -690px;
    left: 0;
    width: 90%; /* approx 1255/1440 */
    height: calc(100% + 620px); /* Increased to compensate for margin-top */
    background: var(--bg-teal-20);
    border-top-right-radius: 434.5px;
    border-bottom-right-radius: 434.5px;
    z-index: -1;
}

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

.why-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: var(--color-dark-navy);
    max-width: 100%; /* Allows text to span full width */
    margin-bottom: 10px;
}

.why-content-grid {
    display: flex;
    gap: 30%;
}

.why-text {
    flex: 1;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-gray-text);
    max-width: 600px;
}

.why-text p { margin-bottom: 20px; }

.why-decoration-box {
    width: 400px;
    height: 340px;
    background: white;
    border: 1px;
    border-radius: 30px;
    flex-shrink: 0;
    margin-top: 20; /* Removed negative margin to prevent text overlap */
    max-width: 100%; /* Ensure responsiveness */
}

/* ====================================
   How We Show Up (Principles)
   ==================================== */
.principles-section {
    padding: 50px 40px;
    position: relative;
    background-color: var(--color-white);
}

.principles-wrapper {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: -40px;
}

/* Left components */
.principles-left {
    flex: 0 0 500px; 
    text-align: left;
    padding-top: -10px;
    padding-left: 80px;
}

.principles-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 56px; 
    line-height: 1.1;
    color: var(--color-dark-navy);
    margin-bottom: 50px;
    margin-top: 10px;
}

.principles-icon {
    width: 80px;
    height: auto;
    display: block;
}

.principles-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-end;
    min-width: 600px;
}

/* Base Card Style */
.principle-card {
    min-height: 65px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 38px;
    background: white;
    box-sizing: border-box;
    width: auto;
    max-width: 700px;
    box-shadow: none;
    margin: 0;
}

.principle-card p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark-navy);
    text-align: center;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

/* Waterfall Alignment - Staggered from right to left */
.align-right {
    align-self: flex-end;
    margin-right: 0;
}
.align-right-mid {
    align-self: flex-end;
    margin-right: 0px;
}
.align-right-wide {
    align-self: flex-end;
    margin-right: 0px;
}

/* Row containers for coupled cards */
.principle-couple {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-self: flex-end;
    margin-right: 0px;
}

.principle-couple:last-child {
    margin-right: 0px;
}


/* Specific Card Styles (Updated Sizes/Colors) */
.pc-thoughtful {
    background: var(--bg-yellow-20);
    border: 1px solid var(--color-yellow-light);
    width: auto; min-width: 380px;
}

.pc-uncomfortable {
    background: var(--bg-teal-20);
    border: 1px solid var(--color-teal-light);
    width: auto; min-width: 420px;
}

.pc-quality {
    background: var(--bg-green-20);
    border: 1px solid var(--color-accent-green);
    width: auto; min-width: 650px;
}

.pc-substance {
    background: var(--bg-teal-20);
    border: 1px solid var(--color-teal-light);
    width: auto; min-width: 380px;
}

.pc-outcomes {
    background: var(--bg-yellow-20);
    border: 1px solid var(--color-accent-yellow);
    width: auto; min-width: 380px;
}

.pc-clarity {
    background: var(--bg-yellow-20);
    border: 1px solid var(--color-yellow-light);
    width: auto; min-width: 500px;
}

.pc-stand {
    background: var(--bg-green-20);
    border: 1px solid var(--color-teal-light);
    width: auto; min-width: 500px;
}


/* ====================================
   What We Value
   ==================================== */
.values-section {
    position: relative;
    padding: 85px clamp(20px, 5vw, 100px) 85px;
    text-align: center;
    overflow: visible;
}

/* Background Box */
.values-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: var(--bg-yellow-dark-20);
    z-index: 0;
}

/* Decorative Icon */
.values-section::after {
    content: "";
    position: absolute;
    top: 680px;
    left: 180px;
    width: 60px;
    height: 60px;
    background: url('../assets/icons/Group 17 red.svg') no-repeat center;
    background-size: contain;
    z-index: 1;
}

.values-section .section-label,
.values-section .values-title {
    position: relative;
    z-index: 1;
}

.values-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 52px;
    line-height: 1.2;
    color: var(--color-dark-navy);
    margin-top: 10px;
    margin-bottom: 80px;
}

.values-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border: 1px solid var(--color-accent-yellow);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: left;
    min-height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-dot {
    width: 26px;
    height: 26px;
    background: #FFD9D9;
    border-radius: 50%;
    background-image: url('../assets/icons/Ellipse 20.svg');
    background-size: cover;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    color: var(--color-dark-navy);
    margin-bottom: 15px;
}

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


/* ====================================
   Our People (Testimonials)
   ==================================== */
.people-section {
    padding: 40px clamp(20px, 5vw, 100px) 10px;
    text-align: center;
    overflow: hidden;
}

.people-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 45px;
    line-height: 1.3;
    color: var(--color-dark-navy);
    margin-bottom: 60px;
    margin-top: 10px;
}

/* Swimlane Container */
.testimonials-swimlane {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: max-content;
    animation: testimonial-scroll 40s linear infinite;
}

.testimonials-swimlane:hover {
    animation-play-state: paused;
}

@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.people-card {
    background: white;
    border: 1px solid var(--color-accent-green);
    border-radius: 70px 70px 70px 0;
    border-bottom-left-radius: 0;
    padding: 60px 80px;
    min-width: 600px;
    max-width: 600px;
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
}

.people-quote {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 25px;
    line-height: 35px;
    color: var(--color-gray-text);
    margin-bottom: 40px;
}

.people-logo {
    margin-bottom: 30px;
    height: 32px;
}

.people-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.people-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.people-author-info {
    text-align: left;
}

.people-author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    color: var(--color-dark-navy);
    display: block;
}

.people-author-role {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-dark-navy);
}


/* ====================================
   Join Our Team
   ==================================== */
.join-section {
    background: var(--bg-green-20);
    padding: 100px clamp(20px, 5vw, 100px);
    position: relative;
    text-align: left;
}

.join-icon-x {
    position: absolute;
    top: 50%;
    right: 150px;
    transform: translateY(-50%);
    width: 80px;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
}

.join-section .section-label {
    color: var(--color-primary-teal);
    display: block;
    margin-bottom: 20px;
}

.join-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: var(--color-dark-navy);
    margin-bottom: 30px;
    max-width: 600px;
}

.join-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--color-dark-navy);
    max-width: 600px;
    margin-bottom: 20px;
}

.btn-cta-culture {
    background: var(--color-primary-teal);
    border-radius: 30px;
    padding: 18px 45px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.btn-cta-culture img {
    width: 80px;
    height: auto;
}

.btn-cta-culture:hover {
    opacity: 0.9;
}


/* ====================================
   Footer (from Index)
   ==================================== */
.footer {
    background-color: var(--color-primary-blue);
    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 Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary-blue);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Active Hamburger State */
.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);
}

/* ====================================
   Social Proof (Swimlane)
   ==================================== */
.social-proof {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.social-proof-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: var(--color-dark-navy);
    margin-bottom: 40px;
    padding: 0 20px;
}

.logo-scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
}


/* ====================================
   Responsive
   ==================================== */
@media (max-width: 1200px) {
    .hero-culture { padding-bottom: 150px; }
    .why-section { margin-top: -80px; } /* Reduce overlap */

    .why-content-grid { flex-direction: column; }
    .why-decoration-box { width: 100%; height: 300px; max-width: 100%; } /* made responsive */
    
    .values-grid { grid-template-columns: 1fr 1fr; }
    
    .hero-title { font-size: 50px; line-height: 1.2; }
    .principles-title { font-size: 50px; }
    
    /* Responsive rows for principles */
    .principle-row { flex-wrap: wrap; }
    .principle-card { width: 100%; max-width: 500px; height: auto; padding: 20px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: none;
        z-index: 999;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
    }

    .nav-links.active .mobile-nav-only {
        display: block !important;
    }
    
    .mobile-nav-logo {
        width: 60px;
        height: auto;
    }

    .nav-links.active .mobile-nav-btn {
        background-color: var(--color-primary-teal) !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;
    }
    
    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 24px;
        font-weight: 700;
    }
    
    .logo {
        z-index: 1000;
    }

    .header-menu, .hero-culture, .why-section, .principles-section, .values-section, .people-section, .join-section {
        padding: 60px 40px; /* Increased from 20px to give breathing room */
    }

    .hero-culture {
        padding-top: 140px; /* Space for header */
        padding-bottom: 60px;
    }
    
    .why-section {
        margin-top: 0; /* Removing negative margin on tablet to prevent overlap */
        padding-top: 40px;
    }
    
    .hero-title { font-size: 40px; line-height: 1.3; }
    .hero-subtitle { font-size: 16px; line-height: 1.5; }
    
    .values-grid { grid-template-columns: 1fr; }
    .join-title { font-size: 26px; line-height: 1.3; }
    .btn-cta-culture { font-size: 16px; padding: 10px 20px; }
    
    .footer-content { flex-direction: column; }
    
    /* Fix fixed-width elements */
    .pc-thoughtful,
    .pc-uncomfortable,
    .pc-quality,
    .pc-substance,
    .pc-outcomes,
    .pc-clarity,
    .pc-stand,
    .principle-card {
        width: 100% !important;
        max-width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .why-decoration-box {
        width: 100%;
        height: 200px;
    }
    
    .value-card {
        height: auto;
        min-height: 180px;
        padding: 25px 20px;
    }
    
    .value-card h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .value-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .why-title,
    .principles-title,
    .values-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .why-text,
    .principle-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .principle-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .join-cta h2 {
        font-size: 24px;
    }
    
    .footer-links-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-column {
        width: auto;
        align-items: flex-start;
        text-align: left;
    }

    /* Alignments for 2-column grid */
    .footer-column:nth-child(odd) {
        align-items: flex-start;
        text-align: left;
    }

    .footer-column:nth-child(even) {
        align-items: flex-end;
        text-align: right;
    }
}

/* =================================================================
   MOBILE OVERRIDES (Appended for Specificity)
   ================================================================= */
@media (max-width: 480px) {
    /* 1. Header Mobile Optimization */
    .header-menu {
        padding: 10px 20px;
    }
    .logo img {
        height: 50px !important;
    }

    /* Global Container Padding */
    .hero-culture, .why-section, .principles-section, .values-section, .people-section, .join-section {
        padding: 60px 20px;
    }

    /* 2. Hero Section */
    .hero-culture {
        min-height: auto;
        padding-top: 160px; /* Increased space for fixed header visibility */
        padding-bottom: 40px; /* Reduced to pull next section closer */
        align-items: center; 
        flex-direction: column;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .hero-bg-shape {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        /* Flat bottom to merge with Why Section */
        border-radius: 0;
    }
    
    .hero-title {
        font-size: 40px;
        font-weight: 700;
        line-height: 50px;
        padding: 0 10px;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        margin-top: 20px;
        word-wrap: break-word;
        padding: 0 10px;
    }

    /* Reposition decorations */
    .culture-star-tl { 
        top: 130px; 
        left: 20px; 
        width: 30px; 
        display: block; 
    }
    .culture-dash-tr { 
        top: 140px; 
        right: 20px; 
        display: block; 
    }
    
    /* Re-enable and position the Yellow Icon (Middle Left) */
    .culture-yellow-mid { 
        display: block;
        top: auto;
        bottom: -10px; /* Position relative to Hero */
        left: 20px;
        width: 30px;
        transform: rotate(-15deg);
        z-index: 5;
    }
    
    /* Re-enable and position the Teal X (Bottom Right) */
    .culture-x-br { 
        display: block;
        bottom: 320px; /* Above the decoration box approx */
        right: 20px;
        width: 30px;
        z-index: 5;
    }

    /* 3. Why We're Here */
    .why-section {
        margin-top: -1px; /* Overlap slightly to prevent hairline gaps */
        padding: 0 20px 60px; /* Remove top padding, keep side/bottom */
        /* Interpolated Background */
        background: var(--bg-teal-20);
        margin-left: 0;
        margin-right: 0;
        /* Rounded only at bottom to complete the shape */
        border-radius: 0 0 50px 50px;
        position: relative;
        z-index: 1;
    }
    
    .why-bg-shape { display: none; }
    
    .why-content-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
        padding: 0 10px; /* Internal padding matches hero text alignment */
    }
    
    .section-label {
        margin-top: 0;
        padding-top: 35px;
        text-align: left;
        padding-left: 10px;
    }

    .why-title {
        font-size: 30px;
        text-align: left;
        margin-bottom: 20px;
        padding-left: 10px;
    }
    
    .why-text {
        font-size: 16px;
        line-height: 26px;
        max-width: 100%;
        text-align: left;
        padding-left: 10px;
    }
    
    .why-decoration-box {
        width: 100%;
        height: 240px;
        margin-top: 20px;
        border-radius: 20px;
        background-color: white;
        border: 1px;
        position: relative;
        z-index: 10;
        /* Shadow to pop against background */
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* 4. Principles */
    .principles-section {
        padding: 40px 0 80px; 
        overflow-x: hidden; 
        position: relative;
    }

    .principles-wrapper {
        flex-direction: column;
        gap: 20px; /* Consistent gap between header and cards */
    }
    
    .principles-left {
        flex: none;
        padding: 0 20px;
        margin-bottom: 0;
        text-align: center;
        width: 100%;
        position: relative;
    }
    
    .principles-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 10px;
        color: var(--dark-gray);
        text-align: center;
    }
    
    /* Center the section label explicitly */
    .principles-left .section-label {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 12px;
        font-weight: 800;
        line-height: 35px;
        margin-bottom: 8px;
    }

    /* Decoration Star (Hidden in mobile to simplify or positioned elsewhere) */
    .principles-icon { display: none; } 
    
    /* Add Green Star via pseudo-element if desired, or keep clean */
    .principles-section::before {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        background-image: url('../assets/icons/Star 30.svg');
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 5;
    }

    .principles-right {
        width: 100%;
        display: contents;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Remove the 'couple' grouping layout and just stack them */
    .principle-couple {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
        margin: 0;
    }
  
    .principle-couple:nth-of-type(1) { flex-direction: column-reverse; }
    .principle-couple:nth-of-type(2) { flex-direction: column-reverse; }
    
    /* CARD STYLING - CENTERED PILLS */
    .principle-card {
        width: fit-content !important; /* Content controls width */
        min-width: auto !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        padding: 18px 40px !important;
        height: auto !important;
        border-radius: 999px !important; /* Full Pill */
        text-align: center;
        display: flex; 
        flex-direction: column; /* Constraint propagation */
        align-items: center;
        justify-content: center;
        position: relative;
        box-sizing: border-box;
        align-self: center !important;
        isolation: isolate;
    }
    
    .principle-card p {
        font-size: 15px;
        line-height: 1.4;
        font-weight: 700;
        color: var(--dark-gray);
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0; /* CRITICAL: Allows flex child to shrink below content size */
        white-space: normal !important;
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important; /* Modern wrapping */
    }
    
    /* Hide complex connectors for mobile */
    .principle-card::before, .principle-card::after {
        display: none !important;
        content: none !important;
    }

    .principle-card .pc-quality .align-right-wide {
        word-wrap: break-word;
    }

    .align-right {
        align-self: start;
        margin-right: 0;
    }
    .align-right-mid {
        align-self: flex-end;
        margin-right: 0px;
    }
    .align-right-wide {
        align-self: flex-end;
        margin-right: 0px;
        word-wrap: break-word;
    }

    /* --- COLORS & BORDERS --- */
    .pc-thoughtful, .pc-outcomes, .pc-clarity {
        background: var(--bg-yellow-20) !important;
        border: 1px solid var(--color-accent-yellow) !important;
    }
    .pc-uncomfortable, .pc-substance {
        background: var(--bg-teal-20) !important;
        border: 1px solid var(--color-teal-light) !important;
    }
    .pc-quality, .pc-stand {
        background: var(--bg-green-20) !important;
        border: 1px solid var(--color-accent-green) !important;
    }

    

    /* --- DIRECTION LOGIC (Alternating) --- */
    
    /* RIGHT-Going Lines (Odd items: 1, 3, 5, 7) */
    .pc-thoughtful::before, .pc-quality::before, .pc-substance::before, .pc-clarity::before {
        right: -7px; /* Place dot on the right border */
    }
    .pc-thoughtful::after, .pc-quality::after, .pc-substance::after, .pc-clarity::after {
        left: 100%; /* Line starts from right edge */
    }

    /* LEFT-Going Lines (Even items: 2, 4, 6) */
    .pc-uncomfortable::before, .pc-outcomes::before, .pc-stand::before {
        left: -7px; /* Place dot on the left border */
    }
    .pc-uncomfortable::after, .pc-outcomes::after, .pc-stand::after {
        right: 100%; /* Line starts from left edge */
    }

    /* --- CONNECTOR COLORS --- */
    /* Yellow cards -> Teal Connectors */
    .pc-thoughtful::before, .pc-thoughtful::after,
    .pc-outcomes::before, .pc-outcomes::after,
    .pc-clarity::before, .pc-clarity::after {
        background-color: var(--secondary-teal);
    }

    /* Teal cards -> Green Connectors */
    .pc-uncomfortable::before, .pc-uncomfortable::after,
    .pc-substance::before, .pc-substance::after {
        background-color: var(--accent-green);
    }

    /* Green cards -> Yellow Connectors */
    .pc-quality::before, .pc-quality::after,
    .pc-stand::before, .pc-stand::after {
        background-color: var(--accent-yellow);
    }

    /* 5. Values */
    .values-section {
        background: var(--bg-yellow-dark-20); /* Cream background match */
        padding: 40px 10px; /* Mobile padding */
        position: relative;
    }

    .values-section .section-label {
        color: var(--color-primary-teal);
        font-weight: 800;
        font-size: 12px;
        display: block;
        text-align: left;
        padding-left: 10px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .values-title {
        font-size: 32px;
        margin-bottom: 40px;
        color: var(--color-dark-navy);
        text-align: left;
        padding-left: 10px;
        line-height: 1.2;
    }
    
    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .value-card {
        background: white;
        border: 1px solid var(--color-accent-yellow);
        border-radius: 20px;
        padding: 30px;
        min-height: auto;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .value-dot {
        width: 30px;
        height: 30px;
        background-color: var(--color-accent-yellow);
        border-radius: 50%;
        margin-bottom: 20px;
        display: block; /* Ensure visibility */
    }

    .value-card h3 {
        font-size: 20px;
        line-height: 1.3;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--color-dark-navy);
    }
    
    .value-card p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--color-gray-text);
        margin: 0;
    }

    /* 6. People (Testimonials) */
    .people-section {
        padding: 30px 10px;
        overflow: visible;
        background: white;
        position: relative;
    }
    
    .people-section .section-label {
        color: var(--color-primary-teal);
        font-weight: 800;
        font-size: 12px;
        display: block;
        text-align: center;
        margin-bottom: 5px;
    }

    .people-title {
        font-size: 32px;
        margin-bottom: 50px;
        text-align: center;
        line-height: 1.2;
        color: var(--color-dark-navy);
    }
    
    /* Decoration: Yellow % (Approximation using existing icon logic if possible, or pseudo) */
    .people-title::before {
        content: '';
        display: block;
        width: 40px; 
        height: 40px;
        background-image: url('../assets/icons/Percentage.svg'); /* Attempting to use path pattern */
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 60px; /* Adjust based on padding */
        left: 20px;
        transform: rotate(-15deg);
        z-index: 1;
        opacity: 0.8;
       /* If icon missing, it just won't show, which is safe */
    }

    .testimonials-swimlane {
        flex-direction: column;
        width: 100%;
        animation: none;
        gap: 20px;
        transform: none !important;
        align-items: center;
    }
    .testimonials-swimlane:hover { animation-play-state: running; }
    
    .people-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 30px; /* Consistent rounded corners */
        padding: 30px 10px;
        border: 2px solid var(--color-accent-green); /* Thicker green border like design */
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Hide duplicates */
    .people-card:nth-child(n+4) {
        display: none;
    }

    .people-logo {
        height: 30px;
        width: auto;
        margin-bottom: 25px;
        object-fit: contain;
    }

    .people-quote {
        font-size: 18px; 
        line-height: 28px; 
        margin-bottom: 30px;
        color: var(--color-gray-text);
        font-weight: 500;
    }
    
    .people-author {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .people-author img {
        width: 50px; height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .people-author-info {
        display: flex;
        flex-direction: column;
    }

    .people-author-name { 
        font-size: 18px; 
        font-weight: 700;
        color: var(--color-dark-navy);
        line-height: 1.2;
    }
    .people-author-role { 
        font-size: 14px; 
        color: var(--color-dark-navy); 
    }

    /* Decoration: Teal X at bottom left (Approximation) */
    .people-section::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 30px;
        height: 30px;
        background-image: url('../assets/icons/X-Teal.svg'); /* Pattern guess based on others */
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 10;
        /* transform: rotate(15deg); */
    }

    .join-icon-x {
        position: absolute;
        top: -5%;
        right: 90px;
        width: 40px;
        height: 40px;
        pointer-events: none;
    }

    /* 7. Join */
    .join-section {
        padding: 60px 20px;
        text-align: center;
    }

    /* Hide text and arrow as requested */
    .join-section .section-label { display: none; }
    .btn-cta-culture img { display: none; }

    .join-title { 
        font-size: 50px;
        margin: 0 auto 20px;
        font-weight: 700;
        line-height: 60px;
        word-wrap: break-word;
    }
    .join-text { 
        font-size: 18px;
        margin: 0 auto 20px;
        font-weight: 400;
        line-height: 28px;
        word-wrap: break-word;

    }
    .join-cta h2 { font-size: 30px; }
    .btn-cta-culture { width: 100%; height: 100%; border-radius: 25px; justify-content: center; box-sizing: border-box; }

    /* Footer Centering */
    .footer-content, .footer-links-container, .footer-column, .footer-detail {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }
    .footer-logo-section {
        display: none;
    }
    .footer-links-container { display: flex; gap: 30px; }
    .copyright { text-align: center; margin-top: 30px; }
}
