:root {
    /* Colors */
    --color-primary: #0F3D2E;
    /* Deep Forest Green */
    --color-primary-dark: #0A2A1F;
    --color-secondary: #1A4D54;
    /* Petrol Blue */
    --color-accent: #32CD32;
    /* Vibrant Light Green */
    --color-accent-hover: #2db32d;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f4f6f8;
    --color-white: #ffffff;
    --color-border: #e0e0e0;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --container-width: 1200px;

    /* Transitions */
    --transition-speed: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    /* Outfit geometry looks great with slight tracking */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-background);
}

/* Scroll Lock Utility */
body.hero-locked {
    overflow: hidden !important;
    height: 100vh !important;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

/* Buttons */
/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    /* 14px 28px from hero */
    border-radius: 12px;
    /* 12px from hero */
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    font-size: 14px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 61, 46, 0.2);
    /* Soft shadow */
    border: 1px solid transparent;
}

/* Removed subtle external glow for a cleaner look */
.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 61, 46, 0.3);
    background: var(--color-primary-dark);
}

.btn-primary:hover::after {
    opacity: 0;
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    /* Almost imperceptible */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
}

.btn-outline:hover {
    background: rgba(11, 61, 46, 0.4);
    /* Dark green fill */
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.1);
    color: white;
}

/* Dark Pill Button for Hero */
.btn-dark-pill {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-dark-pill:hover {
    background-color: #333333;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Outline Pill Button for Header */
.btn-outline-pill {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-outline-pill:hover {
    background-color: rgba(26, 26, 26, 0.05);
    transform: translateY(-2px);
}

/* Header */
#header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
}

#header.scrolled {
    transform: translateY(-5px);
}

#header.header-hidden {
    transform: translateY(calc(-100% - 20px));
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #326540;
}



#header.header-dark-mode .desktop-nav a {
    color: #ffffff;
}

#header.header-dark-mode .desktop-nav a:hover {
    color: var(--color-accent);
}

#header.header-dark-mode .btn-dark-pill {
    background-color: #ffffff;
    color: #1a1a1a;
}

#header.header-dark-mode .btn-dark-pill:hover {
    background-color: #e0e0e0;
}

#header.header-dark-mode .logo img {
    filter: brightness(0) invert(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Overlay - Initially Hidden */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: -300px;
    /* Slide from right */
    width: 250px;
    height: 100%;
    background-color: var(--color-white);
    padding: 24px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

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

/* Mobile Menu Button - Shown only on smaller screens now */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

#header.header-dark-mode .mobile-menu-btn {
    color: #ffffff;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    margin-bottom: 32px;
    display: block;
    margin-left: auto;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 24px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

/* =============================================
   HERO SECTION — Centered Layout
   ============================================= */
#hero {
    position: relative;
    background-color: #d1d3d4;
    /* Color picked from the top visible area of the render in the screenshot */
    margin-bottom: -5px;
    /* Overlap with next section to prevent visible gap */
}

/* Remove dot-pattern texture overlay */
#hero::before {
    display: none;
}

.hero-scroll-container {
    position: relative;
    height: 100vh;
}

.hero-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    /* Stay full viewport height while sticky */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Moved back to flex-start to control spacing predictably from top */
    padding-top: 15vh;
    /* Safe spacing below the header */
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    height: 100%;
    /* Flex flow removed. hero-content will dictate absolute layout */
}

/* ---- Centered Text and CTA ---- */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    left: 0;
}

.hero-text-1 {
    top: 0;
    opacity: 1;
}

.hero-text-2 {
    bottom: 12vh;
}

.hero-text-3 {
    top: 0;
}

.hero-cta {
    position: absolute;
    bottom: 5vh;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;

}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

/* ---- Animation Wrapper ---- */
.hero-animation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
}

#treeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.05);
    /* Scales up slightly to hide black letterboxing borders in source frames */
    display: block;
    border-radius: 0;
    filter: none;
    background: transparent;
    will-change: transform;
    -webkit-mask-image: none;
    mask-image: none;
}

/* End hero section */

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 30px;
    color: #fff;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* =============================================
   HERO RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* =============================================
   SECTIONS GENERAL
   ============================================= */
.section {
    padding: 80px 0;
    position: relative;
    background-color: var(--color-background);
    z-index: 10;
}

/* Scroll lock state for body */
body.about-locked {
    overflow: hidden;
    height: 100vh;
}

/* =============================================
   ANIMATIONS — Fade Up
   ============================================= */
.modern-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Flip Reveal Animation */
.card-flip-reveal {
    opacity: 0;
    transform: perspective(1000px) rotateY(180deg) scale(0.9);
    transition: opacity 0.8s ease-in, transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-flip-reveal.visible {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg) scale(1);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* =============================================
   ABOUT SECTION — Redesigned
   ============================================= */
.about-section {
    background: linear-gradient(180deg, #f0f2f4 0%, #e8eceb 100%);
    color: #1a1a1a;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-top: -5px;
    /* Extra overlap to fully cover any gap from hero canvas edge */
}

.about-container {
    text-align: center;
}

/* Label */
.about-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: #C5A059;
    opacity: 0.8;
}

.label-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C5A059;
}

/* Title */
.about-main-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.title-accent {
    color: #326540;
}

/* Description */
.about-description {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 56px;
}

/* Stats Row */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 72px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-counter {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
}

.stat-box p {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(15, 61, 46, 0.2), transparent);
}

/* Cards Grid */
.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .about-card-large {
        grid-row: 1 / 2;
    }
}

.about-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.1);
    border-color: rgba(15, 61, 46, 0.15);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.about-card:hover .about-card-icon {
    transform: scale(1.08) rotate(-3deg);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.about-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-card:hover .card-accent-line {
    transform: scaleX(1);
}

/* About Responsive */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 36px;
    }

    .stat-counter {
        font-size: 40px;
    }

    .stat-suffix {
        font-size: 24px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }
}

/* =============================================
   PARTNERS SECTION — Logo Marquee
   ============================================= */
.partners-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 56px;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

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

.marquee-content {
    display: flex;
    gap: 64px;
    padding: 0 32px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 72px;
    background: #f5f7f9;
    border-radius: 12px;
    border: 1px solid #e8ebee;
    padding: 16px 28px;
    transition: all 0.3s ease;
}

.partner-logo span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(15, 61, 46, 0.08);
    transform: translateY(-2px);
}

.partner-logo:hover span {
    color: var(--color-primary);
}

.partner-logo:hover img {
    transform: scale(1.05);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

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

/* =============================================
   SERVICES SECTION — Redesigned (Scroll Locked)
   ============================================= */
.services-section {
    background-color: #ffffff;
    color: #1a1a1a;
    position: relative;
    z-index: 10;
    margin-top: -5px;
    height: 300vh;
    /* Height extended for scroll progress (Scroll Scrubbing) */
}

/* body.services-locked removed in favor of fluid scroll */

.services-scroll-container {
    position: relative;
    height: 100%;
}

.services-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 15vh;
    overflow: hidden;
}

.services-header-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 20;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-header.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.services-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C5A059;
    display: block;
    margin-bottom: 16px;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Animations Layout */
.services-animation-wrapper {
    position: relative;
    flex-grow: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-step.active {
    opacity: 1;
    pointer-events: auto;
}

.service-video-container {
    flex: 1.4;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-video-container video {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 12px;
    transform: scale(1.6);
    /* Destricotar wipe effect synced to IntersectionObserver active class */
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.service-step.active .service-video-container video {
    clip-path: inset(0 0 0 0);
    transition-delay: 0.2s;
}

.service-text-container {
    flex: 1;
    padding: 0 60px;
    max-width: 45%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.4s, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
    z-index: 5;
    background: rgba(255, 255, 255, 0.6);
    /* Slight background to ensure readability if overlapping */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
}

.service-step.active .service-text-container {
    opacity: 1;
    transform: translateY(0);
}

.service-text-container h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-text-container p {
    font-size: 30px;
    color: #000000;
    line-height: 1.4;
    font-weight: 500;
}

/* Services Responsive */
@media (max-width: 900px) {
    .services-title {
        font-size: 32px;
    }

    .service-step {
        flex-direction: column;
        justify-content: center;
    }

    .service-video-container,
    .service-text-container {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .service-video-container video {
        max-height: 40vh;
    }

    .service-text-container {
        padding: 20px;
        text-align: center;
    }

    /* Reverse order for Broca step on mobile so image is always on top */
    .service-step-02 {
        flex-direction: column-reverse;
    }
}

/* =============================================
   DIFFERENTIALS SECTION — Timeline
   ============================================= */
.differentials-section {
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
}

.diff-main-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 64px;
}

/* Roadmap Container */
.diff-roadmap {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}

/* Horizontal Line connecting nodes */
.diff-roadmap::before {
    content: '';
    position: absolute;
    top: 30px; /* middle of icon */
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 1;
    opacity: 0.3;
}

/* Individual Step */
.roadmap-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Icon / Node */
.roadmap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 61, 46, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-step:hover .roadmap-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.5);
}

/* Info Card (hidden by default) */
.roadmap-card {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 250px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    z-index: 10;
}

/* Show card on hover */
.roadmap-step:hover .roadmap-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.roadmap-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.roadmap-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Arrow pointing up from card to icon */
.roadmap-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 61, 46, 0.1);
    border-left: 1px solid rgba(15, 61, 46, 0.1);
}

/* Differentials Responsive */
@media (max-width: 900px) {
    .diff-main-title {
        font-size: 30px;
    }

    .diff-roadmap {
        flex-direction: column;
        padding-left: 40px;
        align-items: flex-start;
        gap: 30px;
    }

    .diff-roadmap::before {
        top: 0;
        bottom: 0;
        left: 31px;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
        opacity: 0.3;
    }

    .roadmap-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .roadmap-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 16px;
        z-index: 2;
    }

    .roadmap-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        text-align: left;
        padding: 15px;
    }

    .roadmap-card::before {
        display: none;
    }
}

/* Authority Section */
.bg-dark-accent {
    background-color: #363435;
}

.bg-primary {
    background-color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.t-white p,
.t-white h2,
.t-white span {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    background-color: #ddd;
    /* Placeholder */
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.blog-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.blog-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

.read-more i {
    margin-left: 4px;
    transition: margin-left 0.2s;
}

.read-more:hover i {
    margin-left: 8px;
}

/* CTA Final */
.cta-final {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    /* Gradient transition to footer color (#E8ECEB) */
    background: linear-gradient(to bottom, var(--color-primary-dark) 20%, #E8ECEB 100%);
    padding: 100px 0;
    /* Increased padding slightly for more gradient space */
}

.cta-final h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 32px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.ml-3 {
    margin-left: 16px;
}

/* Footer */
.footer {
    background-color: #000000;
    /* Custom contact session background */
    background: #000000;
    /* Ensure solid black */
    color: var(--color-white);
    padding: 64px 0 24px;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer h3,
.footer h4 {
    color: #ffffff;
    /* White for headings */
    margin-bottom: 24px;
    margin-top: 12px;
    /* Visual alignment with logo image */
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.social-links {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 20px;
    transition: transform var(--transition-speed);
}

.social-links a .fa-instagram {
    color: #E1306C;
}

.social-links a .fa-linkedin {
    color: #0077b5;
}

.social-links a .fa-facebook {
    color: #1877f2;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #a0a0a0;
}

.footer a:hover {
    color: #ffffff;
}

.contact-info li i {
    width: 20px;
    margin-right: 8px;
    color: var(--color-accent);
}

.footer-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-form input::placeholder {
    color: #888888;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .ml-3 {
        margin-left: 0;
        margin-top: 16px;
        display: block;
    }
}