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

:root {
    --page-padding: 20px;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2E2A32;
    background: linear-gradient(180deg, #F6F7FB 0%, #FFFFFF 28%, #FFFFFF 100%);
}

h1,
h2,
h3,
.display,
.subhead {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    /* max-width: 1100px; */
    margin: 0 3%;
    padding: 40px var(--page-padding) 0;
}

.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 135, 92, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 200ms ease;
}

.header-inner {
    width: 80%;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

.nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
    font-weight: 800;
}

.nav a {
    font-size: 16px;
    color: #2E2433;
}

.nav a:hover {
    color: #4C875C;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #4C875C;
    background: #4C875C;
    color: #FFFFFF;
    transition: transform 180ms ease, box-shadow 200ms ease, filter 150ms ease;
}

.btn:hover {
    background: #79B48E;
    border-color: #79B48E;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(121, 180, 142, 0.32);
}

.btn-primary {
    background: linear-gradient(135deg, #4C875C, #6BA07A);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(76, 135, 92, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6BA07A, #89BE94);
    box-shadow: 0 6px 16px rgba(76, 135, 92, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(76, 135, 92, 0.26);
    color: #2E2433;
}

.btn-ghost:hover {
    border-color: #4C875C;
    background: rgba(76, 135, 92, 0.12);
    color: #1F1B24;
}

#start-monitoring-top {
    margin-left: 12px;
}

main.hero {
    position: relative;
    min-height: 100vh;
    overflow: visible;
    background: url('background2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
}

main.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.7) 20%,
            rgba(255, 255, 255, 0.4) 60%,
            rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

main.hero>* {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 760px;
    position: relative;
    z-index: 5;
}

.hero .background-cycle {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero .background-frame {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroBackgroundFade 21s infinite linear;
    animation-fill-mode: both;
}

.hero .background-frame.frame-one {
    background-image: url('background2.png');
    animation-delay: 0s;
}

.hero .background-frame.frame-two {
    background-image: url('background3.png');
    animation-delay: 7s;
}

.hero .background-frame.frame-three {
    background-image: url('background4.png');
    animation-delay: 14s;
}

@keyframes heroBackgroundFade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.display {
    font-size: clamp(80px, 14vw, 160px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
    color: #1F1B24;
    text-shadow:
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.subhead {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #1F1B24;
    margin-bottom: 28px;
    text-shadow:
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.content {
    max-width: 760px;
    margin-top: 12px;
}

.content h2 {
    font-size: 26px;
    margin-bottom: 22px;
    color: #191919;
    font-weight: 800;
}

p {
    font-size: 20px;
    margin-bottom: 22px;
    line-height: 1.7;
    color: #111111;
    font-weight: 600;
}

.highlight {
    margin-top: 30px;
}

.highlight strong {
    color: #4C875C;
}

.cta {
    margin-top: 24px;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(9, 15, 20, 0.64);
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.cookie-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-card {
    width: min(520px, 100%);
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 32px);
    box-shadow: 0 26px 60px -28px rgba(12, 20, 30, 0.45);
    display: grid;
    gap: clamp(18px, 3vw, 26px);
}

.cookie-content {
    display: grid;
    gap: 12px;
}

.cookie-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4C875C;
}

.cookie-content h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #151515;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #2A2A2A;
    margin: 0;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-actions .btn {
    min-width: 150px;
}

.impact-banner {
    background: linear-gradient(135deg, #7161B8, #4B3D91);
    color: #ffffff;
    padding: clamp(28px, 6vw, 44px) 0;
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px);
    pointer-events: none;
}

.impact-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.impact-inner {
    width: min(860px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: clamp(12px, 3.2vw, 18px);
    text-align: center;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.impact-inner h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.impact-inner h2 strong {
    color: #FCECCF;
}

.impact-inner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 460px;
    font-weight: 700;
}

.platform-intro {
    background: linear-gradient(180deg, #F4F2FA 0%, #FFFFFF 60%);
    padding: clamp(48px, 9vw, 96px) 0;
    position: relative;
    overflow: hidden;
}

.platform-intro::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -160px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at center, rgba(113, 97, 184, 0.16), rgba(113, 97, 184, 0));
    transform: rotate(30deg);
}

.platform-intro::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at center, rgba(76, 135, 92, 0.14), rgba(76, 135, 92, 0));
    transform: rotate(-18deg);
}

.platform-inner {
    width: min(900px, 90vw);
    margin: 0 auto;
    display: grid;
    gap: clamp(12px, 3vw, 22px);
    position: relative;
    z-index: 1;
    text-align: left;
}

.platform-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('platform-pattern.svg');
    background-size: 220px 220px;
    background-repeat: repeat;
    opacity: 0.12;
    pointer-events: none;
    border-radius: 24px;
    transform: translateY(6px);
}

.platform-copy {
    display: grid;
    gap: 12px;
}

.platform-copy p {
    font-size: 18px;
    line-height: 1.8;
    color: #3B3B3B;
    margin: 0;
    max-width: 640px;
}






























/* .platform-showcase {
    min-height: 400vh;
    background: #F8F9FA;
    position: relative;
}
.showcase-inner {
    width: min(1400px, 94vw);
    margin: 0 auto;
    position: sticky;
    top: 5vh;
    padding: clamp(40px, 6vw, 80px) 0;
}
.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.showcase-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4C875C;
    margin-bottom: 20px;
}
.showcase-header h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    color: #1F1B24;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.showcase-header p {
    font-size: 19px;
    line-height: 1.65;
    color: #3B3B3B;
    margin: 0 0 24px 0;
}
.showcase-header .platform-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.showcase-header .platform-cta .btn {
    padding: 10px 20px;
}
.showcase-main {
    display: grid;
    gap: 60px;
}
.showcase-stage {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
}

.platform-carousel {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.15);
    padding: clamp(20px, 3vw, 24px);
    overflow: hidden;
}

.platform-track {
    display: flex;
    width: 100%;
    transition: transform 420ms ease;
    will-change: transform;
}

.platform-slide {
    flex: 0 0 100%;
    display: grid;
    gap: 20px;
    opacity: 0.4;
    transition: opacity 260ms ease;
}

.platform-slide.is-active {
    opacity: 1;
}

.platform-slide img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: none;
}

.platform-caption {
    text-align: center;
    padding: 0 20px;
}

.platform-caption h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1F1B24;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.platform-caption p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

.platform-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.platform-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(17, 24, 32, 0.3);
    transition: transform 200ms ease, background 200ms ease;
}

.platform-dot.is-active {
    background: #4C875C;
    transform: scale(1.3);
}

.next-section {
    background: #1F1B24;
    padding: clamp(40px, 6vw, 60px) 0;
    position: relative;
    overflow: hidden;
}

.next-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.015) 35px,
            rgba(255, 255, 255, 0.015) 70px
        );
    pointer-events: none;
}

.next-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(76, 135, 92, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.next-inner {
    width: min(1100px, 85vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.next-inner h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.next-inner h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(76, 135, 92, 0.5), transparent);
}

.next-inner p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
} */

.platform-showcase {
    min-height: 400vh;
    background: #F8F9FA;
    position: relative;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) 0 50px 0;
    width: min(1400px, 94vw);
}

.showcase-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4C875C;
    margin-bottom: 20px;
}

.showcase-header h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    color: #1F1B24;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.showcase-header p {
    font-size: 19px;
    line-height: 1.65;
    color: #3B3B3B;
    margin: 0 0 24px 0;
}

.showcase-header .platform-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase-header .platform-cta .btn {
    padding: 10px 20px;
}

.showcase-main {
    position: sticky;
    top: 5vh;
    width: min(1400px, 94vw);
    margin: 0 auto;
    display: grid;
    gap: 60px;
}

.showcase-stage {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
}

.platform-carousel {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.15);
    padding: clamp(20px, 3vw, 24px);
    overflow: visible;
}

.platform-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    /* Set a fixed aspect ratio for consistency */
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.platform-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 420ms ease;
    will-change: transform;
}

.platform-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from 'cover' to 'contain' */
    object-position: center;
    border-radius: 12px;
    display: block;
    background: #f8f9fa;
}

.platform-indicators {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.platform-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    pointer-events: all;
}

.platform-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 200ms ease, background 200ms ease;
    cursor: pointer;
}

.platform-dot.is-active {
    background: #ffffff;
    transform: scale(1.3);
}

.platform-caption {
    text-align: center;
    padding: 20px 20px 0;
    min-height: 80px;
}

.platform-caption h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1F1B24;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.platform-caption p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

.next-section {
    background: #1F1B24;
    padding: clamp(40px, 6vw, 60px) 0;
    position: relative;
    overflow: hidden;
}

.next-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.015) 35px,
            rgba(255, 255, 255, 0.015) 70px);
    pointer-events: none;
}

.next-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(76, 135, 92, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.next-inner {
    width: min(1100px, 85vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.next-inner h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.next-inner h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(76, 135, 92, 0.5), transparent);
}

.next-inner p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}






















.service-section {
    background: #F8F9FA;
    padding: clamp(60px, 8vw, 80px) 0;
    position: relative;
}


.service-inner {
    width: min(1280px, 90vw);
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.service-intro {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}


.service-intro h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #2F5233;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

.service-intro h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4C875C, #6BA07A);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4C875C, #6BA07A);
    border-radius: 12px 12px 0 0;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

.service-number {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #4C875C;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8FBF9, #F0F6F2);
    border: 2px solid #4C875C20;
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1F1B24;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}


@media (max-width: 768px) {
    .service-grid {
        gap: 12px;
    }

    .service-card {
        padding: 20px;
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .service-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 13px;
    }
}

.blog-section {
    background: #ffffff;
    padding: clamp(80px, 12vw, 120px) 0;
    position: relative;
}

.blog-inner {
    width: min(1280px, 90vw);
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.blog-intro {
    text-align: center;
    margin-bottom: 60px;
}

.blog-intro h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    color: #1F1B24;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.blog-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 300ms ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #4C875C, #6BA07A);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1F1B24;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 16px 0;
}

.blog-date {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.blog-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-intro {
        margin-bottom: 40px;
    }

    .blog-content {
        padding: 20px;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2F5233 0%, #1F2F1F 100%);
    color: #ffffff;
    position: relative;
}

.footer-main {
    padding: clamp(60px, 8vw, 80px) 0 40px 0;
}

.footer-inner {
    width: min(1280px, 90vw);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-section h4 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 280px;
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-links a:hover {
    color: #6BA07A;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-legal-links a:hover {
    color: #6BA07A;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 200ms ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #6BA07A;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Vision Sections Styling */
.vision-sections {
    padding: 0;
    background: #ffffff;
}

.vision-block {
    padding: clamp(40px, 6vw, 60px) 0;
    position: relative;
    overflow: hidden;
}

.vision-block:nth-child(even) {
    background: #F8F9FA;
}

.vision-block:first-child {
    padding-top: clamp(30px, 4vw, 40px);
}

.vision-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.two-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse>* {
    direction: ltr;
}

.content-column h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #1F1B24;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.content-column p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 14px;
}

.content-column .lead {
    font-size: 20px;
    font-weight: 600;
    color: #2F5233;
}

.content-column .emphasis {
    font-weight: 600;
    color: #2F5233;
}

.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-column img {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.image-column img:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
}

.featured-quote {
    background: linear-gradient(135deg, #F8FBF9, #F0F6F2);
    border-left: 4px solid #4C875C;
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.featured-quote p {
    font-size: 20px;
    font-style: italic;
    color: #2F5233;
    margin: 0;
}

/* DMRV Section */
.dmrv-section .content-column h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #1F1B24;
    margin-bottom: 20px;
}

.dmrv-section .dmrv-intro {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.dmrv-section .dmrv-bridge {
    font-size: 20px;
    color: #2F5233;
    margin-bottom: 20px;
}

.dmrv-section .content-column p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.dmrv-section .dmrv-highlight {
    margin-top: 32px;
}

.dmrv-section .dmrv-highlight p {
    font-size: 22px;
    font-weight: 700;
    color: #2F5233;
    margin: 0;
    font-style: italic;
}

/* Vision Behind Section */
.vision-behind {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
}

.vision-behind-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.vision-image-container {
    position: relative;
}

.vision-image-container img {
    width: 100%;
    height: auto;
    border-radius: 200px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(47, 82, 51, 0.08);
}

.vision-content h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #1F1B24;
    margin-bottom: 24px;
}

.vision-intro {
    font-size: 20px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
}

.vision-answer {
    margin-top: 32px;
}

.vision-answer p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.vision-answer .highlight {
    color: #2F5233;
    font-weight: 600;
}

.vision-conclusion {
    margin-top: 24px !important;
    font-size: 20px !important;
    color: #1F1B24 !important;
}

.vision-conclusion strong {
    color: #2F5233;
}

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.centered-content h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    color: #1F1B24;
    margin-bottom: 24px;
}

.large-text {
    font-size: 24px;
    color: #333;
    margin-bottom: 24px;
}

.featured-question {
    font-size: 28px;
    color: #2F5233;
    font-weight: 700;
    margin: 32px 0;
    line-height: 1.4;
    font-style: italic;
    border-left: 4px solid #2F5233;
    padding-left: 28px;
    display: block;
}

.centered-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.centered-content .emphasis {
    font-weight: 600;
    color: #2F5233;
    font-size: 20px;
}

/* Human Layer Section */
.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #4C875C;
    margin-top: 24px;
}

/* Transparent Future Section */
.transparent-future {
    background: linear-gradient(135deg, #2F5233 0%, #4C875C 100%) !important;
    color: #ffffff;
}

.transparent-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.transparent-content h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
}

.future-message {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 600;
}

.infrastructure-text,
.measuring-text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.transparent-content .highlight {
    color: #ffffff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.transparent-content .emphasis {
    color: #A3E4DB;
    font-weight: 600;
}

.conclusion {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.next-gen {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.final-emphasis {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.transparent-image {
    position: relative;
}

.transparent-image img {
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 200px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-column.reverse {
        direction: ltr;
    }

    .transparent-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .transparent-image {
        order: -1;
    }

    .transparent-image img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }

    .transparent-content h2 {
        font-size: 32px;
    }

    .final-emphasis {
        font-size: 22px;
    }

    .image-column img {
        width: 100%;
        max-width: 400px;
    }

    .dmrv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vision-behind-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-image-container img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }

    .featured-question {
        font-size: 22px;
        padding-left: 20px;
    }

    .large-text {
        font-size: 20px;
    }

    .final-emphasis {
        font-size: 22px;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }
}

/* Blog Page Styles */
.blog-page {
    padding-top: 0;
}

.blog-hero {
    background: linear-gradient(135deg, #2F5233 0%, #4C875C 100%);
    color: #ffffff;
    padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 8vw, 80px) 0;
    text-align: center;
}

.blog-hero-inner {
    width: min(800px, 90vw);
    margin: 0 auto;
}

.blog-hero h1 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.blog-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.blog-main {
    padding: clamp(80px, 12vw, 120px) 0;
    background: #ffffff;
}

.blog-card.featured {
    grid-column: 1 / -1;
}

.blog-card.featured .blog-content {
    padding: 32px;
}

.blog-card.featured h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.blog-card.featured p {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.blog-read-time {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pagination-info {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-card.featured {
        grid-column: auto;
    }

    .blog-card.featured .blog-content {
        padding: 24px;
    }

    .blog-card.featured h3 {
        font-size: 20px;
    }

    .blog-pagination {
        flex-direction: column;
        gap: 16px;
    }
}

/* Blog Post Styles */
.blog-post {
    padding-top: 0;
    background: #ffffff;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 80px) 20px;
}

.post-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.post-breadcrumb a {
    color: #4C875C;
    text-decoration: none;
}

.post-breadcrumb a:hover {
    text-decoration: underline;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.post-category {
    display: inline-block;
    background: linear-gradient(135deg, #4C875C, #6BA07A);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date,
.post-read-time {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.post-content h1 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #1F1B24;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.post-excerpt {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.post-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.post-body h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1F1B24;
    margin: 40px 0 20px 0;
    letter-spacing: -0.01em;
}

.post-body h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2F5233;
    margin: 32px 0 16px 0;
    letter-spacing: -0.01em;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 8px;
}

.post-body blockquote {
    background: #F8F9FA;
    border-left: 4px solid #4C875C;
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.post-body blockquote p {
    margin-bottom: 16px;
    font-size: 20px;
    color: #2F5233;
}

.post-body cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.post-cta {
    background: linear-gradient(135deg, #F8FBF9, #F0F6F2);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin: 48px 0;
    border: 1px solid #4C875C20;
}

.post-cta h3 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2F5233;
    margin-bottom: 12px;
}

.post-cta p {
    color: #666;
    margin-bottom: 24px;
}

.post-navigation {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 32px;
}

.nav-back,
.nav-next {
    color: #4C875C;
    text-decoration: none;
    font-weight: 600;
    transition: color 200ms ease;
}

.nav-back:hover,
.nav-next:hover {
    color: #2F5233;
}

@media (max-width: 768px) {
    .post-content {
        padding: 40px 16px;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body h3 {
        font-size: 20px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .post-cta {
        padding: 24px;
    }
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.newsletter-form input[type="email"] {
    flex: 1 1 240px;
    min-width: 220px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(113, 97, 184, 0.24);
    background: rgba(255, 255, 255, 0.82);
    color: #1F1B24;
    font-size: 16px;
}

.newsletter-form input[type="email"]:focus {
    outline: 2px solid rgba(113, 97, 184, 0.4);
    outline-offset: 2px;
}

.newsletter-form .btn-primary {
    flex: 0 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.platform-inner h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #1F1B24;
    letter-spacing: -0.015em;
}

.platform-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.platform-cta .btn {
    padding: 10px 20px;
}

.platform-cta .btn-primary {
    background: linear-gradient(135deg, #4C875C, #6BA07A);
    border: none;
}

.platform-cta .btn-primary:hover {
    background: linear-gradient(135deg, #6BA07A, #89BE94);
}

.query-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.query-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.query-card {
    width: min(520px, 100%);
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(24px, 6vw, 32px);
    box-shadow: 0 28px 50px -24px rgba(15, 23, 42, 0.4);
    display: grid;
    gap: 16px;
    position: relative;
}

.newsletter-modal .query-card {
    max-width: 460px;
}

.query-card h2 {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1F1B24;
    margin: 0;
}

.query-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #3B3B3B;
    margin: 0;
}

.query-form {
    display: grid;
    gap: 14px;
}

.query-form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1F1B24;
}

.query-form input,
.query-form textarea {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(113, 97, 184, 0.24);
    background: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    color: #1F1B24;
}

.query-form input:focus,
.query-form textarea:focus {
    outline: 2px solid rgba(113, 97, 184, 0.36);
    outline-offset: 2px;
}

.query-form textarea {
    resize: vertical;
    min-height: 120px;
}

.query-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: rgba(30, 41, 59, 0.6);
    cursor: pointer;
    transition: color 160ms ease;
}

.query-close:hover {
    color: rgba(30, 41, 59, 0.9);
}

@media (max-width: 700px) {
    .platform-inner {
        gap: clamp(16px, 6vw, 22px);
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .platform-cta {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .platform-cta .btn {
        width: 100%;
        text-align: center;
    }

    .query-card {
        padding: clamp(20px, 8vw, 28px);
    }

    .platform-carousel {
        padding: clamp(16px, 4vw, 20px);
    }

    .platform-caption {
        padding: 0 10px;
    }

    .platform-caption h3 {
        font-size: 18px;
    }

    .platform-caption p {
        font-size: 15px;
    }

    .showcase-header h2 {
        font-size: clamp(28px, 6vw, 40px);
    }
}


.field-carousel {
    background: #ffffff;
    padding: clamp(44px, 7vw, 80px) 0;
}

.field-inner {
    width: min(1100px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4.4vw, 40px);
    align-items: center;
}

.field-story {
    display: grid;
    gap: 14px;
    max-width: 520px;
}

.field-story .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4C875C;
}

.field-story h2 {
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 800;
    color: #151515;
}

.field-story p {
    font-size: 17px;
    color: #3b3b3b;
    line-height: 1.7;
}

.field-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #272727;
}

.field-points li {
    display: flex;
    gap: 10px;
    line-height: 1.6;
}

.field-points li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #4C875C;
    margin-top: 9px;
    flex-shrink: 0;
}

.field-points strong {
    color: #111111;
    font-weight: 700;
}

.field-slider {
    display: grid;
    gap: 18px;
}

.field-track-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.field-track {
    display: flex;
    width: 100%;
    transition: transform 420ms ease;
    will-change: transform;
}

.field-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(18px, 3.5vw, 28px);
    padding: clamp(20px, 3.6vw, 30px);
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f7f8fb);
    box-shadow: 0 18px 36px -24px rgba(17, 24, 39, 0.28);
    opacity: 0.4;
    transform: scale(0.96);
    transition: opacity 260ms ease, transform 260ms ease;
}

.field-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.field-slide figure {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    min-height: clamp(220px, 28vw, 320px);
    background: #eceff3;
    display: flex;
}

.field-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.field-copy h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.field-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.field-copy p {
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
    margin-bottom: 0;
    max-width: 320px;
}

.field-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}

.field-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #0f172a;
    font-size: 26px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.field-nav:hover {
    background: #f3f4f6;
    border-color: rgba(15, 23, 42, 0.2);
    transform: translateY(-1px);
}

.field-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.field-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(17, 24, 32, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.field-dot.is-active {
    background: #4C875C;
    transform: scale(1.2);
}

.field-dot:focus-visible {
    outline: 2px solid #4C875C;
    outline-offset: 3px;
}

@media (max-width: 800px) {
    .field-inner {
        grid-template-columns: 1fr;
        gap: clamp(26px, 8vw, 32px);
    }

    .field-story {
        max-width: none;
    }

    .field-slide {
        grid-template-columns: 1fr;
        padding: clamp(18px, 6vw, 24px);
    }

    .field-slide figure {
        min-height: clamp(240px, 64vw, 360px);
    }

    .field-copy h3 {
        font-size: 22px;
    }

    .field-copy p {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .header-inner {
        width: 92%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 12px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    #start-monitoring-top {
        margin-left: 0;
    }
}

.platform-cta .btn-ghost {
    border: 1px solid rgba(113, 97, 184, 0.22);
    background: rgba(255, 255, 255, 0.36);
    color: #2E2433;
}

.platform-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.48);
    border-color: rgba(113, 97, 184, 0.36);
}

.showcase-inner {
    .callout-bottom-right::after {
        right: 100%;
        top: 30%;
    }

    @media (max-width: 1100px) {
        .showcase-inner {
            grid-template-columns: 1fr;
        }

        .showcase-copy {
            max-width: 620px;
            margin: 0 auto;
            text-align: center;
        }

        .showcase-stage {
            margin: 0 auto;
        }

        .showcase-callout {
            font-size: 13px;
            max-width: 160px;
        }

        .callout-top-left {
            top: 6%;
            left: -4%;
        }

        .callout-bottom-left {
            bottom: 10%;
            left: -3%;
        }

        .callout-top-right {
            top: 4%;
            right: -6%;
        }

        .callout-bottom-right {
            bottom: 8%;
            right: -4%;
        }
    }

    /* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ===================================================== */

    /* Mobile Header Improvements */
    @media (max-width: 768px) {
        .header-inner {
            width: 95%;
            padding: 12px 15px;
            flex-wrap: wrap;
        }

        .nav {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: 10px;
            gap: 15px;
        }

        .nav a {
            font-size: 14px;
        }

        .header-actions {
            gap: 8px;
        }

        .btn {
            padding: 8px 12px;
            font-size: 12px;
        }
    }

    /* Mobile Hero Section */
    @media (max-width: 768px) {
        main.hero {
            min-height: 80vh;
            padding: 40px 0;
        }

        .container {
            padding: 20px 15px;
        }

        .hero-text {
            max-width: 100%;
            text-align: center;
        }

        .display {
            font-size: clamp(40px, 12vw, 80px);
            margin-bottom: 12px;
        }

        .subhead {
            font-size: clamp(20px, 6vw, 32px);
            margin-bottom: 20px;
        }

        .content h2 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .content p {
            font-size: 16px;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .cta {
            text-align: center;
            margin-top: 20px;
        }
    }

    /* Mobile Vision Sections */
    @media (max-width: 768px) {
        .vision-sections {
            padding: 40px 0;
        }

        .vision-container {
            width: 95%;
            padding: 0 15px;
        }

        .two-column {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .two-column.reverse {
            grid-template-columns: 1fr;
        }

        .two-column.reverse .image-column {
            order: 1;
        }

        .two-column.reverse .content-column {
            order: 2;
        }

        .vision-block {
            padding: 40px 0;
        }

        .vision-block h2 {
            font-size: clamp(24px, 5vw, 32px);
            margin-bottom: 16px;
        }

        .vision-block p {
            font-size: 16px;
            margin-bottom: 16px;
        }

        .featured-quote {
            margin: 20px 0;
            padding: 15px;
            font-size: 16px;
        }

        .vision-behind-layout {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .transparent-layout {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    /* Mobile Platform Showcase */
    @media (max-width: 768px) {
        .platform-showcase {
            padding: 60px 0;
        }

        .showcase-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .showcase-header {
            text-align: center;
            padding: 0 15px;
        }

        .showcase-header h2 {
            font-size: clamp(24px, 5vw, 32px);
        }

        .platform-cta {
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .showcase-stage {
            margin: 0 15px;
        }

        .platform-carousel {
            border-radius: 12px;
        }

        .platform-slide img {
            border-radius: 8px;
        }

        .platform-caption {
            padding: 15px;
        }

        .platform-caption h3 {
            font-size: 18px;
        }

        .platform-caption p {
            font-size: 14px;
        }
    }

    /* Mobile Blog Section */
    @media (max-width: 768px) {
        .blog-section {
            padding: 60px 0;
        }

        .blog-inner {
            width: 95%;
            padding: 0 15px;
        }

        .blog-intro {
            margin-bottom: 40px;
        }

        .blog-intro h2 {
            font-size: clamp(24px, 5vw, 32px);
        }

        .blog-intro p {
            font-size: 16px;
        }

        .blog-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .blog-card {
            padding: 15px;
            border-radius: 12px;
        }

        .blog-image {
            margin-bottom: 15px;
        }

        .blog-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .blog-content p {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .blog-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }

        .blog-author,
        .blog-date,
        .blog-read-time {
            font-size: 12px;
        }
    }

    /* Mobile Service Section */
    @media (max-width: 768px) {
        .service-section {
            padding: 60px 0;
        }

        .service-inner {
            width: 95%;
            padding: 0 15px;
        }

        .service-intro h2 {
            font-size: clamp(24px, 5vw, 32px);
        }

        .service-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    }

    /* Mobile Impact Banner */
    @media (max-width: 768px) {
        .impact-banner {
            padding: 40px 0;
            margin: 40px 0;
        }

        .impact-inner {
            width: 95%;
            padding: 30px 20px;
            text-align: center;
        }

        .impact-inner h2 {
            font-size: clamp(20px, 5vw, 28px);
            margin-bottom: 12px;
        }

        .impact-inner p {
            font-size: 14px;
        }
    }

    /* Mobile Footer */
    @media (max-width: 768px) {
        .site-footer {
            padding: 40px 0 20px;
        }

        .footer-inner {
            width: 95%;
            padding: 0 15px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-brand h3 {
            font-size: 24px;
        }

        .footer-newsletter {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .newsletter-form {
            flex-direction: column;
            width: 100%;
            gap: 10px;
        }

        .newsletter-form input {
            width: 100%;
        }

        .footer-bottom-content {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .footer-legal-links {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }
    }

    /* Mobile Blog Post Pages */
    @media (max-width: 768px) {
        .blog-post {
            padding: 20px 0;
        }

        .post-content {
            width: 95%;
            margin: 0 auto;
            padding: 0 15px;
        }

        .post-header {
            margin-bottom: 20px;
        }

        .post-breadcrumb {
            font-size: 12px;
            margin-bottom: 10px;
        }

        .post-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
            margin-bottom: 15px;
        }

        .post-meta span {
            font-size: 12px;
        }

        .post-content h1 {
            font-size: clamp(24px, 6vw, 32px);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .post-excerpt {
            font-size: 16px;
            line-height: 1.5;
        }

        .post-image {
            margin: 20px 0;
            border-radius: 12px;
            overflow: hidden;
        }

        .post-body h2 {
            font-size: 20px;
            margin: 25px 0 15px;
        }

        .post-body h3 {
            font-size: 18px;
            margin: 20px 0 10px;
        }

        .post-body p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .post-body ul,
        .post-body ol {
            margin: 16px 0;
            padding-left: 20px;
        }

        .post-body li {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .post-highlight {
            margin: 20px 0;
            padding: 15px;
            border-radius: 8px;
        }

        .post-cta {
            margin: 30px 0;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
        }

        .post-cta h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .post-cta p {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .post-navigation {
            margin: 30px 0;
            padding: 20px 0;
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        blockquote {
            margin: 20px 0;
            padding: 15px;
            border-left: 3px solid #4C875C;
            background: #f8f9fa;
            border-radius: 0 8px 8px 0;
        }

        blockquote p {
            font-size: 16px;
            font-style: italic;
            margin: 0;
        }
    }

    /* Mobile Modal Improvements */
    @media (max-width: 768px) {
        .query-modal .query-card {
            width: 95%;
            max-width: none;
            margin: 20px;
            padding: 20px;
            border-radius: 16px;
        }

        .query-form label {
            font-size: 14px;
        }

        .query-form input,
        .query-form textarea {
            font-size: 16px;
            /* Prevents zoom on iOS */
            padding: 12px;
        }

        .cookie-modal .cookie-card {
            width: 95%;
            margin: 20px;
            padding: 20px;
            border-radius: 16px;
        }

        .cookie-actions {
            flex-direction: column;
            gap: 10px;
        }

        .cookie-actions .btn {
            width: 100%;
            text-align: center;
        }
    }

    /* Extra Small Devices */
    @media (max-width: 480px) {
        :root {
            --page-padding: 15px;
        }

        .display {
            font-size: clamp(32px, 10vw, 60px);
        }

        .subhead {
            font-size: clamp(18px, 5vw, 24px);
        }

        .btn {
            padding: 10px 16px;
            font-size: 14px;
            width: 100%;
            text-align: center;
        }

        .header-actions {
            flex-direction: column;
            width: 100%;
            gap: 8px;
        }

        .header-actions .btn {
            width: 100%;
        }
    }

    /* Landscape Mobile Orientation */
    @media (max-width: 768px) and (orientation: landscape) {
        main.hero {
            min-height: 100vh;
            padding: 20px 0;
        }

        .hero-text {
            margin-top: 20px;
        }

        .display {
            font-size: clamp(36px, 8vw, 60px);
        }

        .subhead {
            font-size: clamp(18px, 4vw, 28px);
        }
    }

    /* =====================================================
   MAP SEARCH DEMO FEATURE
   ===================================================== */

    .map-search-demo {
        margin-top: 50px;
        padding: 24px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        border-radius: 20px;
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(76, 135, 92, 0.1);
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 10;
    }

    .demo-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .demo-badge {
        display: inline-block;
        padding: 6px 12px;
        background: linear-gradient(135deg, #4C875C, #6BA07A);
        color: white;
        font-size: 12px;
        font-weight: 600;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .demo-header h3 {
        font-size: 20px;
        font-weight: 800;
        color: #1F1B24;
        margin-bottom: 6px;
    }

    .demo-header p {
        font-size: 13px;
        color: #666;
        margin: 0;
    }

    .search-method-tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
        background: #f5f5f5;
        padding: 4px;
        border-radius: 12px;
    }

    .method-tab {
        flex: 1;
        padding: 10px 16px;
        background: transparent;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .method-tab.active {
        background: white;
        color: #4C875C;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .search-panel {
        display: none;
    }

    .search-panel.active {
        display: block;
    }

    .mini-map {
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background: #f0f0f0;
        border: 2px solid #e0e0e0;
    }

    /* Ensure Leaflet map fills container */
    .mini-map .leaflet-container {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        cursor: pointer !important;
    }

    .selected-coords {
        margin-top: 10px;
        padding: 8px;
        background: #f0f8f4;
        border-radius: 8px;
        text-align: center;
        font-size: 13px;
        color: #4C875C;
    }

    .selected-coords small {
        font-weight: 600;
    }

    /* Leaflet map adjustments */
    #interactive-map .leaflet-control-attribution {
        font-size: 9px;
        opacity: 0.7;
    }

    .coords-input-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .coord-field {
        display: flex;
        flex-direction: column;
    }

    .coord-field label {
        font-size: 12px;
        color: #666;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .coord-field input {
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.2s ease;
    }

    .coord-field input:focus {
        outline: none;
        border-color: #4C875C;
    }

    .analyze-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    /* Analysis Modal */
    .analysis-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .analysis-modal.is-visible {
        opacity: 1;
    }

    .analysis-card {
        background: white;
        border-radius: 24px;
        width: 90%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: modalSlideIn 0.3s ease;
    }

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

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

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        z-index: 1;
        transition: background 0.2s ease;
    }

    .modal-close:hover {
        background: #e0e0e0;
    }

    /* Progress State */
    .analysis-progress {
        padding: 40px;
        text-align: center;
    }

    .progress-icon {
        font-size: 64px;
        margin-bottom: 20px;
        animation: pulse 2s ease infinite;
    }

    @keyframes pulse {

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

        50% {
            transform: scale(1.1);
        }
    }

    .analysis-progress h3 {
        font-size: 28px;
        font-weight: 800;
        color: #1F1B24;
        margin-bottom: 8px;
    }

    .coords-display {
        font-size: 14px;
        color: #666;
        margin-bottom: 30px;
    }

    .progress-stages {
        margin: 30px 0;
    }

    .stage {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px;
        margin-bottom: 8px;
        border-radius: 8px;
        opacity: 0.3;
        transition: all 0.3s ease;
    }

    .stage.active {
        opacity: 1;
        background: #f0f8f4;
    }

    .stage.complete {
        opacity: 0.6;
    }

    .stage-icon {
        font-size: 24px;
    }

    .stage-text {
        font-size: 14px;
        color: #333;
    }

    .progress-bar {
        height: 8px;
        background: #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
        margin-top: 30px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #4C875C, #6BA07A);
        border-radius: 4px;
        width: 0%;
        transition: width 0.5s ease;
    }

    /* Results State */
    .analysis-results {
        padding: 40px;
    }

    .results-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .results-header h3 {
        font-size: 24px;
        font-weight: 800;
        color: #1F1B24;
        margin-bottom: 8px;
    }

    .results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
        margin-bottom: 30px;
    }

    .result-card {
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.2s ease;
    }

    .result-card:hover {
        transform: translateY(-2px);
    }

    .result-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .result-content h4 {
        font-size: 12px;
        color: #666;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .result-value {
        font-size: 20px;
        font-weight: 800;
        color: #1F1B24;
        margin: 8px 0;
    }

    .result-trend {
        font-size: 12px;
        color: #666;
    }

    .result-trend.positive {
        color: #4C875C;
    }

    .result-trend.negative {
        color: #d32f2f;
    }

    .result-detail {
        font-size: 11px;
        color: #999;
        margin: 4px 0;
    }

    .results-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

    /* Mobile Responsive for Map Search */
    @media (max-width: 768px) {
        .map-search-demo {
            margin-top: 40px;
            padding: 24px;
            border-radius: 16px;
        }

        .demo-header h3 {
            font-size: 20px;
        }

        .mini-map {
            height: 200px;
        }

        .coords-input-group {
            grid-template-columns: 1fr;
        }

        .analysis-card {
            width: 95%;
            border-radius: 16px;
        }

        .analysis-progress,
        .analysis-results {
            padding: 24px;
        }

        .results-grid {
            grid-template-columns: 1fr 1fr;
        }

        .results-actions {
            flex-direction: column;
        }

        .results-actions button {
            width: 100%;
        }
    }

    /* ====== LOCATION SEARCH SECTION ====== */
    .location-search-section {
        padding: 80px var(--page-padding);
        background: linear-gradient(135deg, rgba(76, 135, 92, 0.03) 0%, rgba(255, 255, 255, 0.8) 100%);
        border-top: 1px solid rgba(76, 135, 92, 0.1);
    }

    .location-search-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .search-intro {
        text-align: center;
        margin-bottom: 60px;
    }

    .search-intro h2 {
        font-size: 48px;
        font-weight: 800;
        color: #2E2A32;
        margin: 0 0 16px 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .search-intro p {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .search-interface {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(76, 135, 92, 0.15);
        border-radius: 24px;
        padding: 40px;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.08),
            0 8px 32px rgba(0, 0, 0, 0.04);
    }

    .coordinate-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 24px;
        align-items: end;
        margin-bottom: 40px;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper label {
        display: block;
        font-weight: 600;
        color: #2E2A32;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .input-wrapper input {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid rgba(76, 135, 92, 0.2);
        border-radius: 16px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9);
        transition: all 300ms ease;
        font-family: 'Monaco', 'Menlo', monospace;
    }

    .input-wrapper input:focus {
        outline: none;
        border-color: #4C875C;
        background: white;
        box-shadow: 0 0 0 4px rgba(76, 135, 92, 0.1);
        transform: translateY(-2px);
    }

    .input-hint {
        position: absolute;
        top: -8px;
        right: 12px;
        background: rgba(76, 135, 92, 0.1);
        color: #4C875C;
        padding: 4px 8px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 500;
    }

    .search-btn {
        background: linear-gradient(135deg, #4C875C 0%, #5A9B6A 100%);
        color: white;
        border: none;
        border-radius: 16px;
        padding: 16px 32px;
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        transition: all 300ms ease;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        height: fit-content;
    }

    .search-btn:hover {
        background: linear-gradient(135deg, #3D6B4A 0%, #4A7F57 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(76, 135, 92, 0.3);
    }

    .search-btn:active {
        transform: translateY(0);
    }

    .btn-icon {
        font-size: 18px;
    }

    /* Loading Animation */
    .search-loading {
        text-align: center;
        padding: 60px 20px;
    }

    .loading-animation p {
        color: #666;
        margin-top: 20px;
        font-size: 16px;
    }

    .loading-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 16px;
    }

    .loading-dots span {
        width: 12px;
        height: 12px;
        background: #4C875C;
        border-radius: 50%;
        animation: bounce 1.4s ease-in-out infinite both;
    }

    .loading-dots span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .loading-dots span:nth-child(2) {
        animation-delay: -0.16s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: scale(0);
        }

        40% {
            transform: scale(1);
        }
    }

    /* Results Section */
    .search-results {
        animation: fadeInUp 600ms ease;
    }

    .results-header {
        text-align: center;
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(76, 135, 92, 0.1);
    }

    .results-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #2E2A32;
        margin: 0 0 8px 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .location-coords {
        font-family: 'Monaco', 'Menlo', monospace;
        background: rgba(76, 135, 92, 0.1);
        color: #4C875C;
        padding: 8px 16px;
        border-radius: 12px;
        display: inline-block;
        font-weight: 600;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .metric-card {
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(76, 135, 92, 0.15);
        border-radius: 16px;
        padding: 24px;
        transition: all 300ms ease;
        position: relative;
        overflow: hidden;
    }

    .metric-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(76, 135, 92, 0.15);
        border-color: rgba(76, 135, 92, 0.3);
    }

    .metric-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4C875C, #5A9B6A, #68C77B);
        transform: scaleX(0);
        transition: transform 300ms ease;
    }

    .metric-card:hover::before {
        transform: scaleX(1);
    }

    .metric-icon {
        font-size: 32px;
        margin-bottom: 16px;
        display: block;
    }

    .metric-label {
        font-size: 14px;
        font-weight: 600;
        color: #666;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .metric-value {
        font-size: 18px;
        font-weight: 800;
        color: #2E2A32;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .location-search-section {
            padding: 60px var(--page-padding);
        }

        .search-intro h2 {
            font-size: 36px;
        }

        .search-interface {
            padding: 24px;
        }

        .coordinate-inputs {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .search-btn {
            justify-self: stretch;
            justify-content: center;
        }

        .metrics-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .metric-card {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .search-intro h2 {
            font-size: 28px;
        }

        .search-intro p {
            font-size: 16px;
        }

        .coordinate-inputs {
            gap: 16px;
        }

        .input-wrapper input {
            padding: 14px 16px;
            font-size: 14px;
        }

        .search-btn {
            padding: 14px 24px;
            font-size: 14px;
        }
    }
}


.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    margin-right: 48px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #10b981;
}

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

.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-ghost {
    color: #374151;
    background: transparent;
    border: 1px solid #d1d5db;
}

.btn-ghost:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}




.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .nav {
        display: none;
    }

    .logo {
        margin-right: auto;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.site-header a {
    text-decoration: none;
}



/* modal  */


/* .container {
            max-width: 1200px;
            margin: 0 auto;
        } */

/* .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 42px;
            color: #1f2937;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .header p {
            font-size: 18px;
            color: #6b7280;
        } */

.search-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
}

.search-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 33px;
    background: linear-gradient(90deg,
            transparent 25%,
            #ff006e 35%,
            #8338ec 45%,
            #06ffa5 55%,
            #ffbe0b 65%,
            transparent 75%);
    background-size: 200% 100%;
    animation: lineRun 2s linear infinite;
    opacity: 0.8;
    filter: blur(4px);
    z-index: 1;
}

@keyframes lineRun {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.search-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
}

.search-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    flex: 1;
}

.search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.coordinate-input {
    border: none;
    outline: none;
    background: transparent;
    color: #374151;
    font-size: 14px;
    width: 110px;
    text-align: center;
    font-weight: 400;
}

.coordinate-label {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.divider {
    width: 1px;
    height: 16px;
    background: rgba(156, 163, 175, 0.2);
}

.analyze-btn {
    background: linear-gradient(135deg, #059669, #10b981);
    border: none;
    border-radius: 24px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 200ms ease;
    white-space: nowrap;
    letter-spacing: 0.025em;
    box-shadow: 0 3px 12px rgba(5, 150, 105, 0.2);
}

.analyze-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(5, 150, 105, 0.3);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.modal-info {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}


.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.close-btn:hover {
    opacity: 0.7;
}

.close-btn svg {
    display: block;
}

.close-btn svg path {
    stroke: currentColor;
    /* This will inherit the text color */
}

.modal-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #e5e7eb;
    border-top-color: #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.error-icon {
    color: #dc2626;
    flex-shrink: 0;
}

.section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.card-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.info-item label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.info-item value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-blue {
    background: #dbeafe;
    color: #1e40af;
}

.badge-green {
    background: #d1fae5;
    color: #065f46;
}

.badge-yellow {
    background: #fef3c7;
    color: #92400e;
}

.methodology-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.methodology-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.methodology-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 8px;
}

.risk-list {
    list-style: none;
    padding: 0;
}

.risk-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.risk-bullet {
    color: #f59e0b;
    font-weight: bold;
    flex-shrink: 0;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    counter-reset: rec-counter;
}

.recommendation-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
    counter-increment: rec-counter;
}

.recommendation-list li::before {
    content: counter(rec-counter) ".";
    font-weight: 700;
    color: #6366f1;
    flex-shrink: 0;
}

.bg-blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.bg-green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.bg-purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.bg-amber {
    background: #fffbeb;
    border-color: #fde68a;
}

.bg-indigo {
    background: #eef2ff;
    border-color: #c7d2fe;
}

.bg-pink {
    background: #fdf2f8;
    border-color: #fbcfe8;
}

.bg-gray {
    background: #f9fafb;
    border-color: #e5e7eb;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 28px;
    }

    .search-inputs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .analyze-btn {
        width: 100%;
        margin-top: 8px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}





































.test-badge {
    display: inline-block;
    background: #fbbf24;
    color: #78350f;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
}

.input-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.input-group input {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}




/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal {
    background: white;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

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

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

.modal-header {
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.meta-value {
    font-weight: 600;
    font-size: 1rem;
}



.impact-item p {
    font-size: 1rem;
}


.modal-content {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 180px);
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 80px 20px;
}

.spinner {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

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

/* Section Styles */
.section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
}

.section-icon {
    font-size: 1.8rem;
}

/* Location Info */
.location-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.location-item {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 6px;
    font-weight: 600;
}

.location-value {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 700;
}

/* Data Sources */
.data-sources {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
}

.sources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.source-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-size: 0.9rem;
    color: #1f2937;
    font-weight: 700;
}

.analysis-card p {
    font-size: 1rem;
}

.rating-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
}

/* Methodologies */
.methodologies-list {
    display: grid;
    gap: 20px;
}

.methodology-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.methodology-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.methodology-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.methodology-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
    flex: 1;
}

.methodology-standard {
    background: #667eea;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.methodology-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.suitability-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.suitability-high {
    background: #d1fae5;
    color: #065f46;
}

.suitability-moderate {
    background: #fef3c7;
    color: #92400e;
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.analysis-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.analysis-card h4 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.analysis-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Lists */
.risk-list,
.recommendation-list,
.steps-list {
    list-style: none;
    padding: 0;
}

.risk-list li,
.recommendation-list li,
.steps-list li {
    background: #fef2f2;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    color: #7f1d1d;
    line-height: 1.6;
}

.recommendation-list li {
    background: #f0fdf4;
    border-left-color: #10b981;
    color: #064e3b;
}

.steps-list li {
    background: #eff6ff;
    border-left-color: #3b82f6;
    color: #1e3a8a;
}

/* Economic Grid */
.economic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.economic-item {
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.economic-label {
    font-weight: 600;
    color: #78350f;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.economic-value {
    color: #451a03;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Impact */
.impact-grid {
    display: grid;
    gap: 20px;
}

.impact-item {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.impact-item h4 {
    color: #064e3b;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.impact-item p {
    color: #065f46;
    line-height: 1.7;
}

.sdg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.sdg-tag {
    background: #10b981;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Executive Summary */
.executive-summary {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    color: #78350f;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .input-grid,
    .button-group {
        grid-template-columns: 1fr;
    }

    .modal-meta {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.3rem;
    }
}




.logo-image {
    height: 40px;
    /* Adjust as needed */
    width: auto;
    vertical-align: middle;
}

.logo-image-footer {
    height: 40px;
    /* Adjust as needed */
    width: auto;
    vertical-align: middle;
    margin-bottom: 20px;
}