/* Green Reconstructors — Brand Styles */

:root {
    --green-dark: #4B8B3B;
    --green-light: #9ACD32;
    --blue-bright: #00AEEF;
    --blue-deep: #0054A6;
    --white: #ffffff;
    --gray-50: #f8faf9;
    --gray-100: #f0f4f2;
    --gray-200: #e2e8e4;
    --gray-400: #94a89c;
    --gray-600: #5a6b60;
    --gray-800: #2d3b32;
    --gray-900: #1a241f;
    --shadow-sm: 0 2px 8px rgba(26, 36, 31, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 36, 31, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 36, 31, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --top-bar-height: 40px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-bright); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header p {
    margin-top: 16px;
    color: var(--gray-600);
    font-size: 1.0625rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(75, 139, 59, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(75, 139, 59, 0.45);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    border-color: var(--green-dark);
    color: var(--green-dark);
}

.btn--outline:hover {
    background: var(--green-dark);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--green-dark);
}

.btn--white:hover {
    background: var(--gray-100);
    color: var(--green-dark);
}

.btn--nav { padding: 10px 22px; font-size: 0.875rem; }

/* Top Bar */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-400);
    font-size: 0.8125rem;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__contact {
    display: flex;
    gap: 24px;
}

.top-bar__contact a,
.top-bar__social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-400);
}

.top-bar__contact a:hover,
.top-bar__social a:hover { color: var(--green-light); }

.top-bar__social { display: flex; gap: 16px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

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

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

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-dark);
    background: rgba(75, 139, 59, 0.08);
}

.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
}

.dropdown a:hover {
    background: var(--gray-50);
    color: var(--green-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all var(--transition);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 36, 31, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-overlay.visible {
    display: block;
    opacity: 1;
}

body.nav-open {
    overflow: hidden;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--top-bar-height));
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}

.hero__content {
    padding: 80px 0;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease forwards;
    opacity: 0;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--green-dark), var(--blue-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    max-width: 520px;
    animation: fadeInUp 0.6s 0.2s ease forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeInUp 0.6s 0.3s ease forwards;
    opacity: 0;
}

.hero__visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.hero__video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75, 139, 59, 0.15), rgba(0, 174, 239, 0.1));
}

.hero__video-wrap iframe,
.hero__video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.hero__stats {
    position: absolute;
    bottom: 40px;
    left: -40px;
    display: flex;
    gap: 16px;
    z-index: 3;
}

.stat-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 500;
}

/* Trusted Section */
.trusted {
    padding: 80px 0;
    background: var(--gray-50);
    text-align: center;
}

.trusted h2 { margin-bottom: 12px; }

.trusted > .container > p {
    color: var(--gray-600);
    margin-bottom: 48px;
    font-size: 1.0625rem;
}

.logo-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

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

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

.logo-item {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

.entity-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.entity-partners img {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    background: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

/* Mission Section */
.mission {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--green-dark), var(--blue-deep));
}

.mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission__badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mission__badge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.mission__badge-text span {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 32px 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.checklist li svg {
    flex-shrink: 0;
    color: var(--green-dark);
    margin-top: 3px;
}

/* Services Grid */
.services {
    padding: 100px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(75, 139, 59, 0.1), rgba(0, 174, 239, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--green-dark); }

.service-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-card__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card__link:hover { gap: 10px; }

/* Why Choose */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-deep) 100%);
    color: var(--white);
}

.why-choose .section-label { color: var(--green-light); }
.why-choose h2 { color: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.why-item__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(154, 205, 50, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
}

.why-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    text-align: center;
}

.cta-banner__inner {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    border: 1px solid var(--gray-200);
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p {
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto 32px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gray-900);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail__icon {
    width: 48px;
    height: 48px;
    background: rgba(154, 205, 50, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
}

.contact-detail a:hover { color: var(--green-light); }

/* Forms */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--gray-800);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(75, 139, 59, 0.15);
}

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

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.form-alert--success {
    background: rgba(75, 139, 59, 0.12);
    color: var(--green-dark);
    border: 1px solid rgba(75, 139, 59, 0.3);
}

.form-alert--error {
    background: rgba(207, 46, 46, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(207, 46, 46, 0.2);
}

.form-alert__debug {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(185, 28, 28, 0.15);
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--gray-50) 0%, rgba(75, 139, 59, 0.06) 100%);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.page-hero h1 { margin-bottom: 16px; }

.page-hero p {
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.0625rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.breadcrumb a { color: var(--gray-600); }
.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-400);
}

/* Content sections */
.content-section {
    padding: 80px 0;
}

.content-section--alt { background: var(--gray-50); }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.content-block h2 { margin-bottom: 20px; }
.content-block p { color: var(--gray-600); margin-bottom: 16px; }

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list li svg { color: var(--green-dark); flex-shrink: 0; }

/* Finance cards */
.finance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.finance-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
}

.finance-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green-dark);
}

.finance-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(75, 139, 59, 0.1), rgba(0, 174, 239, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.finance-card h3 { margin-bottom: 12px; }
.finance-card p { color: var(--gray-600); font-size: 0.9375rem; }

/* News cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-card__image {
    height: 200px;
    background: linear-gradient(135deg, var(--green-dark), var(--blue-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__link-wrap {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.news-card__link-wrap:hover h3 {
    color: var(--green-dark);
}

.news-card__link-wrap:hover .news-card__link {
    gap: 10px;
}

.news-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.article-meta {
    font-size: 0.875rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.article-content h2 {
    margin: 32px 0 16px;
    font-size: 1.5rem;
}

.article-content h3 {
    margin: 24px 0 12px;
    font-size: 1.125rem;
}

.article-steps {
    margin: 16px 0 24px 24px;
    color: var(--gray-700);
}

.article-steps li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-highlight {
    background: var(--gray-50);
    border-left: 4px solid var(--green-dark);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.article-references {
    list-style: decimal;
    margin-left: 24px;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.article-references li {
    margin-bottom: 10px;
}

.article-back {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.article-back a {
    font-family: var(--font-heading);
    font-weight: 600;
}

.article-figure {
    margin: 24px 0 32px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.article-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.article-figure figcaption {
    padding: 16px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.article-figure figcaption strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
}

.article-figure figcaption span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .news-grid--two { grid-template-columns: 1fr; }
}

.news-card__body { padding: 24px; }

.news-card__date {
    font-size: 0.8125rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.news-card__link {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* About team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--blue-bright));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.team-card h4 { margin-bottom: 4px; font-size: 1rem; }
.team-card span { font-size: 0.8125rem; color: var(--gray-600); }

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-card h3 svg { color: var(--green-dark); }
.value-card p { color: var(--gray-600); font-size: 0.9375rem; }

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin: 20px 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-brand__logo {
    display: block;
    height: 52px;
    width: auto;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--green-dark);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul { list-style: none; }

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
}

.footer-links a:hover { color: var(--green-light); }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    align-items: flex-start;
}

.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--green-light); }
.footer-contact a { color: rgba(255, 255, 255, 0.65); }
.footer-contact a:hover { color: var(--green-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
}

.footer-bottom__tagline {
    color: var(--green-light);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero__visual { min-height: 400px; order: -1; }
    .hero__video-wrap { border-radius: 0; }
    .hero__content { padding: 48px 0; text-align: center; }
    .hero__text { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__stats { left: 50%; transform: translateX(-50%); bottom: 20px; }
    .mission-grid,
    .content-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .finance-grid,
    .news-grid,
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 68px;
    }

    .top-bar { display: none; }

    .logo img { height: 42px; max-width: 180px; object-fit: contain; }

    .site-header__inner {
        gap: 12px;
        position: relative;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
        margin-left: auto;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-height) + 16px) 20px 32px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        z-index: 1001;
        box-shadow: -8px 0 40px rgba(26, 36, 31, 0.15);
        border-left: 1px solid var(--gray-200);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        padding: 14px 12px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .has-dropdown > .nav-link::after {
        content: '+';
        float: right;
        font-weight: 700;
        color: var(--green-dark);
    }

    .has-dropdown.open > .nav-link::after {
        content: '−';
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 12px;
        display: none;
        min-width: 0;
        background: transparent;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 10px 12px;
        font-size: 0.9375rem;
    }

    .btn--nav {
        text-align: center;
        margin-top: 8px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .why-grid,
    .finance-grid,
    .news-grid,
    .values-grid,
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero__stats { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .hero__stats { position: relative; left: auto; transform: none; margin-top: 24px; }
    .contact-form { padding: 24px; }
    .cta-banner__inner { padding: 40px 24px; }
}

/* GR content updates */
.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
    background: #1fb855;
    color: var(--white);
    transform: translateY(-2px);
}

.impact-bar {
    background: linear-gradient(135deg, var(--green-dark), var(--blue-deep));
    padding: 32px 0;
}

.impact-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.impact-item {
    color: var(--white);
}

.impact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.impact-item span {
    font-size: 0.875rem;
    opacity: 0.85;
}

.pillars-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-grid--two {
    grid-template-columns: repeat(3, 1fr);
}

.why-grid--two .why-item p {
    font-size: 0.9375rem;
}

.content-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.content-narrow h2 {
    margin: 32px 0 16px;
    font-size: 1.5rem;
}

.content-narrow h2:first-child {
    margin-top: 0;
}

.page-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.step-card__num {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
}

.step-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.faq-list { margin-top: 16px; }

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    padding: 16px 20px;
    background: var(--white);
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-900);
}

.faq-item p {
    margin-top: 12px;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.info-table-wrap { overflow-x: auto; margin: 24px 0; }

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
}

.info-table th {
    width: 140px;
    background: var(--gray-50);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-900);
}

.notice-box {
    background: var(--gray-50);
    border-left: 4px solid var(--green-dark);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.notice-box h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-badge {
    display: inline-block;
    background: rgba(154, 205, 50, 0.15);
    color: var(--green-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 12px;
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    line-height: 1.7;
    opacity: 0.75;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: var(--white);
}

.btn--booking {
    background: #464775;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(70, 71, 117, 0.35);
}

.btn--booking:hover {
    background: #33344f;
    color: var(--white);
    transform: translateY(-2px);
}

.booking-embed {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 680px;
}

.booking-embed iframe {
    width: 100%;
    height: 720px;
    border: none;
}

.booking-embed__fallback {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .pillars-grid,
    .steps-grid,
    .impact-bar__grid,
    .why-grid--two { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .form-actions,
    .quick-actions,
    .page-cta { flex-direction: column; }
    .form-actions .btn,
    .quick-actions .btn,
    .page-cta .btn { width: 100%; }
}

/* Funding option blocks */
.funding-solutions {
    padding: 100px 0;
    background: var(--gray-50);
}

.funding-simple-wrap {
    max-width: 820px;
    margin: 0 auto 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
}

.funding-simple-wrap__intro {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.funding-simple-list {
    margin: 0;
}

.funding-simple-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.funding-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.funding-option-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.funding-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.funding-option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.funding-option-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 139, 59, 0.1), rgba(0, 174, 239, 0.1));
    border: none;
    border-radius: var(--radius-md);
    color: var(--green-dark);
    margin-bottom: 18px;
}

.funding-option-card h3 {
    color: var(--gray-900);
    font-style: normal;
    font-size: 1.125rem;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 12px;
}

.funding-option-card > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.funding-option-card__checks {
    list-style: none;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.funding-option-card__checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--gray-700);
}

.funding-option-card__checks li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234B8B3B'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.funding-option-card__checks li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .funding-options-grid { grid-template-columns: 1fr; }
    .funding-simple-wrap { padding: 24px 20px; }
}

/* Funding portal */
.page-hero--funding .funding-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-dark);
    background: rgba(75, 139, 59, 0.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.funding-portal {
    padding-top: 80px;
    padding-bottom: 100px;
}

.funding-type-section {
    margin-bottom: 40px;
}

.funding-type-section__title {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.funding-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.funding-type-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.funding-type-card:hover,
.funding-type-card:focus-visible {
    border-color: var(--green-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    outline: none;
}

.funding-type-card__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-deep);
    background: rgba(0, 84, 166, 0.08);
    padding: 4px 8px;
    border-radius: 999px;
}

.funding-type-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-900);
}

.funding-type-card__subtitle {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.funding-form-panel {
    margin-top: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.funding-form-panel__head {
    margin-bottom: 24px;
}

.funding-form-panel__back {
    background: none;
    border: none;
    color: var(--green-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
}

.funding-form-panel__intro {
    color: var(--gray-600);
    margin-top: 8px;
}

.funding-required-docs {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.funding-required-docs h3,
.funding-required-docs--static h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.funding-required-docs__note,
.funding-required-docs--static .form-help {
    margin-bottom: 12px;
}

.funding-required-docs ul,
.funding-required-docs--static ul {
    margin-left: 20px;
    color: var(--gray-700);
}

.funding-required-docs li {
    margin-bottom: 6px;
}

.funding-application-form .form-help {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 6px;
}

.form-group--checkbox {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.checkbox-label input {
    margin-top: 4px;
    flex-shrink: 0;
}

.funding-consent-box {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin: 24px 0 16px;
    overflow: hidden;
}

.funding-consent-box h3 {
    background: var(--gray-50);
    padding: 14px 18px;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-200);
}

.funding-consent-box__content {
    max-height: 220px;
    overflow-y: auto;
    padding: 18px;
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.funding-consent-box__content p {
    margin-bottom: 12px;
}

.funding-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.funding-upload__dropzone {
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    background: var(--gray-50);
    cursor: pointer;
    transition: all var(--transition);
}

.funding-upload__dropzone.is-dragover,
.funding-upload__dropzone:hover {
    border-color: var(--green-dark);
    background: rgba(75, 139, 59, 0.06);
}

.funding-upload__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.funding-upload__list {
    list-style: none;
    margin-top: 12px;
}

.funding-upload__list li {
    font-size: 0.875rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

.funding-result {
    margin-top: 48px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.funding-result__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.funding-result--success {
    border-color: rgba(75, 139, 59, 0.3);
}

.funding-result--error {
    border-color: rgba(207, 46, 46, 0.25);
}

@media (max-width: 1024px) {
    .funding-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .funding-type-grid { grid-template-columns: 1fr; }
    .funding-form-panel { padding: 24px 18px; }
}
