/* Clean landing: white background, dark lemon green accents, light blue inputs */
.clean-landing {
    background: #fff;
}
.clean-landing .site-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.clean-landing main {
    flex: 1;
}
:root {
    --landing-primary: #4a7c23;
    --landing-primary-hover: #3d6b1e;
    --landing-input-bg: #E8F4FC;
    --landing-text: #1a1a1a;
    --landing-text-muted: #666;
    --landing-border: #e9ecef;
}

/* Override OneSchool: white header bar, dark nav links */
.clean-landing .site-navbar {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--landing-border);
    box-shadow: none;
}
.clean-landing .site-navbar .site-logo a {
    color: inherit;
}
.clean-landing .site-navbar .site-menu .nav-link {
    color: #444;
}
.clean-landing .site-navbar .site-menu .nav-link:hover {
    color: var(--landing-primary);
}
.clean-landing .site-navbar .site-menu-dark .nav-link {
    color: #444;
}
.clean-landing .site-navbar .site-menu-dark .nav-link:hover {
    color: var(--landing-primary);
}

/* Language dropdown in nav: flag + label, no underline */
.clean-landing .site-navbar .site-menu .dropdown .nav-link.dropdown-toggle {
    text-decoration: none;
}
.clean-landing .site-navbar .site-menu .dropdown .dropdown-menu {
    min-width: 10rem;
}
.clean-landing .lang-flag {
    object-fit: contain;
    flex-shrink: 0;
}
.clean-landing .sticky-wrapper.is-sticky .site-navbar .site-logo a,
.clean-landing .site-navbar .site-logo a {
    color: inherit;
}

.logo-mark {
    background: rgba(74, 124, 35, 0.12);
    color: var(--landing-primary);
    padding: 0.2em 0.5em;
    border-radius: 6px;
    margin-right: 2px;
    font-weight: 700;
}
.logo-text {
    color: var(--landing-primary);
    font-weight: 700;
}

/* Header Sign in: outline button instead of filled pill */
.btn-cta-outline {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border: 2px solid var(--landing-primary);
    color: var(--landing-primary);
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.btn-cta-outline:hover {
    background: rgba(74, 124, 35, 0.06);
    color: var(--landing-primary);
}

/* Main: white two-column section */
.hero-section {
    padding: 4rem 0 5rem;
    background: #fff;
}
.clean-hero {
    padding: 4rem 0 5rem;
    background: #fff;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
}
.clean-hero .hero-headline {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.clean-hero .hero-desc {
    color: var(--landing-text-muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.hero-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--landing-primary);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-size: 1rem;
}
.btn-hero-primary:hover {
    background: var(--landing-primary-hover);
    color: #fff;
}
.btn-hero-outline {
    background: #fff;
    color: var(--landing-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--landing-primary);
    text-decoration: none;
    font-size: 1rem;
}
.btn-hero-outline:hover {
    background: rgba(74, 124, 35, 0.06);
    color: var(--landing-primary);
    border-color: var(--landing-primary);
}

/* Auth card: white, rounded, subtle shadow, light blue inputs */
.auth-card {
    background: #fff;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.auth-card .form-label {
    font-weight: 500;
    color: var(--landing-text);
    margin-bottom: 0.4rem;
}
.auth-card .form-control {
    background: var(--landing-input-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 1rem;
}
.auth-card .form-control:focus {
    background: var(--landing-input-bg);
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.12);
    outline: none;
}

/* "I am a:" dropdown – match auth inputs, green chevron */
.auth-card .form-select,
.auth-card select.form-select {
    background-color: var(--landing-input-bg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234a7c23' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    font-size: 1rem;
    color: var(--landing-text);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.auth-card .form-select:hover,
.auth-card select.form-select:hover {
    border-color: rgba(74, 124, 35, 0.3);
}
.auth-card .form-select:focus,
.auth-card select.form-select:focus {
    background-color: var(--landing-input-bg);
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.12);
    outline: none;
}
/* Profile Picture upload – match auth inputs, green Browse button */
.auth-card .profile-picture-upload .profile-picture-input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: none;
}
.auth-card .profile-picture-upload .profile-picture-input-group:focus-within {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.12);
}
.auth-card .profile-picture-upload .profile-picture-input-group .form-control {
    background: var(--landing-input-bg);
    border: none;
    border-radius: 0;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    color: var(--landing-text-muted);
}
.auth-card .profile-picture-upload .profile-picture-input-group .form-control:focus {
    background: var(--landing-input-bg);
    border: none;
    box-shadow: none;
}
.auth-card .profile-picture-upload .profile-picture-browse {
    background: var(--landing-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.65rem 1rem;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s ease;
}
.auth-card .profile-picture-upload .profile-picture-browse:hover {
    background: var(--landing-primary-hover);
    color: #fff;
}
.auth-card .profile-picture-upload .profile-picture-preview img {
    border-radius: 8px;
    border: 1px solid var(--landing-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-card .form-check-input:checked {
    background-color: var(--landing-primary);
    border-color: var(--landing-primary);
}
.auth-card .form-check-label {
    color: var(--landing-text-muted);
    font-size: 0.95rem;
}

.btn-auth {
    background: var(--landing-primary);
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 1rem;
}
.btn-auth:hover {
    background: var(--landing-primary-hover);
    color: #fff;
}

.auth-forgot {
    color: var(--landing-primary);
    font-size: 0.9rem;
}
.auth-forgot:hover {
    color: var(--landing-primary-hover);
}

.auth-divider {
    border-top: 1px solid var(--landing-border);
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
}
.auth-create {
    color: var(--landing-text-muted);
    font-size: 0.95rem;
}
.auth-create a {
    color: var(--landing-primary);
    font-weight: 600;
}
.auth-create a:hover {
    color: var(--landing-primary-hover);
}

/* Identity pages only (Login, Register, ForgotPassword, etc.) – do NOT affect home page.
   Home page has main > section.clean-hero; Identity has main > .container or main > div. */

/* Same page wrapper as Registration: hero-section padding and background (Identity only) */
.clean-landing main > .container {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background: #fff;
}
.clean-landing main > div:not(.clean-hero):not(.hero-section) {
    padding: 4rem 0 5rem;
    background: #fff;
}

/* Center form and column width – Identity only (exclude .clean-hero so home layout is unchanged) */
.clean-landing main > .container .row,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .row {
    justify-content: center;
}
.clean-landing main > .container .row > [class^="col-"],
.clean-landing main > div:not(.clean-hero):not(.hero-section) .row > [class^="col-"] {
    max-width: 36rem;
    flex: 0 0 100%;
}
@media (min-width: 992px) {
    .clean-landing main > .container .row > [class^="col-"],
    .clean-landing main > div:not(.clean-hero):not(.hero-section) .row > [class^="col-"] {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}
.clean-landing main > .container .card,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card {
    margin-left: auto;
    margin-right: auto;
}

/* Form card: same as Registration auth-card (Identity only) */
.clean-landing main > .container .card,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card {
    background: #fff;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.clean-landing main > .container .card .mb-3,
.clean-landing main > .container .card .form-group,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .mb-3,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-group {
    display: flex;
    flex-direction: column;
}
.clean-landing main > .container .card .mb-3 label.form-label,
.clean-landing main > .container .card .form-group label:not(.form-check-label),
.clean-landing main > .container .card .card-body .mb-3 label,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .mb-3 label.form-label,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-group label:not(.form-check-label),
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .card-body .mb-3 label {
    order: -1;
}
.clean-landing main > .container .card .form-label,
.clean-landing main > .container .card label:not(.form-check-label),
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-label,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card label:not(.form-check-label) {
    font-weight: 500;
    color: var(--landing-text);
    margin-bottom: 0.4rem;
}
.clean-landing main > .container .card h1:first-child,
.clean-landing main > .container .card h2:first-child,
.clean-landing main > .container .card h3:first-child,
.clean-landing main > .container .card .card-body h1:first-child,
.clean-landing main > .container .card .card-body h2:first-child,
.clean-landing main > .container .card .card-body h3:first-child,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card h1:first-child,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card h2:first-child,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card h3:first-child,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .card-body h1:first-child,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .card-body h2:first-child,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .card-body h3:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.clean-landing main > .container .card .form-control,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-control {
    background: var(--landing-input-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 1rem;
}
.clean-landing main > .container .card .form-control:focus,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-control:focus {
    background: var(--landing-input-bg);
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.12);
    outline: none;
}
.clean-landing main > .container .card .form-check-input:checked,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-check-input:checked {
    background-color: var(--landing-primary);
    border-color: var(--landing-primary);
}
.clean-landing main > .container .card .form-check-label,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-check-label {
    color: var(--landing-text-muted);
    font-size: 0.95rem;
}
.clean-landing main > .container .btn-primary,
.clean-landing main > .container .card .btn-primary,
.clean-landing main > .container input[type="submit"],
.clean-landing main > .container button[type="submit"].btn,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .btn-primary,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .btn-primary,
.clean-landing main > div:not(.clean-hero):not(.hero-section) input[type="submit"],
.clean-landing main > div:not(.clean-hero):not(.hero-section) button[type="submit"].btn {
    background: var(--landing-primary) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 1rem;
}
.clean-landing main > .container .btn-primary:hover,
.clean-landing main > .container .card .btn-primary:hover,
.clean-landing main > .container input[type="submit"]:hover,
.clean-landing main > .container button[type="submit"].btn:hover,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .btn-primary:hover,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card .btn-primary:hover,
.clean-landing main > div:not(.clean-hero):not(.hero-section) input[type="submit"]:hover,
.clean-landing main > div:not(.clean-hero):not(.hero-section) button[type="submit"].btn:hover {
    background: var(--landing-primary-hover) !important;
    color: #fff !important;
}
.clean-landing main > .container .card a:not(.btn),
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card a:not(.btn) {
    color: var(--landing-primary);
}
.clean-landing main > .container .card a:not(.btn):hover,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .card a:not(.btn):hover {
    color: var(--landing-primary-hover);
}
.clean-landing main > .container h1,
.clean-landing main > .container h2,
.clean-landing main > .container h3,
.clean-landing main > .container h4,
.clean-landing main > div:not(.clean-hero):not(.hero-section) h1,
.clean-landing main > div:not(.clean-hero):not(.hero-section) h2,
.clean-landing main > div:not(.clean-hero):not(.hero-section) h3,
.clean-landing main > div:not(.clean-hero):not(.hero-section) h4 {
    color: var(--landing-text);
}
.clean-landing main > .container .text-muted,
.clean-landing main > div:not(.clean-hero):not(.hero-section) .text-muted {
    color: var(--landing-text-muted) !important;
}
@media (max-width: 768px) {
    .clean-landing main > .container .card,
    .clean-landing main > div:not(.clean-hero):not(.hero-section) .card {
        padding: 1.5rem;
    }
    .clean-landing main > .container .card .form-control,
    .clean-landing main > div:not(.clean-hero):not(.hero-section) .card .form-control {
        padding: 0.75rem 1rem;
        min-height: 44px;
    }
    .clean-landing main > .container .card .btn-primary,
    .clean-landing main > .container .btn-primary,
    .clean-landing main > .container input[type="submit"],
    .clean-landing main > .container button[type="submit"].btn,
    .clean-landing main > div:not(.clean-hero):not(.hero-section) .card .btn-primary,
    .clean-landing main > div:not(.clean-hero):not(.hero-section) .btn-primary,
    .clean-landing main > div:not(.clean-hero):not(.hero-section) input[type="submit"],
    .clean-landing main > div:not(.clean-hero):not(.hero-section) button[type="submit"].btn {
        padding: 0.75rem 1rem;
        min-height: 44px;
    }
}

/* Page banner: cool gradient, soft shapes, strong typography (matches hero-cool) */
.page-banner {
    position: relative;
    padding: 4rem 0 4.5rem;
    background: linear-gradient(160deg, #2d5a1a 0%, var(--landing-primary) 28%, #5a9a2e 55%, #3d6b1e 100%);
    color: #fff;
    overflow: hidden;
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 80% at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 5% 90%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
}
.page-banner-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.page-banner-shape--1 {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
}
.page-banner-shape--2 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: 8%;
    background: rgba(255, 255, 255, 0.05);
}
.page-banner-shape--3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 15%;
    background: rgba(255, 255, 255, 0.04);
}
.page-banner-title {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.page-banner-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    font-weight: 500;
}
.page-banner-wave {
    position: absolute;
    left: 0;
    right: 0;
    height: 56px;
    line-height: 0;
}
.page-banner-wave--top {
    top: 0;
    bottom: auto;
}
.page-banner-wave--bottom {
    bottom: 0;
    top: auto;
    height: 56px;
}
.page-banner-wave--flipped svg {
    transform: scaleY(-1);
}
.page-banner-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.page-banner--bottom {
    padding: 4rem 0 3.5rem;
    margin-bottom: 0;
}

/* Landing footer: solid dark green, two-column layout */
.landing-footer {
    position: relative;
    padding: 2.75rem 0 2rem;
    background: #1a3d1c;
    color: #fff;
    margin-top: auto;
}
.landing-footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    line-height: 0;
}
.landing-footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}
.landing-footer-wave svg path {
    fill: #1a3d1c;
}
.landing-footer-bg,
.landing-footer-shape {
    display: none;
}
.landing-footer-main {
    align-items: flex-start;
    padding-top: 0.25rem;
}

/* Row 1 left: logo */
.landing-footer-left {
    text-align: left;
}
.landing-footer-logo {
    display: block;
}
.landing-footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s ease;
    display: block;
}
.landing-footer-logo:hover img {
    opacity: 1;
}

/* Row 1 right: nav links */
.landing-footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.landing-footer-nav {
    width: 100%;
    max-width: 420px;
}
.landing-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 2.5rem;
}
.landing-footer-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.landing-footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Row 2: phone numbers only */
.landing-footer-numbers {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.landing-footer-contact {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.75rem 1.5rem;
    align-items: center;
}
.landing-footer-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.98);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
}
.landing-footer-contact-line:hover {
    color: #fff;
    text-decoration: none;
}
.landing-footer-whatsapp-row {
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}
.landing-footer-whatsapp-row:hover {
    background: rgba(255, 255, 255, 0.16);
}
.landing-footer-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-footer-whatsapp-icon svg {
    width: 20px;
    height: 20px;
    fill: #25D366;
}
.landing-footer-phone-only:hover {
    text-decoration: underline;
}

/* Row 3: copyright at the very bottom */
.landing-footer-copy-row {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.landing-footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .landing-footer-left {
        text-align: center;
    }
    .landing-footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .landing-footer-right {
        justify-content: center;
    }
    .landing-footer-nav {
        max-width: none;
    }
    .landing-footer-links {
        justify-content: center;
    }
    .landing-footer-contact {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .landing-footer {
        padding: 2.25rem 0 1.5rem;
    }
    .landing-footer-links {
        gap: 0.5rem 1.75rem;
    }
    .landing-footer-contact {
        flex-direction: column;
        align-items: center;
    }
}

/* Landing section blocks: cool alternating backgrounds (echo hero tint) */
.landing-section {
    padding: 4rem 0 3.5rem;
    border-top: 1px solid rgba(74, 124, 35, 0.08);
}
.landing-section:first-child {
    border-top: none;
}
.landing-section:nth-child(even) {
    background: linear-gradient(180deg, #eef5eb 0%, #f2f8f0 50%, #f6faf4 100%);
}
main .landing-section:first-of-type {
    background: transparent;
    min-height: 1px;
}
/* Main: warm green tint so all pages have home-page energy (hero has its own bg on home) */
.clean-landing main {
    flex: 1;
    position: relative;
    background: linear-gradient(180deg, #eaf3e6 0%, #f2f8ef 22%, #f6faf4 45%, #fafcf9 100%);
}
/* Inner pages (no hero): extra energy at top with soft glow */
.clean-landing main:not(:has(.hero-cool))::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    max-height: 520px;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 70% at 88% 0%, rgba(74, 124, 35, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse 60% 50% at 5% 20%, rgba(74, 124, 35, 0.05) 0%, transparent 50%);
}
.landing-section .section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f1a0a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.landing-section .section-desc {
    color: var(--landing-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Inner page hero: strong headline + subtitle + accent (same energy as home) */
.inner-page-hero {
    text-align: center;
    padding: 0 0 2.5rem;
    margin-bottom: 0.5rem;
}
.inner-page-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #0f1a0a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}
.inner-page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--landing-text-muted);
    max-width: 540px;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
}
.inner-page-hero-accent {
    width: 64px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--landing-primary), #6b9c3a);
}

/* Content blocks: warm tint so they’re not pure white, blend with page */
.landing-content-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 246, 0.98) 100%);
    border: 1px solid rgba(74, 124, 35, 0.12);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(74, 124, 35, 0.06);
}
.landing-content-block h2,
.landing-content-block .block-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f1a0a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.landing-content-block h3,
.landing-content-block .block-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--landing-text-muted);
    margin-bottom: 0.75rem;
}
.landing-content-block ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}
.landing-content-block ul li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}
.landing-content-block p {
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.landing-content-block .why-matters {
    font-weight: 600;
    color: var(--landing-primary);
    margin-top: 0.5rem;
}

/* Two-column content block with optional image (left or right) */
.landing-content-block-two-col {
    padding: 2rem 2rem;
}
.landing-content-block-two-col .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.landing-content-block-two-col .col-lg-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.landing-content-block-image {
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}
.landing-content-block-image img {
    max-height: 320px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}
.landing-content-block-image img.landing-img-failed,
.landing-content-img.landing-img-failed {
    min-height: 120px;
    min-width: 120px;
    background: #f0f0f0;
    content: none;
}
.team-member-photo-wrap img.landing-img-failed {
    min-height: 140px;
    width: 100%;
    object-fit: cover;
}
@media (min-width: 992px) {
    .landing-content-block-two-col .landing-content-block-image {
        min-height: 280px;
        padding: 1rem 0;
    }
    .landing-content-block-two-col .landing-content-block-image img {
        max-height: 360px;
    }
}

/* Our Team: section and member cards with image, role, bio */
.landing-content-block-team {
    padding: 2rem 2rem;
}
.team-empty-msg {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.5rem 0;
}
.team-members-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}
.team-member-card {
    background: #fff;
    border: 1px solid rgba(74, 124, 35, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(74, 124, 35, 0.04);
    display: flex;
    flex-direction: column;
}
.team-member-photo-wrap {
    aspect-ratio: 1;
    background: #e8f0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.team-member-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member-photo-wrap .team-default-avatar {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.7;
}
.team-member-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.team-member-card .card-body {
    padding: 1.5rem 1.75rem;
}
.team-member-card .member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 0.25rem;
}
.team-member-card .member-role {
    font-size: 0.95rem;
    color: var(--landing-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-member-card .member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--landing-text-muted);
    margin-bottom: 0.5rem;
}
.team-member-card .member-bio-preview {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.team-member-card .team-see-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--landing-primary);
    text-decoration: none;
}
.team-member-card .team-see-more:hover {
    color: var(--landing-primary-hover);
    text-decoration: underline;
}
.team-member-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}
.team-member-links a {
    color: var(--landing-primary);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.team-member-links a:hover {
    text-decoration: underline;
    color: var(--landing-primary-hover);
}
.team-member-contact {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    border-top: 1px solid var(--landing-border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}
.team-member-contact a {
    color: var(--landing-primary);
}

/* Team profile modal (full profile) */
.team-profile-modal-content .modal-header {
    border-bottom: 1px solid var(--landing-border);
    align-items: center;
}
.team-profile-modal-content .modal-header .close {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem -0.25rem auto;
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--landing-text-muted);
}
.team-profile-modal-content .modal-header .close:hover {
    color: var(--landing-text);
}
.team-profile-modal-content .modal-body {
    padding: 1.25rem 1.5rem;
}
.team-profile-modal-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.team-profile-modal-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #e8f0e6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-profile-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-profile-modal-photo .team-default-avatar {
    width: 65%;
    height: 65%;
    object-fit: contain;
    opacity: 0.7;
}
.team-profile-modal-body .member-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 0.25rem;
}
.team-profile-modal-body .member-role {
    font-size: 1rem;
    color: var(--landing-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-profile-modal-body .member-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--landing-text-muted);
    margin-bottom: 1rem;
}

/* Step cards (How It Works): big step number + warm tint + clear hierarchy */
.landing-step-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 251, 243, 0.98) 100%);
    border: 1px solid rgba(74, 124, 35, 0.12);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.75rem 4rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--landing-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(74, 124, 35, 0.06);
}
.landing-step-card-num {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--landing-primary), #5a9a2e);
    border-radius: 10px;
    line-height: 1;
}
.landing-step-card .block-title {
    font-size: 1.25rem;
    margin-top: 0.15rem;
}
.landing-step-card .block-subtitle {
    font-size: 0.95rem;
    color: var(--landing-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.landing-step-cards-row .landing-step-card {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .landing-step-card {
        padding-left: 1.75rem;
        padding-top: 3.25rem;
    }
    .landing-step-card-num {
        top: 1rem;
        left: 1rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* CTA block: stronger presence so “next step” is obvious */
.landing-cta-block {
    background: linear-gradient(165deg, #dcefd4 0%, #e8f5e4 35%, #f0f7ed 100%);
    border: 1px solid rgba(74, 124, 35, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
    box-shadow: 0 8px 32px rgba(74, 124, 35, 0.12), 0 0 0 1px rgba(74, 124, 35, 0.08);
}
.landing-cta-block .block-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.landing-cta-block .btn-hero-primary {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(74, 124, 35, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-cta-block .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 35, 0.35);
}

/* Responsive Styles for Landing Page */
@media (max-width: 768px) {
    /* Hero Section */
    .clean-hero {
        padding: 2rem 0 3rem;
        min-height: auto;
    }

    .clean-hero .hero-headline {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .clean-hero .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        text-align: center;
    }

    /* Auth Card */
    .auth-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .auth-card .form-control {
        padding: 0.75rem 1rem;
        min-height: 44px;
    }

    .btn-auth {
        padding: 0.75rem 1rem;
        min-height: 44px;
    }

    /* Landing Sections */
    .landing-section {
        padding: 2.5rem 0;
    }

    .landing-section .section-title {
        font-size: 1.5rem;
    }

    .landing-section .section-desc {
        font-size: 0.95rem;
    }

    .landing-content-block,
    .landing-step-card {
        padding: 1.25rem 1.5rem;
    }
    .team-members-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .team-member-card {
        max-width: 100%;
    }

    /* Navbar */
    .site-navbar {
        padding: 0.75rem 0;
    }

    .site-logo {
        width: auto !important;
    }

    .site-logo img {
        height: 40px !important;
        width: auto !important;
    }

    /* Buttons */
    .btn-cta-outline {
        padding: 0.5rem 1rem;
        min-height: 44px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .clean-hero {
        padding: 1.5rem 0 2rem;
    }

    .clean-hero .hero-headline {
        font-size: 1.5rem;
    }

    .auth-card {
        padding: 1.25rem;
    }

    .landing-section {
        padding: 2rem 0;
    }

    .landing-section .section-title {
        font-size: 1.25rem;
    }
}

/* ========== COOL LANDING (revert: remove this block + remove .hero-cool/.hero-cool-bg/.hero-cool-badge/.hero-cool-strip from Index.cshtml and restore from Index.cshtml.backup) ========== */
.hero-cool {
    position: relative;
    background: linear-gradient(165deg, #e8f5e4 0%, #f4faf2 35%, #fff 70%);
    overflow: hidden;
    min-height: calc(100vh - 88px);
    padding: 4rem 0 5rem;
}
.hero-cool-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 85% 20%, rgba(74, 124, 35, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(74, 124, 35, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.9) 0%, transparent 40%);
}
.hero-cool .hero-cool-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--landing-primary);
    background: rgba(74, 124, 35, 0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    animation: heroFadeUp 0.6s ease-out;
}
.hero-cool .hero-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f1a0a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    animation: heroFadeUp 0.6s ease-out 0.08s both;
}
.hero-cool .hero-desc {
    font-size: 1.1rem;
    color: var(--landing-text-muted);
    max-width: 480px;
    margin-bottom: 1.75rem;
    line-height: 1.65;
    animation: heroFadeUp 0.6s ease-out 0.16s both;
}
.hero-cool .hero-btns {
    animation: heroFadeUp 0.6s ease-out 0.24s both;
}
.hero-cool .auth-card {
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(74, 124, 35, 0.06);
    border-left: 4px solid var(--landing-primary);
    animation: heroFadeUp 0.6s ease-out 0.2s both;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.hero-cool .auth-card:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(74, 124, 35, 0.1);
}
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-cool-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(74, 124, 35, 0.12);
}
.hero-cool-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--landing-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.hero-cool-strip-item:hover {
    color: var(--landing-primary);
}
.hero-cool-strip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: rgba(74, 124, 35, 0.12);
    color: var(--landing-primary);
    font-size: 0.85rem;
    font-weight: 700;
}
.hero-cool-strip-icon-whatsapp {
    padding: 0.2rem;
}
.hero-cool-strip-icon-whatsapp svg {
    fill: #25D366;
}
@media (max-width: 768px) {
    .hero-cool-strip {
        gap: 1rem 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    .hero-cool .hero-headline {
        font-size: 1.85rem;
    }
}

