:root {
    --color-bg-gradient: linear-gradient(180deg, #063b6d 0%, #135879 26%, #207685 49%, #41c0a6 85%, rgba(76, 219, 176, 0.73) 99%);
    --color-white: #ffffff;
    --color-black: #000000;
    --color-teal: #4cdbb0;
    --color-muted-cayman: #207685;
    --color-light-aqua: #d4f5ee;
    --color-deep-teal: #135879;
    --color-orange-card: #ffbaa1;
    --color-dark-gray: #474646;
    --color-light-gray: #f5f5f5;
    --font-family: "Montserrat", sans-serif;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: var(--font-family, "Montserrat", sans-serif);
    background: var(--color-white);
    color: var(--color-white);
}

.container {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    z-index: 10;
}

@media only screen and (min-width: 768px) {
    .container { width: 720px; }
}
@media only screen and (min-width: 992px) {
    .container { width: 960px; }
}
@media only screen and (min-width: 1200px) {
    .container { width: 1140px; }
}
@media only screen and (min-width: 1400px) {
    .container { width: 1320px; }
}

.logo {
	position: relative;
	display: inline-block;
}

.logo img {
	display: block;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-white {
	opacity: 1;
	visibility: visible;
}

.logo-color {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	width:149px;
	height:auto;
	display:block;
}


.header.active .logo-white {
	opacity: 0;
	visibility: hidden;
}

.header.active .logo-color {
	opacity: 1;
	visibility: visible;
}

.header {
    width: 100%;
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
	transition: 0.3s ease;
}

.header.active {
	background:#fff;
	box-shadow:0 0 20px rgba(0,0,0, 0.1);
}

.header.active .nav-links a {
    color: var(--color-black);
}

.header.active .btn-donate {
	background-color: #41C0A6;
    border: 1px solid #41C0A6;
    color: var(--color-white);
}
.header.active .btn-donate:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}



.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 40px;
    display: block;
}
.nav-links {
    display: none;
    gap: 15px;
}
@media only screen and (min-width: 1400px) {
    .nav-links {
        gap: 32px;
    }
}
@media only screen and (min-width: 1200px) {
    .nav-links {
        display: flex;
    }
}
.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: capitalize;
}
.nav-links a:hover {
    color: var(--color-teal);
}
.btn-donate {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
}
.btn-donate:hover {
    background-color: var(--color-white);
    color: var(--color-deep-teal);
}
.hero {
    position: relative;
    height: 100vh;
    min-height: 1140px;
    max-height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding-top: 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #063B6D 0.48%, #135879 26.2%, #207685 49.17%, #41C0A6 85.65%, rgba(76, 219, 176, 0.73) 98.98%);
}
.hero .container {
    margin-top: 40px;
    margin-bottom: 0;
}
.hero-content {
    text-align: center;
    z-index: 10;
    margin: 0 auto;
}
#hero-solution-phone {
    width: 306px;
    height: 605px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hero-anticipa {
    width:100%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 0.8s ease 0s;
}
.hero-content.animate-in .hero-anticipa {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
.hero-title {
    font-size: 60px;
    font-weight: 400;
    color: var(--color-light-aqua);
    line-height: 1.2;
    letter-spacing: -4.84px;
    text-transform: Capitalize;
    margin-bottom: 24px;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    top:-45px;
    margin-bottom: -45px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 0.8s ease 0s;
}
.hero-content.animate-in .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.hero-title span {
    display: inline-block;
}
.hero-title span::after {
    content: "•";
    margin: 0 12px;
    color: var(--color-teal);
    font-size: 0.8em;
    vertical-align: middle;
}
.hero-title span:last-child::after {
    content: "";
}
.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto 50px;
    text-shadow: 0px 0px 8px rgba(19, 88, 121, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 0.8s ease 0s;
}
.hero-content.animate-in .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
@media only screen and (min-width: 768px) {
    .hero-subtitle {
        font-size: 22px;
    }
}
.hero-btns {
    justify-content: center;
}
.hero-subtitle strong {
    font-weight: 900;
}
.hero-map {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    width: 100%;
    max-width: 1700px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.2s ease 0s;
}
.hero-map.animate-in {
    opacity: 0.85;
    transform: translateX(-50%) scale(1);
    transition-delay: 1.6s;
}
.hero-connections {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1700px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
@keyframes connections-fade-in-bg {
    from { opacity: 0; }
    to { opacity: 0.15; }
}
@keyframes connections-fade-in-flow {
    from { opacity: 0; }
    to { opacity: 0.85; }
}
.hero-connections-1-bg, .hero-connections-2-bg {
    opacity: 0;
    animation: connections-fade-in-bg 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-connections-1-flow, .hero-connections-2-flow {
    opacity: 0;
    animation: connections-fade-in-flow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.phone-mockup-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 421px;
    height: 487px;
    display: block;
    z-index: 10;
    transform: translateX(-50%) translateY(220px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.2s ease 0s;
}
.phone-mockup-wrapper.animate-in {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    transition-delay: 0.6s;
}
.phone-ripples {
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ripple-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(76, 219, 176, 0.45);
    background: transparent;
    border-radius: 50%;
    opacity: 0;
    animation: ripple-pulse 4.5s linear infinite;
}
.ripple-circle:nth-child(1) {
    animation-delay: 0s;
}
.ripple-circle:nth-child(2) {
    animation-delay: 1.5s;
}
.ripple-circle:nth-child(3) {
    animation-delay: 3s;
}
@keyframes ripple-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    12% {
        opacity: 0.85;
    }
    100% {
        transform: scale(2.0);
        opacity: 0;
    }
}
.hero-card-left {
    position: absolute;
    left: -250px;
    top: 20px;
    width: 271px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 12;
}
.hero-indicator-left{
	background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
	    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease 0s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}
    

.phone-mockup-wrapper.animate-in .hero-indicator-left {
    opacity: 1;
    transform: translateX(0);
}
.card-image-box {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
}
.card-number-row {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.card-big-num {
    font-size: 34px;
    font-weight: 800;
    color: #FD956F;
    line-height: 1;
}
.card-big-num span{
	font-size:16px;
}
.card-small-text {
    font-size: 16px;
    font-weight: 700;
    color: #FD956F;
	line-height: 1.3em;
	margin-bottom: 3px;
}
.card-desc-row {
    font-size: 16px;
    font-weight: 400;
    color: #063B6D;
    line-height: 1.2;
}
.hero-right-indicators {
    position: absolute;
    right: -250px;
    top: 20px;
    width: 271px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 12;
}
.hero-indicator {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease 0s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}
.phone-mockup-wrapper.animate-in .hero-indicator {
    opacity: 1;
    transform: translateX(0);
}
.phone-mockup-wrapper.animate-in .hero-indicator.indicator-users {
    transition-delay: 3.6s;
}
.phone-mockup-wrapper.animate-in .hero-indicator.indicator-countries {
    transition-delay: 3.9s;
}
.phone-mockup-wrapper.animate-in .hero-indicator.indicator-signal {
    transition-delay: 4.2s;
}

.phone-mockup-wrapper.animate-in .hero-indicator-left.indicator-earlier_warnings {
    transition-delay: 3.6s;
}
.phone-mockup-wrapper.animate-in .hero-indicator-left.indicator-seasonal-risk {
    transition-delay: 3.9s;
}
.phone-mockup-wrapper.animate-in .hero-indicator-left.indicator-calendars {
    transition-delay: 4.2s;
}
.phone-mockup-wrapper.animate-in .hero-indicator-left.indicator-local-language {
    transition-delay: 4.5s;
}

.hero-indicator.indicator-signal {
    flex-direction: column;
}
.indicator-num {
    font-size: 16px;
    font-weight: 700;
    color: #207685;
    line-height: 1.3;
}
.indicator-label {
    font-size: 16px;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.3;
}
.indicator-icon-box {
    width: 38px;
    height: 38px;
    background: var(--color-light-aqua);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-deep-teal);
    flex-shrink: 0;
}
.indicator-icon-box svg {
    display: block;
}
.section-padding {
    padding: 100px 0;
}
.section-padding-half {
    padding: 50px 0 100px;
}
.section-title-label {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-light-aqua);
    margin-bottom: 12px;
}
.section-heading {
    font-size: 32px;
    font-weight:400;
    margin-bottom: 24px;
    line-height: 1.3;
}
@media only screen and (min-width: 768px) {
    .section-heading {
        font-size: 56px;
    }
}
.section-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}


@media only screen and (max-width: 767px) {
    .header .container {
        padding: 0 16px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .btn-donate {
        font-size: 15px;
        padding: 6px 12px;
    }

    .hero {
        height: auto;
        min-height: unset;
        max-height: none;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 30px;
        letter-spacing: -1.2px;
        top: -10px;
        margin-bottom: -10px;
    }
    
    .hero-title span::after {
        margin: 0 6px;
        font-size: 0.7em;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-map {
        width: 160%;
        min-width: 700px;
        bottom: 0;
    }
    .phone-mockup-wrapper {
        position: relative;
        left: auto;
        bottom: auto;
        transform: translateY(60px);
        width: calc(100% - 40px) !important;
        max-width: 270px !important;
        height: auto !important;
        margin: 40px auto 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        opacity: 0;
        transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .phone-mockup-wrapper.animate-in {
        transform: translateY(0);
        opacity: 1;
    }

    .phone-mockup-wrapper #hero-solution-phone {
        order: 3;
        width: 100% !important;
        max-width: 270px !important;
        height: auto !important;
        aspect-ratio: 306 / 605;
        flex-shrink: 0 !important;
        margin: 0 auto !important;
    }

    /* Stacked card & indicators */
    .hero-card-left {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 270px !important;
        margin: 0 auto 10px !important;
        order: 1;
        gap: 6px;
        border-radius: 12px;
        transform: translateY(20px);
        transition: opacity 0.8s ease 0s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s;
    }
    
    .phone-mockup-wrapper.animate-in .hero-card-left {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
    }
    
    .card-image-box {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }
    
    .card-big-num {
        font-size: 20px;
    }
    
    .card-small-text {
        font-size: 18px;
		font-weight:800;
    }
    
    .card-desc-row {
        font-size: 14px;
    }
	
    .hero-right-indicators {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 270px !important;
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin: 0 auto !important;
        order: 2;
    }

    .hero-right-indicators .hero-indicator {
        transform: translateY(20px);
        opacity: 0;
        transition: opacity 0.8s ease 0s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s;
    }
    
    .phone-mockup-wrapper.animate-in .hero-indicator.indicator-users {
        transition-delay: 0.4s;
    }

    .phone-mockup-wrapper.animate-in .hero-indicator.indicator-countries {
        transition-delay: 0.7s;
    }

    .phone-mockup-wrapper.animate-in .hero-indicator.indicator-signal {
        transition-delay: 1.0s;
    }

    .hero-indicator {
        gap: 2px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-indicator.indicator-signal {
        gap: 6px;
    }

    .indicator-num {
        font-size: 16px;
    }

    .indicator-label {
        font-size: 14px;
    }

    .indicator-icon-box {
        width: 24px;
        height: 24px;
    }
    
    .indicator-icon-box svg {
        width: 12px;
        height: 12px;
    }
    
    .phone-ripples {
        display: none;
    }
    
    .container-subtitle {
        font-size: 18px;
    }

    .container-title {
        font-size: 28px;
    }
    
    .problem-section {
        height: auto !important;
        min-height: 500px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}
.problem-section {
    background-color: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}
.container-subtitle {
    color: var(--color-dark-gray);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: lowercase;
}
.container-subtitle::first-letter {
    text-transform: uppercase;
}
.container-title {
    color: var(--color-black);
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-top: 10px;
	position: relative;
	z-index: 100;
}
@media only screen and (max-width: 1199px) {
    .hero {
        min-height: 950px;
        max-height: 1800px;
    }
    
    .hero-title {
        font-size: 38px;
        letter-spacing: -3px;
        top: -30px;
        margin-bottom: -30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        max-width: 90%;
    }

    .phone-mockup-wrapper {
        width: 350px;
        height: 405px;
    }

    #hero-solution-phone {
        width: 280px;
        height: 550px;
    }

    .hero-card-left {
        left: -180px;
        top: 110px;
        width: 190px;
    }

    .hero-right-indicators {
        right: -180px;
        top: 70px;
        width: 190px;
    }

    .container-subtitle {
        font-size: 24px;
    }

    .container-title {
        font-size: 42px;
    }

    .problem-section {
        height: auto !important;
        min-height: 600px;
    }
}
#problem .container-subtitle, #problem .container-title {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.problem-desc {
    color: var(--color-muted-cayman);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin: 15px 0 0;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
	position: relative;
	z-index: 100;
}
@media only screen and (max-width: 767px) {
	.problem-desc {
		font-size: 16px;
	}
}
.problem-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}
.problem-text-content {
    flex: 0 0 480px;
    width: 480px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 100;
	
}
.problem-text-content h2 {
    color: var(--color-black);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.problem-text-content p {
    color: #2f2f2f;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.problem-cards-wrapper {
    flex: 0 0 730px;
    width: 730px;
    height: 610px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 10;
}
.problem-globe-container {
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 836px;
    height: 836px;
    z-index: 0;
    pointer-events: none;
}
.problem-globe-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    animation: slowGlobeRotate 180s linear infinite;
}
@keyframes slowGlobeRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.problem-card {
    position: absolute;
    border-radius: 8px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.08);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}
.problem-card-teal {
    background-color: var(--color-teal);
    width: 340px;
    height: 261px;
    left: 0;
    bottom: 0;
    z-index: 3;
}
.problem-card-teal .problem-card-num {
    color: var(--color-muted-cayman);
}
.problem-card-teal .problem-card-label {
    color: var(--color-white);
}
.problem-card-label-bottom {
	color: #679CCE;
	font-size:14px;
	font-weight: 600;
}


.problem-card-blue {
    background-color: #063b6d;
    width: 372px;
    height: 410px;
    left: 265px;
    bottom: 0;
    z-index: 2;
    padding-left:95px;
}
.problem-card-blue .problem-card-num {
    color: var(--color-light-aqua);
}
.problem-card-blue .problem-card-label {
    color: var(--color-white);
}
.problem-card-gray {
    background-color: #e6e6e6;
    width: 358px;
    height: 608px;
    left: 368px;
    bottom: 0;
    z-index: 1;
}
.problem-card-gray .problem-card-num {
    color: #063b6d;
}
.problem-card-gray .problem-card-label {
    color: #135879;
}
#problem.animate-in .container-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
#problem.animate-in .container-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
#problem.animate-in .problem-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
#problem.animate-in .problem-text-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}
#problem.animate-in .problem-text-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
#problem.animate-in .problem-card-teal {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.7s;
}
#problem.animate-in .problem-card-blue {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.85s;
}
#problem.animate-in .problem-card-gray {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 1.0s;
}
.problem-card-num {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
}
.problem-card-label {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
    #problem .problem-container {
        flex-direction: row;
        align-items: flex-end;
        gap: 40px;
    }
    #problem .problem-text-content {
        flex: 0 0 480px;
        width: 480px;
        max-width: 480px;
    }
    #problem .problem-cards-wrapper {
        flex: 0 0 620px;
        width: 620px;
        height: 520px;
        transform: scale(0.85);
        transform-origin: bottom left;
    }
    #problem .problem-globe-container {
        left: -80px;
        bottom: -50px;
        width: 700px;
        height: 700px;
    }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    #problem .problem-container {
        flex-direction: row;
        align-items: flex-end;
        gap: 30px;
    }
    #problem .problem-text-content {
        flex: 0 0 380px;
        width: 380px;
        max-width: 380px;
    }
    #problem .problem-cards-wrapper {
        flex: 0 0 550px;
        width: 550px;
        height: 460px;
        transform: scale(0.75);
        transform-origin: bottom left;
    }
    #problem .problem-globe-container {
        left: -80px;
        bottom: -50px;
        width: 700px;
        height: 700px;
    }
}
@media only screen and (max-width: 991px) {
    #problem .problem-container {
        flex-direction: column;
        align-items: flex-start;
        margin: 40px 0 0;
        gap: 40px;
    }
    #problem .problem-text-content {
        max-width: 100%;
        width: 100%;
        flex: none;
    }
    #problem .problem-cards-wrapper {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        transform: none;
        flex: none;
    }
    #problem .problem-card {
        position: static !important;
        width: 100% !important;
        max-width: 400px;
		min-height:250px !important;
        height: auto !important;
        min-height: 180px;
        padding: 30px 24px;
    }
    #problem.animate-in .problem-card-teal {
        opacity: 1 !important;
        transform: scaleY(1) !important;
        transition-delay: 0.1s !important;
    }
    #problem.animate-in .problem-card-blue {
        opacity: 1 !important;
        transform: scaleY(1) !important;
        transition-delay: 0.2s !important;
    }
    #problem.animate-in .problem-card-gray {
        opacity: 1 !important;
        transform: scaleY(1) !important;
        transition-delay: 0.3s !important;
    }
    #problem .problem-card-num {
        font-size: 56px;
        margin-bottom: 12px;
    }
    #problem .problem-card-label {
        font-size: 16px;
    }
    #problem .problem-globe-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        height: 90vw;
        max-width: 320px;
        max-height: 320px;
        bottom: auto;
        right: auto;
        opacity: 0.15;
    }
    #problem .problem-globe-bg {
        opacity: 0.15;
    }
}
@media only screen and (max-width: 767px) {
    #problem .container-subtitle {
        font-size: 18px;
    }
    #problem .container-title {
        font-size: 28px;
    }
    #problem.problem-section {
        height: auto !important;
        min-height: 500px;
    }
    #problem.section-padding {
        padding: 60px 0;
    }
}

.voices-section {
    background-color: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}
.voices-images-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    width: 100%;
}
.voices-img-col {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}
.voices-img-col-1 {
    flex: 1.18;
}
.voices-img-col-2 {
    flex: 1.02;
}
.voices-img-col-3 {
    flex: 1;
}
.voices-img-col img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.voices-img-col:hover img {
    transform: scale(1.05);
}
.voices-video-card {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.1);
}
.voices-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 59, 109, 0.8) 0%, rgba(32, 118, 133, 0.75) 50%, rgba(65, 192, 166, 0.8) 100%);
    z-index: 1;
}
.video-play-btn {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 3px solid var(--color-white);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease;
}
.video-play-btn svg {
    width: 38px;
    height: 38px;
}
.video-play-btn::before, 
.video-play-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
}
.video-play-btn::before {
    animation: playPulse 3s linear infinite;
}
.video-play-btn::after {
    animation: playPulse 3s linear infinite 1.5s;
}
@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
#voices .video-play-btn:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.35);
    border-color: var(--color-teal);
    color: var(--color-teal);
}
.voices-video-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    text-align: left;
    z-index: 2;
}
.video-tag {
    color: var(--color-white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
.video-quote {
    color: var(--color-white);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
.voices-img-col {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}
.voices-video-card {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}
.voices-video-text h3, 
.voices-video-text h4 {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.video-play-btn {
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 0.8s ease 0.5s, background-color 0.4s ease, border-color 0.4s ease;
}
#voices.animate-in .voices-img-col-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
#voices.animate-in .voices-img-col-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
#voices.animate-in .voices-img-col-3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
#voices.animate-in .voices-video-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
#voices.animate-in .video-play-btn {
    opacity: 1;
    transform: scale(1);
}
#voices.animate-in .voices-video-text h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
#voices.animate-in .voices-video-text h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .voices-video-card {
        height: 500px;
    }
}
@media only screen and (max-width: 991px) {
    .voices-video-card {
        height: 420px;
    }
    .video-tag {
        font-size: 28px;
    }
    .video-quote {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .voices-images-row {
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(32, 118, 133, 0.4) transparent;
    }
    
    .voices-images-row::-webkit-scrollbar {
        height: 6px;
    }
    
    .voices-images-row::-webkit-scrollbar-thumb {
        background-color: rgba(32, 118, 133, 0.4);
        border-radius: 3px;
    }
    
    .voices-img-col {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }
    
    .voices-img-col img {
        height: 200px;
    }
    
    .voices-video-card {
        height: 350px;
        margin-top: 16px;
    }
    
    .video-play-btn {
        width: 80px;
        height: 80px;
    }
    
    .video-play-btn svg {
        width: 30px;
        height: 30px;
    }
    
    .voices-video-text {
        bottom: 24px;
        left: 24px;
        right: 24px;
    }
    
    .video-tag {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .video-quote {
        font-size: 16px;
    }
    
    #voices.animate-in .voices-img-col {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition-delay: 0.1s !important;
    }
}

.why-now-section {
    background-color: rgb(248, 248, 246);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}
.why-now-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 80px;
}
.why-now-header-left {
    flex: 0 0 680px;
    width: 680px;
}
.why-now-header-right {
    flex: 0 0 470px;
    width: 470px;
}
.why-now-header-desc {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.5;
}
.why-now-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 80px;
}
.why-now-card {
    flex: 0 0 410px;
    width: 410px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.why-now-card-muted-cayman {
    background-color: var(--color-muted-cayman);
    color: var(--color-white);
}
.why-now-card-muted-cayman .why-now-card-title {
    color: var(--color-light-aqua);
}
.why-now-card-light-aqua {
    background-color: var(--color-light-aqua);
    color: #2f2f2f;
}
.why-now-card-light-aqua .why-now-card-title {
    color: var(--color-deep-teal);
}
.why-now-card-deep-teal {
    background-color: var(--color-deep-teal);
    color: var(--color-white);
}
.why-now-card-deep-teal .why-now-card-title {
    color: var(--color-light-aqua);
}
.why-now-card-img-wrapper {
    width: 100%;
    height: 270px;
    overflow: hidden;
}
.why-now-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.why-now-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 16px 36px rgba(0, 0, 0, 0.1);
}
.why-now-card:hover .why-now-card-img-wrapper img {
    transform: scale(1.05);
}
.why-now-card-content {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.why-now-card-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}
.why-now-card-desc {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}
.why-now-shortfalls {
    position: relative;
    width: 100%;
    height: 626px;
    margin-top: 100px;
}

.why-now-shortfalls-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 436px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}
.why-now-shortfalls-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
}
.why-now-shortfalls-desc {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.4;
}
.why-now-badges-cloud {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.why-now-badge {
    position: absolute;
    height: 58px;
    padding: 15px 24px;
    border-radius: 29px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12), 0px 4px 12px rgba(0, 0, 0, 0.06);
    transform: rotate(var(--rotation));
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#why-now .why-now-badge:hover {
    transform: rotate(var(--rotation)) scale(1.05) translateY(-5px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2), 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 20 !important;
}
.badge-muted-cayman { 
	background-color: var(--color-muted-cayman); 
	color: var(--color-light-aqua); 
}
.badge-teal { 
	background-color: var(--color-teal); 
	color: var(--color-light-aqua); 
}
.badge-peach { 
	background-color: #ffdab9; 
	color: #fa713f; 
}
.badge-teal-light { 
	background-color: var(--color-teal); 
	color: #ffe8df; 
}
.badge-peach-light { 
	background-color: #ffbfa8; 
	color: #ffe8df; 
}
.badge-orange { 
	background-color: #fa713f; 
	color: #ffe8df; 
}
.badge-orange-light { 
	background-color: #fa713f; 
	color: #ffe8df; 
}
.badge-yellow { 
	background-color: #f4b942; 
	color: #ffe8df; 
}
.badge-muted-cayman-light { 
	background-color: var(--color-muted-cayman); 
	color: var(--color-white); 
}
.badge-deep-teal { 
	background-color: var(--color-deep-teal); 
	color: var(--color-light-aqua); 
}
.badge-tan { 
	background-color: #dacaa8; 
	color: #f0e8e1; 
}
.why-now-badge:nth-child(1) {
	left: calc(75.67% - 13.93px); 
	top: 414px; 
	z-index: 10; 
}
.why-now-badge:nth-child(2) { 
	left: calc(25% + 17.54px); 
	top: 256px; 
	z-index: 9; 
}
.why-now-badge:nth-child(3) { 
	left: calc(58.33% + 57.64px); 
	top: 218px; 
	z-index: 8; 
}
.why-now-badge:nth-child(4) { 
	left: calc(50% + 120.5px); 
	top: 483px; 
	z-index: 7; 
}
.why-now-badge:nth-child(5) { 
	left: calc(8.33% + -17.57px); 
	top: 450px; 
	z-index: 6; 
}
.why-now-badge:nth-child(6) { 
	left: calc(50% + 41.69px); 
	top: 68px; 
	z-index: 5; 
}
.why-now-badge:nth-child(7) { 
	left: calc(16.67% + -24.55px); 
	top: 373px; 
	z-index: 4; 
}
.why-now-badge:nth-child(8) { 
	left: calc(41.67% + 43.04px); 
	top: 535px; 
	z-index: 3; 
}
.why-now-badge:nth-child(9) { 
	left: calc(8.33% + -61px);  
	top: 526px; 
	z-index: 2; 
}
.why-now-badge:nth-child(10) { 
	left: calc(25% + 44.72px); 
	top: 460px; 
	z-index: 11; 
}
.why-now-badge:nth-child(11) { 
	left: calc(54% - 16.94px); 
	top: 321px; 
	z-index: 1; 
}
.why-now-header-left, 
.why-now-header-right, 
.why-now-card, 
.why-now-shortfalls-text {
    opacity: 0;
    transform: translateY(30px);
}
.why-now-badge {
    opacity: 0;
    transform: translateY(-650px) rotate(0deg);
}
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
    .why-now-card {
        flex: 0 0 350px;
        width: 350px;
        height: 440px;
    }
    .why-now-card-img-wrapper {
        height: 230px;
    }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .why-now-header-left {
        flex: 0 0 550px;
        width: 550px;
    }
    .why-now-header-right {
        flex: 0 0 350px;
        width: 350px;
    }
    .why-now-cards {
        gap: 16px;
    }
    .why-now-card {
        flex: 0 0 295px;
        width: 295px;
        height: 420px;
        padding: 0;
    }
    .why-now-card-content {
        padding: 24px 30px;
    }
    .why-now-card-title {
        font-size: 22px;
    }
    .why-now-card-desc {
        font-size: 16px;
    }
    .why-now-card-img-wrapper {
        height: 200px;
    }
    .why-now-badge {
        font-size: 16px;
        height: 48px;
        padding: 10px 18px;
    }
	.why-now-badge:nth-child(1) { 
		left: 680px; 
		top: 440px; 
	}
	.why-now-badge:nth-child(2) { 
		left: 320px; 
		top: 270px; 
	}
	.why-now-badge:nth-child(3) { 
		left: 620px; 
		top: 200px; 
	}
	.why-now-badge:nth-child(4) { 
		left: 520px; 
		top: 470px; 
	}
	.why-now-badge:nth-child(5) { 
		left: 30px; 
		top: 460px; 
	}
	.why-now-badge:nth-child(6) { 
		left: 460px; 
		top: calc(4% + 90px); 
	}
	.why-now-badge:nth-child(7) { 
		left: 150px; 
		top: 370px; 
	}
	.why-now-badge:nth-child(8) { 
		left: 380px; 
		top: 520px; 
	}
	.why-now-badge:nth-child(9) { 
		left: 0px; 
		top: 520px; 
	}
	.why-now-badge:nth-child(10) { 
		left: 260px; 
		top: 420px; 
	}
	.why-now-badge:nth-child(11) { 
		left: 460px; 
		top: 340px; 
	}
}
@media only screen and (max-width: 991px) {
    .why-now-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    .why-now-header-left,
    .why-now-header-right {
        flex: none;
        width: 100%;
    }
    .why-now-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        margin-bottom: 60px;
    }
    .why-now-card {
        flex: none;
        width: 100%;
        max-width: 450px;
        height: auto;
        min-height: 380px;
    }
    .why-now-card-img-wrapper {
        height: 240px;
    }
    .why-now-shortfalls {
        height: auto;
        margin-top: 60px;
    }
    .why-now-shortfalls-text {
        position: static;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .why-now-badges-cloud {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        width: 100%;
        height: auto;
    }
    
    .why-now-badge {
        position: static !important;
        transform: none !important;
        opacity: 0;
        animation: none !important;
        transition: opacity 0.5s ease;
        height: 48px;
        padding: 10px 20px;
        font-size: 16px;
        white-space: normal;
        text-align: center;
    }
    
    #why-now .why-now-badge:hover {
        transform: scale(1.05) !important;
    }
    
    #why-now.animate-in .why-now-badge {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: opacity 0.5s ease !important;
        transition-delay: 0.1s !important;
    }
}
.hero-anticipa, 
.hero-title, 
.hero-subtitle, 
.hero-map, 
.phone-mockup-wrapper, 
.hero-card-left, 
.hero-indicator, 
.why-now-header-left, 
.why-now-header-right, 
.why-now-card, 
.why-now-shortfalls-text, 
.why-now-badge, 
.voices-img-col, 
.voices-video-card, 
.video-play-btn, 
.voices-video-text h3, 
.voices-video-text h4, 
#problem .container-subtitle, 
#problem .container-title, 
.problem-desc, 
.problem-text-content h2, 
.problem-text-content p, 
.problem-card, 
.solution-section .container-subtitle, 
.solution-section .container-title, 
.solution-desc-left, 
.solution-desc-right, 
.solution-badge, 
.solution-phone, 
.solution-lines-svg, 
.solution-footer p, 
.animate-chat-item, 
.feature-large-card, 
.feature-small-card, 
.map-section .map-subtitle, 
.map-section .map-title, 
.map-section .map-desc, 
.map-section .metric-item, 
.map-section .metric-divider, 
.map-section .world-map-img {
    transition: none !important;
    animation: none !important;
}
.solution-section {
    background-color: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}
.solution-header .highlight-teal {
    color: var(--color-teal);
}
.solution-desc-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin: 40px 0 60px;
    align-items: flex-start;
}
.solution-desc-left {
    flex: 0 0 540px;
    width: 540px;
    max-width: 540px;
    color: var(--color-black);
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
}
.solution-desc-right {
    flex: 0 0 469px;
    width: 469px;
    max-width: 469px;
    color: #2f2f2f;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}
.solution-diagram-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.diagram-headers {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-family, "Montserrat", sans-serif);
}
.column-header-before {
    color: #ffbaa1;
}
.column-header-after {
    color: var(--color-muted-cayman);
}
.column-header-before .arrow, .column-header-after .arrow {
    margin-left: 6px;
    display: inline-block;
}
.solution-diagram {
    position: relative;
    width: 100%;
    height: 722px;
    margin: 0 auto;
}
.diagram-col {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 10;
}
.before-col {
    left: 0;
    width: 300px;
}
.after-col {
    right: 0;
    width: 300px;
}
.center-col {
    left: 50%;
    transform: translateX(-50%);
    width: 306px;
    height: 605px;
    top: 62px;
}
.solution-badge {
    position: absolute;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 20px;
    font-weight: 400;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 12;
}
.solution-badge:hover {
    transform: scale(1.05) !important;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}
.badge-before {
    background-color: #ffbaa1;
    color: var(--color-white);
    height: 60px;
    left: 0;
    padding: 0 24px;
}
.before-col .solution-badge:nth-child(1) {
	width: 208px;
	top: 92px;
}

.before-col .solution-badge:nth-child(2) {
	width: 185px;
	top: 189px;
}

.before-col .solution-badge:nth-child(3) {
	width: 155px;
	top: 287px;
}

.before-col .solution-badge:nth-child(4) {
	width: 247px;
	top: 383px;
}

.before-col .solution-badge:nth-child(5) {
	width: 255px;
	top: 480px;
}

.before-col .solution-badge:nth-child(6) {
	width: 197px;
	top: 577px;
}
.badge-after {
    background-color: var(--color-light-aqua);
    color: var(--color-muted-cayman);
    right: 0;
    padding: 12px 24px;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}
.after-col .solution-badge:nth-child(1) {
	width: 235px;
	height: 86px;
	top: 92px;
}

.after-col .solution-badge:nth-child(2) {
	width: 201px;
	height: 63px;
	top: 218px;
}

.after-col .solution-badge:nth-child(3) {
	width: 198px;
	height: 86px;
	top: 321px;
}

.after-col .solution-badge:nth-child(4) {
	width: 201px;
	height: 63px;
	top: 447px;
}

.after-col .solution-badge:nth-child(5) {
	width: 235px;
	height: 86px;
	top: 550px;
}
.sonar-rings {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 726px;
    height: 722px;
    pointer-events: none;
    z-index: 1;
}
.sonar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(76, 219, 176, 0.12);
    background: transparent;
    pointer-events: none;
    animation: sonarPulse 6s ease-in-out infinite;
}
.sonar-ring:nth-child(1) { 
	width: 326px; 
	height: 326px; 
	animation-delay: 0s; 
}
.sonar-ring:nth-child(2) { 
	width: 418px; 
	height: 418px; 
	animation-delay: 0.8s; 
}
.sonar-ring:nth-child(3) { 
	width: 502px; 
	height: 502px; 
	animation-delay: 1.6s; 
}
.sonar-ring:nth-child(4) { 
	width: 584px; 
	height: 584px; 
	animation-delay: 2.4s; 
}
.sonar-ring:nth-child(5) { 
	width: 662px; 
	height: 662px; 
	animation-delay: 3.2s; 
}
.sonar-ring:nth-child(6) { 
	width: 726px; 
	height: 726px; 
	animation-delay: 4.0s; 
}
@keyframes sonarPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 0.55;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.15;
    }
}
.solution-phone {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fcfcfc;
    border-radius: 40px;
    border: 8px solid #ffffff;
    box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.08), 0px 8px 16px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f7fafc;
}
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    z-index: 100;
}
.chat-header {
    background: #ffffff;
    padding: 22px 14px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    z-index: 10;
}
.chat-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-light-aqua);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.chat-avatar img {
    width: 16px;
    height: 16px;
}
.chat-title-group {
    display: flex;
    flex-direction: column;
}
.chat-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
}
.chat-status {
    font-size: 9px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 4px;
}
.status-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-teal);
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 219, 176, 0.7); }
    70% { box-shadow: 0 0 0 4px rgba(76, 219, 176, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 219, 176, 0); }
}
.chat-menu {
    display: flex;
    gap: 3px;
    cursor: pointer;
}
.chat-menu span {
    width: 4px;
    height: 4px;
    background-color: #a0aec0;
    border-radius: 50%;
}
.chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: none;
}
.chat-body::-webkit-scrollbar {
    display: none;
}
.alert-card {
    background: linear-gradient(135deg, #EC681D 0%, #F48E2B 100%);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    box-shadow: 0px 4px 12px rgba(236, 104, 29, 0.2);
}
.alert-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.alert-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.alert-text {
    font-size: 10px;
    opacity: 0.95;
    line-height: 1.3;
}
.alert-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.home-wave-icon {
    width: 18px;
    height: 18px;
    color: var(--color-white);
}
.chat-bubble {
    background: var(--color-white);
    border-radius: 16px 16px 16px 4px;
    padding: 10px 12px;
    max-width: 90%;
    align-self: flex-start;
    border: 1px solid #edf2f7;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.chat-bubble p {
    font-size: 11px;
    color: #2d3748;
    line-height: 1.35;
    margin: 0;
}
.chat-bubble p:not(:last-of-type) {
    margin-bottom: 4px;
}
.chat-time {
    font-size: 8px;
    color: #a0aec0;
    align-self: flex-end;
    margin-top: 1px;
}
.chat-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.chat-btn {
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 9px;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    border: 1px solid #edf2f7;
    background-color: var(--color-white);
    color: #718096;
}
.chat-btn.btn-primary {
    border-color: #ffbaa1;
    color: #ec681d;
}
.chat-btn.btn-primary:hover {
    background-color: #ffbaa1;
    color: var(--color-white);
}
.chat-btn.btn-secondary:hover {
    background-color: #edf2f7;
}
.chat-btn .btn-icon {
    stroke-width: 2.2;
}
.chat-footer {
    background: var(--color-white);
    padding: 8px 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #edf2f7;
}
.chat-input-pill {
    flex: 1;
    background: #f7fafc;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
}
.input-placeholder {
    font-size: 10px;
    color: #a0aec0;
}
.chat-send-btn {
    width: 28px;
    height: 28px;
    background: #f7fafc;
    border: 1px solid #edf2f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #a0aec0;
    transition: all 0.2s ease;
    padding: 0;
}
.chat-send-btn:hover {
    background: var(--color-teal);
    color: var(--color-white);
    border-color: var(--color-teal);
}
.send-arrow {
    width: 12px;
    height: 12px;
}
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    height: 14px;
}
.typing-indicator span {
    width: 5px;
    height: 5px;
    background-color: var(--color-muted-cayman);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite both;
}
.typing-indicator span:nth-child(1) { 
	animation-delay: 0s; 
}
.typing-indicator span:nth-child(2) { 
	animation-delay: 0.2s; 
}
.typing-indicator span:nth-child(3) { 
	animation-delay: 0.4s; 
}
@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}
.chat-bubble .bubble-content {
    display: none;
}
.chat-bubble.revealed .typing-indicator {
    display: none;
}
.chat-bubble.revealed .bubble-content {
    display: block;
}
.solution-lines-svg {
    position: absolute;
    left: 56.3px;
    top: 92px;
    width: 1124px;
    height: 495px;
    pointer-events: none;
    z-index: 5;
}

.solution-footer {
    margin-top: 60px;
}
.solution-footer p {
    color: var(--color-black);
    font-size: 42px;
    font-weight: 400;
    line-height: 140%;
}
@media only screen and (max-width: 991px) {
    .solution-desc-grid {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0 40px;
    }
    
    .solution-desc-left,
    .solution-desc-right {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .solution-desc-left {
        font-size: 24px;
    }
    
    .solution-desc-right {
        font-size: 16px;
    }
    
    .diagram-headers {
        display: none;
    }
    
    .solution-diagram {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 32px;
    }
    
    .diagram-col {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px;
        padding: 16px 0;
        box-sizing: border-box;
    }
    
    .before-col::before {
        content: 'Before ANTICIPA';
        display: block;
        width: 100%;
        text-align: center;
        font-weight: 700;
        color: #ffbaa1;
        font-size: 18px;
        margin-bottom: 6px;
        font-family: var(--font-family, "Montserrat", sans-serif);
    }
    
    .after-col::before {
        content: 'After ANTICIPA';
        display: block;
        width: 100%;
        text-align: center;
        font-weight: 700;
        color: var(--color-muted-cayman);
        font-size: 18px;
        margin-bottom: 6px;
        font-family: var(--font-family, "Montserrat", sans-serif);
    }
    
    .solution-badge {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        padding: 10px 16px !important;
        font-size: 14px !important;
        text-align: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
    }
    
    .center-col {
        margin: 20px 0;
        top: auto !important;
        transform: none !important;
        display: block !important;
    }
    
    .solution-lines-svg,
    .sonar-rings {
        display: none !important;
    }
    
    .solution-footer {
        margin-top: 40px;
    }
    
    .solution-footer p {
        font-size: 18px;
    }

    .solution-phone {
        width: 100% !important;
        max-width: 306px !important;
        height: auto !important;
        aspect-ratio: 306 / 605;
        margin: 0 auto;
    }
}
.gsap-failed .hero-anticipa, 
.gsap-failed .hero-title, 
.gsap-failed .hero-subtitle, 
.gsap-failed .hero-map, 
.gsap-failed .phone-mockup-wrapper, 
.gsap-failed .hero-card-left, 
.gsap-failed .hero-indicator, 
.gsap-failed #problem .container-subtitle, 
.gsap-failed #problem .container-title, 
.gsap-failed .problem-desc, 
.gsap-failed .problem-text-content h2, 
.gsap-failed .problem-text-content p, 
.gsap-failed .problem-card, 
.gsap-failed .voices-img-col, 
.gsap-failed .voices-video-card, 
.gsap-failed .video-play-btn, 
.gsap-failed .voices-video-text h3, 
.gsap-failed .voices-video-text h4, 
.gsap-failed .why-now-header-left, 
.gsap-failed .why-now-header-right, 
.gsap-failed .why-now-card, 
.gsap-failed .why-now-shortfalls-text, 
.gsap-failed .why-now-badge, 
.gsap-failed .solution-section .container-subtitle, 
.gsap-failed .solution-section .container-title, 
.gsap-failed .solution-desc-left, 
.gsap-failed .solution-desc-right, 
.gsap-failed .solution-phone, 
.gsap-failed .solution-lines-svg, 
.gsap-failed .solution-badge, 
.gsap-failed .solution-footer p, 
.gsap-failed .animate-chat-item {
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
    stroke-opacity: 1 !important;
}
.gsap-failed .chat-bubble .bubble-content {
    display: block !important;
}
.gsap-failed .chat-bubble .typing-indicator {
    display: none !important;
}
.features-wrapper {
    margin-top: 100px;
}
@media only screen and (max-width: 991px) {
    .features-wrapper {
        margin-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .features-wrapper {
        margin-top: 60px;
    }
}
.features-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.feature-large-card {
    flex: 0 0 626px;
    width: 626px;
    height: 620px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    opacity: 0;
}
@media only screen and (max-width: 1399px) {
    .feature-large-card {
        flex: 0 0 500px;
        width: 500px;
    }
}
@media only screen and (max-width: 1199px) {
    .features-flex-container {
        flex-wrap: wrap;
    }
    .feature-large-card {
        flex: 0 0 100%;
        width: 100%;
    }
}
.feature-large-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-large-card:hover .feature-large-bg {
    transform: scale(1.05);
}
.feature-large-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #135879 100%);
    mix-blend-mode: multiply;
    border-radius: 16px;
    pointer-events: none;
}
.feature-large-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    color: var(--color-white);
}
.feature-large-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
    font-family: var(--font-family, "Montserrat", sans-serif);
}
.feature-large-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-family, "Montserrat", sans-serif);
}
.features-small-cards-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
    justify-content: flex-end;
}
.feature-small-card {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    height: 300px;
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    position: relative;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
    opacity: 0;
}
.feature-small-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 16px 36px rgba(0, 0, 0, 0.08);
}
.feature-card-icon-box {
    position: relative;
    width: 60px;
    height: 60px;
}
.feature-icon-base {
    width: 60px;
    height: 60px;
    display: block;
	border-radius: 50%;
}
.feature-icon-overlay {
    position: absolute;
}
.unified-data-overlay {
    left: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
}
.two-way-overlay {
    left: 13px;
    top: 14px;
    width: 34px;
    height: 32px;
}
.ai-guidance-overlay {
    left: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
}
.preparedness-overlay {
    left: 11px;
    top: 17px;
    width: 38px;
    height: 26px;
}
.feature-card-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: inherit;
}
.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    font-family: var(--font-family, "Montserrat", sans-serif);
}
.feature-card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    font-family: var(--font-family, "Montserrat", sans-serif);
}
.card-unified-data {
    background-color: #41c0a6;
    border: 1px solid #4cdbb0;
    color: var(--color-white);
}
.card-two-way {
    background-color: #d4f5ee;
    color: var(--color-muted-cayman);
}
.card-ai-guidance {
    background-color: var(--color-deep-teal);
    color: var(--color-white);
}
.card-ai-guidance .feature-card-title {
    color: #d4f5ee;
}
.card-preparedness {
    background-color: #e6e6e6;
    color: var(--color-deep-teal);
}
@media only screen and (max-width: 991px) {
    .features-flex-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .feature-large-card {
        width: 100%;
        max-width: 626px;
        height: 500px;
    }
    
    .features-small-cards-grid {
        justify-content: center;
        width: 100%;
        max-width: 642px;
    }
}
@media only screen and (max-width: 767px) {
    .feature-large-card {
        height: 400px;
    }
    
    .feature-large-content {
        left: 30px;
        bottom: 30px;
        right: 30px;
    }
    
    .feature-large-title {
        font-size: 28px;
    }
    
    .feature-large-desc {
        font-size: 16px;
    }
    
    .features-small-cards-grid {
        gap: 16px;
    }
    
    .feature-small-card {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        padding: 30px;
        gap: 20px;
    }
}
.gsap-failed .feature-large-card, .gsap-failed .feature-small-card {
    opacity: 1 !important;
    transform: none !important;
}
.stories-section {
    background: linear-gradient(180deg, #063B6D 0%, #135879 28.85%, #207685 54.81%, #41C0A6 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}
.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 30px;
}
.stories-header-left {
    flex: 0 0 50%;
    max-width: 50%;
}
.stories-subtitle {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-teal);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}
.stories-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    letter-spacing: -1.5px;
}
.stories-header-right {
    flex: 0 0 45%;
    max-width: 45%;
}
.stories-desc {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}
.stories-divider {
    height: 1px;
    width: 100%;
    background: #207685;
    margin: 30px 0 60px 0;
}
.stories-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
}
.story-video-col {
    flex: 0 0 50%;
    max-width: 50%;
}
.story-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 627 / 394;
    border-radius: 24px 200px 200px 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.story-video-img-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    z-index: 1;
}
.story-video-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-play-btn {
    position: absolute;
    top: 50%;
    right: 115px;
    transform: translate(50%, -50%);
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 20;
    padding: 0;
}
.story-play-btn img {
    width: 48px;
    height: 48px;
    display: block;
    margin-left: 12px;
}
.story-play-btn:hover {
    transform: translate(50%, -50%) scale(1.08);
    background-color: var(--color-white);
    box-shadow: 0 20px 45px rgba(76, 219, 176, 0.4);
}
.story-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}
.story-quote-col {
    flex: 0 0 45%;
    max-width: 45%;
}
.story-quote-container {
    position: relative;
    padding: 20px 40px;
}
.quote-symbol {
    position: absolute;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 95px;
    line-height: 1;
    font-weight: 900;
    color: rgba(177, 255, 235, 0.15);
    user-select: none;
    pointer-events: none;
}
.open-quote {
    left: -41px;
    top: 20px;
}
.close-quote {
    right: 0px;
    bottom: -20px;
}
.story-quote-text {
    font-size: 34px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.story-quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.author-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
}
.author-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}
.stories-carousel-row {
    margin-top: 40px;
}
.carousel-title {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-transform: capitalize;
}
.stories-carousel-container {
    display: flex;
    align-items: center;
    gap: 16px;
}
.stories-carousel-thumbs {
    display: flex;
    gap: 16px;
    flex: 1;
	width: 121px;
    overflow: hidden;
}
.story-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	border:1px solid rgba(255,255,255, 0.0);
	border-radius:10px;
}

.story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	
	transition: 0.3s ease;
	
}
.story-thumb:hover img {
    transform: scale(1.08);
	
}
.story-thumb.active{
    border:1px solid #b1ffeb;
}
.stories-carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}
.stories-carousel-arrow img {
    width: 24px;
    height: 24px;
    display: block;
}
.stories-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}
@media only screen and (max-width: 991px) {
    .stories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .stories-header-left,
    .stories-header-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stories-title {
        font-size: 40px;
    }
    
    .stories-divider {
        margin: 25px 0 40px 0;
    }
    
    .stories-content-row {
        flex-direction: column;
        gap: 45px;
        align-items: center;
        margin-bottom: 50px;
    }
    
    .story-video-col {
        flex: 0 0 100%;
        max-width: 600px;
        width: 100%;
    }
    
    .story-play-btn {
        width: 110px;
        height: 110px;
    }
    
    .story-play-btn img {
        width: 38px;
        height: 38px;
    }
    
    .story-quote-col {
        flex: 0 0 100%;
        max-width: 600px;
        width: 100%;
    }
    
    .story-quote-container {
        padding: 15px 30px;
    }
    
    .story-quote-text {
        font-size: 26px;
    }
    
    .quote-symbol {
        font-size: 150px;
    }
    
    .close-quote {
        bottom: -100px;
    }
}
@media only screen and (max-width: 767px) {
    .stories-section {
        padding: 60px 0;
    }
    
    .stories-subtitle {
        font-size: 16px;
    }
    
    .stories-title {
        font-size: 32px;
    }
    
    .stories-desc {
        font-size: 16px;
    }
    
    .story-video-card {
        border-radius: 16px 100px 100px 16px;
    }
    
    .story-play-btn {
        width: 80px;
        height: 80px;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
    }
    
    .story-play-btn img {
        width: 28px;
        height: 28px;
        margin-left: 4px;
    }
    
    .story-play-btn:hover {
        transform: translate(50%, -50%) scale(1.05);
    }
    
    .story-quote-container {
        padding: 10px 20px;
    }
    
    .story-quote-text {
        font-size: 20px;
    }
    
    .quote-symbol {
        font-size: 110px;
    }
    
    .open-quote {
        left: -10px;
        top: -60px;
    }
    
    .close-quote {
        right: 10px;
        bottom: -70px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-title {
        font-size: 14px;
    }
    
    .stories-carousel-container {
        gap: 16px;
    }
    
    .stories-carousel-thumbs {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        gap: 12px;
    }
    
    .story-thumb {
        scroll-snap-align: start;
        flex: 0 0 100px;
        width: 100px;
        height: 76px;
    }
    
    .stories-carousel-arrow {
        display: none;
    }
}

.gsap-failed .stories-header-left, 
.gsap-failed .stories-header-right, 
.gsap-failed .story-video-col, 
.gsap-failed .story-quote-col, 
.gsap-failed .story-thumb, 
.gsap-failed .stories-divider, 
.gsap-failed .map-header-left, 
.gsap-failed .map-header-right, 
.gsap-failed .metric-item {
    opacity: 1 !important;
    transform: none !important;
    scale: 1 !important;
}
.map-section {
    background-color: #f8f8f6;
    color: #0b0f14;
    position: relative;
    overflow: hidden;
}
.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 50px;
}
.map-header-left {
    flex: 0 0 50%;
    max-width: 50%;
}
.map-subtitle {
    font-size: 28px;
    font-weight: 500;
    color: #474646;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}
.map-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    color: #000;
    letter-spacing: -1.5px;
}
.map-header-v2{
	justify-content:center;
}
.map-header-v2 h2{
	font-size:26px;
}
.map-header-right {
    flex: 0 0 45%;
    max-width: 45%;
}
.map-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #474646;
}
@media only screen and (max-width: 1199px) {
    .map-header{
        flex-wrap: wrap;
    }
    .map-header-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .map-header-right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .map-desc br{
        display:none;
    }
}
.map-metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    flex: 1;
    padding:0 45px;
}
.metric-number {
    font-size: 64px;
    font-weight: 700;
    color: #207685;
    line-height: 1;
}
.metric-label {
    font-size: 20px;
    font-weight: 500;
    color: #0b0f14;
}
@media only screen and (max-width: 1199px) {
    .metric-number {
        font-size: 46px;
    }

    .metric-label {
        font-size: 16px;
    }
}
.metric-divider {
    width: 2px;
    height: 80px;
    background: rgba(32, 118, 133, 0.15);
    transform: rotate(30deg);
    flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
    .map-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .map-header-left,
    .map-header-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .map-title {
        font-size: 40px;
    }
    
    .map-metrics-row {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        padding: 24px 30px;
        margin-bottom: 40px;
    }
    
    .metric-divider {
        display: none;
    }
    
    .metric-item {
        flex: 0 0 calc(50% - 12px);
    }
    
    .metric-number {
        font-size: 48px;
    }
    

}
@media only screen and (max-width: 767px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-subtitle {
        font-size: 16px;
    }
    
    .map-title {
        font-size: 32px;
    }
    
    .map-desc {
        font-size: 16px;
    }
    
    .metric-item {
        flex: 0 0 100%;
    }
    
    .metric-number {
        font-size: 40px;
    }
    
    .metric-label {
        font-size: 18px;
    }
    
    .card-country-name {
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}
.partnerships-section {
    background: #ffffff;
    overflow: hidden;
}
.partnerships-header {
    margin-bottom: 60px;
}
.partnerships-subtitle {
    display: block;
    font-size: 28px;
    font-weight: 400;
    color: #555555;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
    text-transform: none;
    font-family: var(--font-family, "Montserrat", sans-serif);
}
.partnerships-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 24px;
    font-family: var(--font-family, "Montserrat", sans-serif);
    letter-spacing: -0.02em;
}
.partnerships-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    font-family: var(--font-family, "Montserrat", sans-serif);
    letter-spacing: 0.02em;
}
.partners-logos-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
    .partners-logos-container {
        margin-bottom: 0px;
    }
}
@media only screen and (max-width: 991px) {
    .partners-logos-container {
        flex-wrap: wrap;
    }
}
.partner-logo-item {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 143px;
}
.partner-logo-img {
    max-height: 90px;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s ease;
}
.partner-logo-img:hover {
    transform: scale(1.05);
}
.partnerships-divider {
    height: 1px;
    background: #E6E6E6;
    width: 100%;
    margin-bottom: 60px;
}
.accelerator-banner {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.01);
}
.accelerator-content {
    flex: 1;
}
.accelerator-title {
    font-size: 42px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
    font-family: var(--font-family, "Montserrat", sans-serif);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.accelerator-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #2F2F2F;
    font-family: var(--font-family, "Montserrat", sans-serif);
    margin: 0;
}
@media only screen and (max-width: 1199px) {
    .accelerator-title {
        font-size: 32px;
    }
    .accelerator-desc {
        font-size: 16px;
    }
}
.accelerator-logo {
    flex-shrink: 0;
    width: 329px;
    height: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accelerator-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.animate-partners {
    opacity: 0;
    transform: translateY(30px);
}
.gsap-failed .animate-partners {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
@media only screen and (max-width: 991px) {
    .partnerships-section {
        padding: 80px 0;
    }
    
    .partnerships-title {
        font-size: 38px;
    }
    
    .partners-logos-container {
        justify-content: center;
        gap: 30px;
    }
    
    .partner-logo-item {
        flex: 0 0 calc(50% - 20px);
        height: 100px;
    }
    
    .partner-logo-img {
        max-height: 70px;
    }
    
    .accelerator-banner {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        text-align: center;
    }
    
    .accelerator-title {
        font-size: 28px;
    }
    
    .accelerator-logo {
        width: 280px;
        height: auto;
    }
}
@media only screen and (max-width: 767px) {
    .partnerships-section {
        padding: 60px 0;
    }
    
    .partnerships-subtitle {
        font-size: 16px;
    }
    
    .partnerships-title {
        font-size: 32px;
    }
    
    .partnerships-desc {
        font-size: 16px;
    }
    
    .partner-logo-item {
        flex: 0 0 100%;
        height: 80px;
    }
    
    .partner-logo-img {
        max-height: 60px;
    }
    
    .accelerator-title {
        font-size: 24px;
    }
    
    .accelerator-desc {
        font-size: 16px;
    }
}
.cta-section {
    background: #ffffff;
    overflow: hidden;
}
.cta-wrapper {
    display: flex;
    position: relative;
    background: linear-gradient(180deg, rgb(6, 59, 109) 0%, rgb(19, 88, 121) 28.85%, rgb(32, 118, 133) 54.81%, rgb(65, 192, 166) 100%);
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    align-items: stretch;
    min-height: 642px;
}
.cta-content {
    flex: 1 1 auto;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.cta-subtitle {
    display: block;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}
.cta-title {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 504px;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn-donor {
    background-color: #f08057;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.btn-donor:hover {
    background-color: #d86c44;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-partner-cta {
    background-color: #ffffff;
    color: #135879;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.btn-partner-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.cta-image-container {
    width: 466px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}
.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.animate-cta {
    opacity: 0;
    transform: translateY(30px);
}
.gsap-failed .animate-cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
@media only screen and (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .cta-content {
        padding: 60px 40px;
        align-items: center;
        text-align: center;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-subtitle {
        font-size: 22px;
    }

    .cta-image-container {
        width: 100%;
        height: 350px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .cta-content {
        padding: 50px 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-donor, .btn-partner-cta {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .cta-image-container {
        height: 280px;
    }
}
.footer-section {
    background-color: #FAFAFA;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
    color: #2f2f2f;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-col {
    flex: 1 1 250px;
}
.footer-col-left {
    flex: 1.5 1 350px;
}
.footer-logo {
    margin-bottom: 24px;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}
.footer-address {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 24px 0;
    max-width: 320px;
}
.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}
.social-link {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f7f7f7;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}
.social-link:hover {
    background-color: #135879;
    color: #ffffff;
    transform: translateY(-2px);
}
.footer-title {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 24px 0;
    text-transform: none;
    letter-spacing: -0.01em;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 14px;
}
.footer-links li:last-child {
    margin-bottom: 0;
}
.footer-links a {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-links a:hover {
    color: #135879;
    padding-left: 4px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e6e6e6;
    padding-top: 30px;
    margin-top: 60px;
}
.copyright-text {
    font-size: 15px;
    color: #555555;
    margin: 0;
}
.privacy-link {
    font-size: 15px;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}
.privacy-link:hover {
    color: #135879;
}
@media only screen and (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px 0;
    }
    
    .footer-bottom {
        margin-top: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-col {
        flex: 1 1 100%;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 40px;
        padding-top: 24px;
    }
    
    .footer-title {
        margin-bottom: 16px;
    }
}

.poverty-map-container {
    background: rgba(255, 255, 255, 0.05);
}

#poverty-map {
    height: 550px;
    width: 100%;
    background-color: #f8f8f6;
    position: relative;
}


.map-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #edf2f7;
    padding: 12px 24px;
    border-radius: 40px;
    margin-top: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    color: var(--color-black);
}

.map-control-btn {
    background: var(--color-deep-teal);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(19, 88, 121, 0.25);
    flex-shrink: 0;
}

.map-control-btn:hover {
    background-color: var(--color-teal);
    transform: scale(1.05);
}

.map-control-btn svg {
    display: block;
}

.map-year-label {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-deep-teal);
    min-width: 60px;
    text-align: center;
    font-family: var(--font-family, "Montserrat", sans-serif);
    letter-spacing: -0.5px;
}

.map-year-end {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-left: -4px;
}

.map-slider-range {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

.map-slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-deep-teal);
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.map-slider-range::-webkit-slider-thumb:hover {
    background: var(--color-teal);
    transform: scale(1.1);
}

.map-slider-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-deep-teal);
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.map-slider-range::-moz-range-thumb:hover {
    background: var(--color-teal);
    transform: scale(1.1);
}

.map-legend {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #edf2f7;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    color: var(--color-black);
}

.legend-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-deep-teal);
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-scale {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark-gray);
    flex: 1 0 calc(7.6% - 8px);
    min-width: 70px;
}

.legend-color {
    width: 24px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.15);
    display: inline-block;
    flex-shrink: 0;
}

.legend-color.legend-no-data {
    background-color: #f2f2f2;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, #e2e8f0 3px, #e2e8f0 6px);
}

.legend-label {
    white-space: nowrap;
}


.leaflet-bar {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.leaflet-bar a {
    background-color: #ffffff !important;
    color: var(--color-deep-teal) !important;
    border-bottom: 1px solid #edf2f7 !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.leaflet-bar a:hover {
    background-color: var(--color-teal) !important;
    color: #ffffff !important;
}

.poverty-tooltip {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    font-family: var(--font-family) !important;
    font-size: 13px !important;
    padding: 8px 12px !important;
    color: var(--color-black) !important;
    pointer-events: none !important;
}

.poverty-tooltip-title {
    font-weight: 700;
    color: var(--color-deep-teal);
    margin-bottom: 4px;
}

.poverty-tooltip-value {
    font-weight: 800;
    color: #e57038;
}

.poverty-map-tip {
    position: absolute;
    z-index: 900;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 13px;
    color: var(--color-black);
    max-width: 220px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.poverty-map-tip.visible {
    opacity: 1;
}


@media only screen and (max-width: 767px) {
    .poverty-map-container {
        padding: 8px;
        margin-top: 24px;
    }

    #poverty-map {
        height: 300px;
        border-radius: 8px;
        touch-action: none;
    }

    .map-controls {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 30px;
        margin-top: 12px;
        flex-wrap: nowrap;
        min-width: 0;
        overflow: hidden;
    }

    .map-control-btn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .map-control-btn svg {
        width: 16px;
        height: 16px;
    }

    .map-year-label {
        font-size: 14px;
        min-width: 36px;
        flex-shrink: 0;
    }

    .map-year-end {
        font-size: 12px;
        flex-shrink: 0;
    }

    .map-slider-range {
        min-width: 0;
        flex: 1 1 0;
    }

    .map-legend {
        margin-top: 12px;
        padding: 10px 12px;
    }

    .legend-title {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .legend-scale {
        gap: 4px;
    }

    .legend-item {
        flex: 0 0 auto;
        min-width: 0;
        gap: 3px;
        font-size: 10px;
    }

    .legend-color {
        width: 16px;
        height: 12px;
        border-radius: 2px;
    }
}

@media only screen and (max-width: 360px) {
    #poverty-map {
        height: 260px;
    }

    .map-controls {
        padding: 6px 10px;
        gap: 6px;
    }

    .map-year-label {
        font-size: 13px;
        min-width: 30px;
    }

    .map-year-end {
        display: none;
    }

    .legend-item .legend-label {
        display: none;
    }

    .legend-color {
        width: 18px;
        height: 12px;
        border-radius: 2px;
    }
}


.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 99999;
    display: none;
    transition: 0.3s ease;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 50px;
    box-sizing: border-box;
    border-radius: 30px;
    z-index: 999991;
    display: none;
    border: 1px solid #E3D6F5;
    background: #fff;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
	overflow: hidden;
}
.window.donation {
	padding: 20px 15px;
	min-width:420px;
}
.window .close_window {
    position: absolute;
    top: 20px;
    right: 20px;
}

.window .close_window svg path {
    fill: #20124D;
    opacity: 0.5;
}

.window .close_window:hover svg path {
    opacity: 1;
}


.donation_container .wp-funraise-embed-giving-form div,
.donation_container .wp-funraise-embed-giving-form iframe{
	min-height:672px !important;
}


@media only screen and (max-height: 700px) {
    .window {
        height: calc(100vh - 30px);
        overflow-y: scroll;
    }
}

@media only screen and (max-width: 767px) {
    .window {
        padding: 30px 15px;
        width: calc(100% - 30px);
    }
	
	.window.donation {
		padding: 20px 0px;
		min-width:100%;
		width:100%;
	}
		
	.donation_container .wp-funraise-embed-giving-form div,
	.donation_container .wp-funraise-embed-giving-form iframe{
		min-width:320px !important;
		width:100% !important;
	}

}

#blog .blog-header-left,
#blog .blog-header-right,
#blog .blog-card {
    will-change: transform, opacity;
}

.blog-section {
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 80px;
}
.blog-header-left {
    flex: 0 0 680px;
    width: 680px;
}
.blog-header-right {
    flex: 0 0 470px;
    width: 470px;
}
.blog-header-desc {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.5;
}
.blog-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 80px;
}
.blog-card {
    flex: 0 0 410px;
    width: 410px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.blog-card-muted-cayman {
    background-color: var(--color-muted-cayman);
    color: var(--color-white);
}
.blog-card-muted-cayman .blog-card-title {
    color: var(--color-light-aqua);
}
.blog-card-light-aqua {
    background-color: var(--color-light-aqua);
    color: #2f2f2f;
}
.blog-card-light-aqua .blog-card-title {
    color: var(--color-deep-teal);
}
.blog-card-deep-teal {
    background-color: var(--color-deep-teal);
    color: var(--color-white);
}
.blog-card-deep-teal .blog-card-title {
    color: var(--color-light-aqua);
}
.blog-card-img-wrapper {
    width: 100%;
    height: 270px;
    overflow: hidden;
}
.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 16px 36px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blog-card-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-card-desc {
    font-family: var(--font-family, "Montserrat", sans-serif);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-shortfalls {
    position: relative;
    width: 100%;
    height: 626px;
    margin-top: 100px;
}

.blog-shortfalls-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 436px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}
.blog-shortfalls-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}
.blog-shortfalls-desc {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.4;
}
.blog-badges-cloud {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.blog-badge {
    position: absolute;
    height: 58px;
    padding: 15px 24px;
    border-radius: 29px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12), 0px 4px 12px rgba(0, 0, 0, 0.06);
    transform: rotate(var(--rotation));
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#why-now .blog-badge:hover {
    transform: rotate(var(--rotation)) scale(1.05) translateY(-5px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2), 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 20 !important;
}


.window.contact {
	padding: 20px 15px;
	min-width:600px;
}

.contact_container{
	display:flex;
	flex-direction: column;
	gap:15px;
}
.contact_container h2{
    color: var(--color-black);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-top: 10px;
    position: relative;
    z-index: 100;
	text-align:center;
}

.contact_container input,
.contact_container select{
	width:100%;
	height:38px;
	padding: 0 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	outline:none;
	color:#135879;
	font-size:14px;
}

.contact_container textarea{
	width:100%;
	height:80px;
	padding: 10px 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	outline:none;
	color:#000;
	font-size:14px;
	resize:none;
}

.contact_container input::placeholder{
	color:#135879;
}


.form-message {
    margin-top: 15px;
    font-size: 14px;
}

.form-message.success {
    color: green;
	text-align:center;
}

.form-message.error {
    color: red;
}

.contact-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
	.window.contact {
		min-width:100%;
	}
}