/* EcoEducation Overhaul - Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --overhaul-bg: #FDFDFD;
    --overhaul-text: #0F172A;
    --overhaul-secondary: #64748B;
    --overhaul-accent: #C3FAAA;
    /* Brand Green */
    --overhaul-dark: #0F172A;
    --overhaul-font-display: 'Outfit', sans-serif;
    --overhaul-font-sans: 'Inter', sans-serif;
    --overhaul-glass: rgba(255, 255, 255, 0.82);
    --overhaul-glass-border: rgba(255, 255, 255, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutLoader {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Preloader --- */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #F3F4F6;
    border-top: 3px solid #2F855A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-overlay p {
    font-family: var(--overhaul-font-display);
    color: var(--overhaul-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

body.landing-page {
    background-color: var(--overhaul-bg);
    color: var(--overhaul-text);
    font-family: var(--overhaul-font-sans);
    overflow-x: hidden;
}

/* Centered Pill Navigation */
.nav-container-overhaul {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 90%;
}

.nav-pill {
    background: var(--overhaul-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--overhaul-glass-border);
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-pill .nav-link {
    font-family: var(--overhaul-font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--overhaul-text);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-pill .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-pill .btn-work {
    background: var(--overhaul-dark);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-pill .btn-work:hover {
    background: #000;
    transform: scale(1.02);
}

.brand-overhaul {
    position: fixed;
    top: 36px;
    left: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--overhaul-text);
    background: #DCFCE7;
    /* Light green pill background */
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.brand-overhaul:hover {
    transform: scale(1.02);
}

.brand-overhaul img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    /* Circle image */
    object-fit: cover;
}

.brand-overhaul span.brand-text {
    font-family: var(--overhaul-font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #166534;
}

/* Hero Section */
.hero-overhaul {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.hero-overhaul h1 {
    font-family: var(--overhaul-font-display);
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 1200px;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    z-index: 10;
    color: #FFFFFF !important;
    /* Force white color as requested */
    opacity: 0;
    animation: popIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.hero-bottom-left {
    position: absolute;
    bottom: 60px;
    left: 60px;
    text-align: left;
    max-width: 450px;
    z-index: 10;
    opacity: 0;
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

.hero-bottom-left p {
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-bottom-right {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

.btn-discover {
    background: var(--overhaul-accent);
    color: var(--overhaul-dark);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-discover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    background: var(--overhaul-accent);
    color: var(--overhaul-dark);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

.btn-arrow:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(195, 250, 170, 0.4);
}

/* Bento Sections */
/* Parallax Text Reveal */
.reveal-parallax-text {
    color: #64748B;
    /* Initial grey state */
    transition: color 0.1s linear;
    will-change: color;
}

.section-overhaul {
    padding: 100px 40px;
    /* Standardize section padding */
}

.platform-overhaul {
    padding: 100px 40px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #eee;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eee;
}

.bento-item {
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--overhaul-accent);
}

.bento-item .bento-image-container {
    width: 100%;
    height: 180px;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.bento-item .bento-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover .bento-image-container img {
    transform: scale(1.05);
}

.bento-item.accent {
    background: #DCFCE7;
    /* Very light green instead of full accent */
    color: var(--overhaul-dark);
}

.bento-item.dark {
    background: white;
    /* Changed from dark to white */
    color: var(--overhaul-dark) !important;
}

.bento-item.dark h3,
.bento-item.dark p,
.bento-item.dark .bento-number,
.bento-item.dark i {
    color: var(--overhaul-dark) !important;
}

.bento-item.dark .bento-content p {
    opacity: 0.7;
}

.bento-item.gray {
    background: white;
}

.bento-number {
    font-family: var(--overhaul-font-sans);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.bento-content h3 {
    font-family: var(--overhaul-font-display);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.bento-content p {
    font-size: 16px;
    line-height: 1.5;
    color: inherit;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-overhaul h1 {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {
    .nav-container-overhaul {
        bottom: 24px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Floating bottom pill is being replaced by hamburger + hidden nav */
    .nav-container-overhaul {
        display: none;
        /* Initially hidden on mobile */
        position: fixed;
        bottom: 24px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    .nav-container-overhaul.active {
        display: flex;
        bottom: 80px;
    }

    .nav-pill {
        flex-direction: column;
        padding: 24px;
        border-radius: 24px;
        width: 100%;
        gap: 12px;
    }

    .nav-links-wrapper {
        flex-direction: column;
        width: 100%;
        display: flex;
        gap: 8px;
    }

    .nav-pill .nav-link,
    .nav-pill .btn-work {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .brand-overhaul span.brand-text {
        display: none;
    }

    .brand-overhaul {
        padding: 6px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
}

.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--overhaul-dark);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem !important;
    }

    h2 {
        font-size: 2.25rem !important;
    }

    h3 {
        font-size: 1.75rem !important;
    }

    .hero-overhaul {
        padding: 20px !important;
        padding-bottom: 40px !important;
    }

    .hero-bg {
        top: 10px !important;
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
    }

    .hero-overhaul h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        margin-bottom: 24px;
    }

    /* Remove absolute positioning so hero elements flow in column layout */
    .hero-bottom-left {
        position: static !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-top: 20px;
    }

    .hero-bottom-left p {
        font-size: 16px !important;
    }

    .hero-bottom-right {
        position: static !important;
        justify-content: center !important;
        margin-top: 16px;
    }

    /* Stats section: prevent large stat headings from overflowing */
    .section-overhaul .col-md-4 h3 {
        font-size: 1.75rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Process step numbers */
    .process-steps > div h2 {
        font-size: 32px !important;
    }

    /* Featured initiatives: reduce photo frame height */
    .photo-frame {
        height: 350px !important;
    }

    /* Initiative card headings */
    .initiative-card h3 {
        font-size: 22px !important;
    }

    .section-overhaul {
        padding: 60px 20px !important;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
    }

    .bento-content h3 {
        font-size: 28px !important;
    }

    /* CTA section: reduce inner padding */
    .cta-inner {
        padding: 32px 20px !important;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .hero-overhaul h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem) !important;
        line-height: 1.05 !important;
    }

    .hero-bottom-left p {
        font-size: 14px !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .section-overhaul .col-md-4 h3 {
        font-size: 1.5rem !important;
    }

    .bento-content h3 {
        font-size: 24px !important;
    }

    .photo-frame {
        height: 280px !important;
    }

    .btn-discover {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }

    /* Strategy step cards padding */
    .strategy-step-card {
        padding: 32px 20px !important;
    }
}

/* Initiative Cards */
.initiative-card {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
}

.initiative-card:hover {
    transform: translateX(10px);
    background: rgba(195, 250, 170, 0.05);
}

.initiative-card a {
    transition: all 0.2s ease;
}

.initiative-card a:hover {
    gap: 12px !important;
}

/* Photo Frame */
.photo-frame {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.photo-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photo-frame img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-frame:hover img {
    transform: scale(1.05);
}

/* Impact Cards */
.section-overhaul .row.reveal-stagger>div>div {
    transition: all 0.3s ease;
}

.section-overhaul .row.reveal-stagger>div>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Process Steps Animation */
.process-steps>div {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
}

.process-steps>div:hover {
    background: rgba(195, 250, 170, 0.08);
    transform: translateX(10px);
}

/* Status Pill Animation */
.status-pill {
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

/* CTA Button Enhancement */
.section-overhaul a.btn-discover {
    position: relative;
    overflow: hidden;
}

.section-overhaul a.btn-discover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.section-overhaul a.btn-discover:hover::before {
    width: 300px;
    height: 300px;
}

/* Auth Centered Layout (Light Mode Overhaul) */
body.auth-split-page {
    background: #F8FAFC !important;
    color: #0F172A !important;
    display: block;
    min-height: 100vh;
    overflow-y: auto;
}

.auth-split-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-form-side {
    width: 100%;
    max-width: 460px;
    background: #FFFFFF;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(16, 185, 129, 0.4);
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.auth-form-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.auth-title {
    font-family: var(--overhaul-font-display);
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 32px;
}

h4 {
    color: #0F172A !important;
}

.auth-form-side .form-label,
.auth-form-side label {
    color: #475569 !important;
    font-weight: 500;
}

.auth-form-side .form-control {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    color: #0F172A !important;
    padding: 12px 16px;
    border-radius: 12px;
}

.auth-form-side .form-control:focus {
    border-color: #0F172A !important;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1) !important;
}

.auth-google-btn {
    background: #FFFFFF !important;
    color: #0F172A !important;
    border: 1px solid #E2E8F0 !important;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.auth-google-btn:hover {
    background: #F8FAFC !important;
    transform: translateY(-1px);
}

.auth-divider {
    color: #94A3B8;
    margin: 24px 0;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E2E8F0;
}

.auth-divider::before {
    margin-right: 16px;
}

.auth-divider::after {
    margin-left: 16px;
}

.btn-back-home {
    position: absolute;
    top: -60px;
    left: 0;
    background: transparent !important;
    color: #64748B !important;
    border: none !important;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-back-home:hover {
    color: #0F172A !important;
}

.auth-footer {
    color: #64748B !important;
    margin-top: 24px;
    font-size: 14px;
    text-align: center;
}

.auth-footer a {
    color: #0F172A !important;
    text-decoration: none;
    font-weight: 600;
}

.auth-btn,
button[type="submit"] {
    background: #0F172A;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-btn:hover,
button[type="submit"]:hover {
    background: #1E293B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Flash Messages Overlay */
.flash-message-overlay {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 99999;
    width: auto !important;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.flash-message-overlay .alert {
    pointer-events: auto;
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--overhaul-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0;
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.flash-message-overlay .alert .btn-close {
    position: static;
    margin-left: auto;
    padding: 0;
}

.flash-message-overlay .alert-success {
    border-left-color: #10B981;
}

.flash-message-overlay .alert-danger {
    border-left-color: #EF4444;
}

.flash-message-overlay .alert-warning {
    border-left-color: #F59E0B;
}

.flash-message-overlay .alert-info {
    border-left-color: #3B82F6;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scroll Driven Animation Styles */
.scroll-text-container {
    color: #0F172A;
    position: relative;
    z-index: 10;
}

.scroll-text-line {
    display: block;
}

.scroll-text-word {
    display: inline-block;
    opacity: 0.1;
    filter: blur(2px);
    will-change: opacity, filter;
    margin-right: 0.15em;
    color: #64748B;
    /* Light gray base */
}

.scroll-text-highlight {
    display: inline-block;
    color: #0F172A;
    /* Darker */
    opacity: 0.1;
    will-change: opacity, transform;
    margin-right: 0.15em;
    position: relative;
    font-weight: 500;
}

/* Ensure section background transition is smooth */
#movement {
    background-color: #FFFCF9;
    /* Initial warm off-white */
    will-change: background-color;
}

/* Strategy Steps Section */
.strategy-steps-container {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    overflow: hidden;
}

.strategy-step-card {
    padding: 48px 32px;
    height: 100%;
    position: relative;
    border-right: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.strategy-step-card:last-child {
    border-right: none;
}

.strategy-step-card:hover {
    background: #F8FAFC;
}

.step-badge {
    width: 48px;
    height: 48px;
    background: var(--overhaul-accent);
    color: #166534;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--overhaul-font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 32px;
}

.step-title {
    font-family: var(--overhaul-font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--overhaul-text);
}

.step-subtitle {
    font-size: 14px;
    color: #4CAF50;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-description {
    font-size: 15px;
    color: var(--overhaul-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .strategy-step-card {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .strategy-step-card:last-child {
        border-bottom: none;
    }
}

/* --- Password Toggle Styling --- */
.password-toggle-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #94A3B8;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.password-toggle-btn:hover {
    color: #0F172A;
    background: rgba(15, 23, 42, 0.05) !important;
}

.password-toggle-btn i {
    font-size: 18px;
    line-height: 1;
}

.password-toggle-wrapper .form-control {
    padding-right: 46px !important;
}