/* 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;
    padding-top: 5.5rem;
}
.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;
    /* Shared with farm zone picker / inner marketing pages */
    --landing-page-bg: #f3f5f2;
    --landing-accent-teal: #237373;
    /* Farm zone card surface (SelectOrganization) — reused on marketing pages */
    --landing-card-radius: 16px;
    --landing-card-bg: #fff;
    --landing-card-shadow: 0 8px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    --landing-card-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(74, 124, 35, 0.12);
}

/* 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.landing-navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #f4f5f3;
    border-bottom: 1px solid var(--landing-border);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.clean-landing .site-navbar.landing-navbar-fixed.shrink {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}
.clean-landing .site-navbar.landing-navbar-fixed.shrink {
    background: #000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}
.clean-landing .site-navbar.landing-navbar-fixed.shrink .site-menu .nav-link,
.clean-landing .site-navbar.landing-navbar-fixed.shrink .site-menu-dark .nav-link,
.clean-landing .site-navbar.landing-navbar-fixed.shrink .landing-nav-signin,
.clean-landing .site-navbar.landing-navbar-fixed.shrink .landing-header-toolbar .btn.dropdown-toggle,
.clean-landing .site-navbar.landing-navbar-fixed.shrink .site-menu-toggle,
.clean-landing .site-navbar.landing-navbar-fixed.shrink .landing-brand-text {
    color: #fff !important;
}
.clean-landing .site-navbar.landing-navbar-fixed.shrink .landing-lang-toggle,
.clean-landing .site-navbar.landing-navbar-fixed.shrink .landing-user-pill {
    color: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}
@media (max-width: 767px) {
    .clean-landing .site-wrap {
        padding-top: 4.85rem;
    }
}
/* BS 4.1 has no flex-shrink utilities — keep language + profile visible beside long nav */
.clean-landing .site-navbar > .container-fluid > .d-flex > .landing-navbar-center {
    flex: 1 1 auto;
    min-width: 0;
}
.clean-landing .landing-navbar-logo {
    flex-shrink: 0;
    max-width: 40%;
}
@media (min-width: 992px) {
    .clean-landing .landing-navbar-logo {
        max-width: none;
    }
}
.clean-landing .landing-header-actions {
    flex-shrink: 0;
    position: relative;
    z-index: 2002;
}
.clean-landing .landing-header-actions > nav {
    flex-shrink: 0;
    width: auto;
    max-width: 100%;
}
.clean-landing .landing-header-toolbar .btn.dropdown-toggle {
    /* theme menu styles target `a`; keep controls visible */
    color: #444;
}
.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):not(.select-org-page) {
    padding: 4rem 0 5rem;
    background: #fff;
}

/* Center form and column width – Identity only (exclude .clean-hero, .select-org-page multi-column grid) */
.clean-landing main > .container .row,
.clean-landing main > div:not(.clean-hero):not(.hero-section):not(.select-org-page) .row {
    justify-content: center;
}
.clean-landing main > .container .row > [class^="col-"],
.clean-landing main > div:not(.clean-hero):not(.hero-section):not(.select-org-page) .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):not(.select-org-page) .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 */
.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;
}
/* Marketing inner pages: same canvas as Organization/SelectOrganization */
.landing-section.landing-theme {
    padding: 1.75rem 0 3.5rem;
    background: var(--landing-page-bg);
    border-top: none;
}
.landing-section.landing-theme:nth-child(even) {
    background: var(--landing-page-bg);
}
main .landing-section.landing-theme:first-of-type {
    background: var(--landing-page-bg);
    padding-top: 1.5rem;
}
/* Sitewide landing main canvas (Home hero still uses its own gradient inside the section) */
.clean-landing main {
    flex: 1;
    position: relative;
    background: var(--landing-page-bg);
}
/* Inner pages (no home hero): soft glow — toned down on sage background */
.clean-landing main:not(:has(.hero-cool)):not(:has(.landing-hero-immersive))::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.06) 0%, transparent 55%),
                radial-gradient(ellipse 60% 50% at 5% 20%, rgba(45, 138, 138, 0.04) 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);
}
/* Typography alignment with farm zone picker */
.landing-theme .inner-page-hero {
    padding-top: 0.25rem;
}
.landing-theme .inner-page-hero-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #1c1c1c;
    letter-spacing: -0.02em;
}
.landing-theme .inner-page-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
}
.landing-theme .inner-page-hero-accent {
    width: 72px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--landing-accent-teal), var(--landing-primary));
}
.landing-theme .section-desc {
    color: var(--landing-text-muted);
    line-height: 1.65;
}

/* Content blocks — same card shell as /Organization/SelectOrganization */
.landing-content-block {
    background: var(--landing-card-bg);
    border: none;
    border-radius: var(--landing-card-radius);
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--landing-card-shadow);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.clean-landing .landing-content-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--landing-card-shadow-hover);
}
.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;
    background: linear-gradient(160deg, rgba(74, 124, 35, 0.10) 0%, rgba(35, 115, 115, 0.06) 50%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 10px;
    overflow: hidden;
}
.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 */
.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: var(--landing-card-bg);
    border: none;
    border-radius: var(--landing-card-radius);
    overflow: hidden;
    box-shadow: var(--landing-card-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.clean-landing .team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-card-shadow-hover);
}
.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-member-card--expanded .member-bio-preview {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}
.team-member-card .team-member-card-extra {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--landing-border);
}
.team-member-card.team-member-card--expanded .team-member-card-extra {
    display: block;
}
.team-member-card-extra .team-member-contact {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.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) — farm zone card shell + step badge */
.landing-step-card {
    position: relative;
    background: var(--landing-card-bg);
    border: none;
    border-radius: var(--landing-card-radius);
    padding: 1.75rem 1.75rem 1.75rem 4rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--landing-card-shadow);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.clean-landing .landing-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--landing-card-shadow-hover);
}
.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: 999px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(74, 124, 35, 0.25);
}
.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 — picker shadow + soft green wash inside */
.landing-cta-block {
    background: linear-gradient(165deg, #fff 0%, #f4faf2 40%, #e8f4e4 100%);
    border: none;
    border-radius: var(--landing-card-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
    box-shadow: var(--landing-card-shadow);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.clean-landing .landing-cta-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--landing-card-shadow-hover);
}
.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.landing-theme {
        padding: 2.25rem 0 2.75rem;
    }

    .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.landing-theme-home .hero-cool-badge {
    background: rgba(45, 138, 138, 0.12);
    color: var(--landing-accent-teal);
}
.hero-cool.landing-theme-home .hero-headline {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #1c1c1c;
}
.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: var(--landing-card-radius);
    box-shadow: var(--landing-card-shadow);
    border: none;
    animation: heroFadeUp 0.6s ease-out 0.2s both;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.hero-cool .auth-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--landing-card-shadow-hover);
}
@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;
    }
}

/* —— Farm zone picker (Organization / SelectOrganization) —— */
.clean-landing .select-org-page {
    background: var(--landing-page-bg);
    min-height: calc(100vh - 88px);
    padding-top: 1.5rem;
}
.select-org-hero-main .select-org-hero {
    max-width: 42rem;
}
@media (min-width: 992px) {
    .select-org-hero-search {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .select-org-toolbar--hero {
        width: 100%;
        max-width: 22rem;
        margin-bottom: 0 !important;
    }
}
.select-org-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(45, 138, 138, 0.12);
    color: #237373;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.select-org-badge-icon {
    flex-shrink: 0;
    opacity: 0.95;
}
.select-org-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 600;
}
.select-org-title-lead {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: #1c1c1c;
    font-weight: 600;
    margin-right: 0.35rem;
}
.select-org-title-accent {
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--landing-primary);
    font-weight: 800;
}
.select-org-sub {
    color: var(--landing-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 0.65rem;
    max-width: 36rem;
}
.select-org-signed-in {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}
.select-org-signed-in strong {
    color: var(--landing-text);
    font-weight: 600;
}
.select-org-grid {
    margin-top: 0.5rem;
}
.select-org-grid > [class*="col-"] {
    margin-bottom: 1.5rem;
}
/* Guard against global clean-landing main/.row overrides — always honor Bootstrap 3-col grid here */
.clean-landing .select-org-page .select-org-grid.row > .select-org-card-col,
.clean-landing .select-org-page .select-org-grid.row > .select-org-create-col {
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 768px) {
    .clean-landing .select-org-page .select-org-grid.row > .select-org-card-col,
    .clean-landing .select-org-page .select-org-grid.row > .select-org-create-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
.select-org-card-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
    border-radius: var(--landing-card-radius);
}
.select-org-card-link:focus-visible {
    outline: 3px solid rgba(74, 124, 35, 0.45);
    outline-offset: 3px;
}
.select-org-card {
    height: 100%;
    background: var(--landing-card-bg);
    border-radius: var(--landing-card-radius);
    overflow: hidden;
    box-shadow: var(--landing-card-shadow);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.select-org-card-link:hover .select-org-card {
    transform: translateY(-4px);
    box-shadow: var(--landing-card-shadow-hover);
}
.select-org-card-media {
    position: relative;
    height: 11.5rem;
    background-size: cover;
    background-position: center;
}
.select-org-card-media--default {
    background-image:
        linear-gradient(160deg, rgba(74, 124, 35, 0.15) 0%, transparent 45%),
        linear-gradient(to bottom, #8fbc6b 0%, #5a8a3e 45%, #3d6b28%);
}
.select-org-card-media--brand {
    background-color: #e8efe0;
}
.select-org-pill {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 1;
}
.select-org-pill-owner {
    background: linear-gradient(135deg, #f0d575 0%, #e2b93a 100%);
    color: #5c4510;
    box-shadow: 0 2px 8px rgba(200, 160, 40, 0.35);
}
.select-org-pill-role {
    background: rgba(255, 255, 255, 0.92);
    color: #444;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.select-org-card-loc {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
    max-width: calc(100% - 1.7rem);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.select-org-card-loc svg {
    flex-shrink: 0;
    color: var(--landing-primary);
}
.select-org-card-body {
    padding: 1.25rem 1.35rem 1.35rem;
}
.select-org-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 1rem;
    line-height: 1.3;
}
.select-org-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.82rem;
    color: var(--landing-text-muted);
    font-weight: 600;
}
.select-org-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.select-org-stat-ic {
    color: var(--landing-primary);
    opacity: 0.9;
    flex-shrink: 0;
}
.select-org-card--create {
    min-height: 18rem;
    border: 2px dashed #c5ceb8;
    background: #eef1ea;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select-org-card-link--create:hover .select-org-card--create {
    border-color: var(--landing-primary);
    background: #e8f0e0;
}
.select-org-create-inner {
    text-align: center;
    padding: 1.5rem;
    max-width: 18rem;
}
.select-org-create-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(74, 124, 35, 0.14);
    color: var(--landing-primary);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 4rem;
    text-align: center;
}
.select-org-create-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.select-org-create-sub {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    margin: 0;
    line-height: 1.5;
}
.select-org-empty {
    border-radius: 16px !important;
    background: #fff !important;
    color: var(--landing-text) !important;
    padding: 2rem !important;
}
.select-org-toolbar {
    max-width: 28rem;
}
.select-org-search-wrap {
    position: relative;
}
.select-org-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}
.select-org-search-input {
    display: block;
    width: 100%;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 0.7rem 1rem 0.7rem 2.75rem;
    font-size: 0.95rem;
    background: #fff;
    color: var(--landing-text);
}
.select-org-search-input:focus {
    outline: none;
    border-color: rgba(74, 124, 35, 0.45);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.12);
}
.select-org-empty-filter {
    font-size: 0.95rem;
}
.select-org-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 0 0 1.5rem;
}
.select-org-pager-btn {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--landing-border);
    background: #fff;
    color: var(--landing-text);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.select-org-pager-btn:hover:not(:disabled) {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    background: rgba(74, 124, 35, 0.06);
}
.select-org-pager-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.select-org-pager-status {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    font-weight: 600;
}

/* Landing header: language + profile dropdown (desktop) */
.clean-landing .landing-header-toolbar > li {
    list-style: none;
}
.clean-landing .landing-header-toolbar > li.dropdown {
    position: relative;
}
.clean-landing .landing-lang-toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.45rem 0.6rem;
    display: inline-flex;
    align-items: center;
}
.clean-landing .landing-lang-toggle:hover,
.clean-landing .landing-lang-toggle:focus {
    color: var(--landing-primary) !important;
    background: rgba(0, 0, 0, 0.04) !important;
}
.clean-landing .landing-lang-toggle.dropdown-toggle::after {
    margin-left: 0.35rem;
}
.clean-landing .landing-globe-icon {
    flex-shrink: 0;
    color: #7a7a7a;
    stroke: currentColor;
}
.clean-landing .landing-user-pill {
    background: #e8efe4 !important;
    border: 1px solid rgba(74, 124, 35, 0.2) !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    color: #333;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.35rem 0.55rem 0.35rem 0.4rem !important;
    max-width: min(220px, 32vw);
    display: inline-flex !important;
    align-items: center;
}
.clean-landing .landing-user-pill:hover,
.clean-landing .landing-user-pill:focus {
    background: #dfe9d9 !important;
    border-color: rgba(74, 124, 35, 0.35) !important;
    color: #222 !important;
}
.clean-landing .landing-user-pill.dropdown-toggle::after {
    margin-left: 0.35rem;
    flex-shrink: 0;
}
.clean-landing .landing-user-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(74, 124, 35, 0.22);
    color: var(--landing-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    margin-right: 0.45rem;
    flex-shrink: 0;
}
.clean-landing .landing-user-label {
    text-align: left;
    min-width: 0;
}
.clean-landing .landing-user-dropdown-menu {
    min-width: 11.5rem;
    border-radius: 12px;
    padding: 0.4rem;
    margin-top: 0.35rem;
}
.clean-landing .landing-logout-item {
    color: #c0392b !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.55rem 0.75rem !important;
    border: none;
    background: transparent !important;
    cursor: pointer;
    text-align: left;
}
.clean-landing .landing-logout-item:hover {
    background: rgba(192, 57, 43, 0.08) !important;
    color: #a93226 !important;
}
.clean-landing .landing-logout-icon {
    stroke: #c0392b;
}
@media (max-width: 767px) {
    .select-org-card-media {
        height: 10rem;
    }
}

/* —— How It Works (marketing) —— */
.how-it-works-page.landing-section.landing-theme {
    background: #fff;
    padding-top: 2rem;
}
main .landing-section.landing-theme.how-it-works-page:first-of-type {
    background: #fff;
}

.hiw-hero {
    text-align: center;
    padding: 0 0 2.5rem;
    max-width: 48rem;
    margin: 0 auto;
}
.hiw-hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--landing-primary);
    background: rgba(74, 124, 35, 0.12);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hiw-hero-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.8vw, 3rem);
    font-weight: 700;
    line-height: 1.18;
    color: #1c1c1c;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.hiw-hero-title-fallback {
    font-weight: 700;
}
.hiw-hero-title-plain {
    font-weight: 700;
}
.hiw-hero-title-green {
    color: #2d6a3e;
    font-weight: 700;
}
.hiw-hero-title-italic {
    font-style: italic;
    font-weight: 600;
    color: #1c1c1c;
}
.hiw-hero-sub {
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    color: var(--landing-text-muted);
    line-height: 1.65;
    max-width: 36rem;
    margin: 0 auto 1.35rem;
}
.hiw-hero-rule {
    width: 4rem;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--landing-primary), #5a9a3a);
}

.hiw-steps {
    padding-bottom: 1rem;
}

/* Space between hero intro + rule and step cards (matches Join Us clearance) */
.how-it-works-page .hiw-steps {
    margin-top: clamp(1.75rem, 4vw, 3rem);
}

.hiw-step {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.hiw-step:first-of-type {
    border-top: none;
    padding-top: 1rem;
}

.hiw-step-media {
    position: relative;
    background: linear-gradient(160deg, rgba(74, 124, 35, 0.10) 0%, rgba(35, 115, 115, 0.06) 50%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hiw-step-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    vertical-align: middle;
}
.hiw-step-badge {
    position: absolute;
    top: 1rem;
    width: 2.35rem;
    height: 2.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    border-radius: 6px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.hiw-step-media--l .hiw-step-badge {
    left: 1rem;
}
.hiw-step-media--r .hiw-step-badge {
    right: 1rem;
}
.hiw-step--green .hiw-step-badge {
    background: #3a8c4a;
}
.hiw-step--blue .hiw-step-badge {
    background: #2563eb;
}
.hiw-step--orange .hiw-step-badge {
    background: #ea580c;
}
.hiw-step--purple .hiw-step-badge {
    background: #7c3aed;
}

.hiw-step-body {
    padding: 0.25rem 0 0 0.5rem;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (max-width: 991px) {
    .hiw-step-body {
        padding-left: 0;
        padding-top: 0.5rem;
    }
}

.hiw-phase {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.32rem 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.hiw-phase--green {
    color: #276334;
    background: rgba(58, 140, 74, 0.12);
}
.hiw-phase--blue {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
}
.hiw-phase--orange {
    color: #c2410c;
    background: rgba(234, 88, 12, 0.12);
}
.hiw-phase--purple {
    color: #6d28d9;
    background: rgba(124, 58, 237, 0.1);
}

.hiw-step-heading-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.65rem;
}
.hiw-step-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.hiw-step-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hiw-step-icon--square {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 10px;
}
.hiw-step-icon--round {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
}
.hiw-step--green .hiw-step-icon {
    background: #3a8c4a;
}
.hiw-step--blue .hiw-step-icon {
    background: #2563eb;
}
.hiw-step--orange .hiw-step-icon {
    background: #ea580c;
}
.hiw-step--purple .hiw-step-icon {
    background: #7c3aed;
}

.hiw-step-lead {
    font-size: 0.98rem;
    font-weight: 600;
    color: #3d5240;
    margin-bottom: 0.65rem;
}
.hiw-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #333;
}
.hiw-check-list li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.55rem;
}
.hiw-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--landing-primary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 1.1rem;
    text-align: center;
}

.hiw-why {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #374151;
}
.hiw-why-arrow {
    flex-shrink: 0;
    color: var(--landing-primary);
    font-weight: 700;
    line-height: 1.4;
}

.hiw-audience {
    margin-top: 1rem;
    padding: 3.25rem 1.5rem 3rem;
    background: #f9fafb;
    border-radius: var(--landing-card-radius);
    text-align: center;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hiw-audience-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--landing-primary);
    background: rgba(74, 124, 35, 0.12);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.hiw-audience-kicker-ic {
    opacity: 0.9;
}
.hiw-audience-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.hiw-audience-sub {
    font-size: 1.02rem;
    color: #3d5240;
    line-height: 1.6;
    max-width: 40rem;
    margin: 0 auto 2rem;
}
.hiw-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.25rem;
    max-width: 52rem;
    margin: 0 auto;
}
.hiw-audience-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hiw-audience-card-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hiw-audience-card-icon--0 {
    background: linear-gradient(145deg, #5cb85c, var(--landing-primary));
}
.hiw-audience-card-icon--1 {
    background: linear-gradient(145deg, #d4a574, #b8824a);
}
.hiw-audience-card-icon--2 {
    background: linear-gradient(145deg, #f59e0b, #d97706);
}
.hiw-audience-card-icon--3 {
    background: linear-gradient(145deg, #64748b, #475569);
}
.hiw-audience-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
}
.hiw-audience-foot {
    margin: 2rem 0 0;
    font-size: 0.98rem;
    color: #3d5240;
}

.landing-cta-block.hiw-cta {
    margin-top: 2.5rem;
}

@media (max-width: 767px) {
    .hiw-step {
        padding: 2.25rem 0;
    }
    .hiw-audience {
        padding: 2.5rem 1.1rem 2.25rem;
    }
}

/* —— Solutions (marketing tiers) —— */
.solutions-page.landing-section.landing-theme {
    background: #fff;
    padding-top: 2rem;
}
main .landing-section.landing-theme.solutions-page:first-of-type {
    background: #fff;
}

.sol-hero {
    text-align: center;
    padding: 0 0 2rem;
    max-width: 48rem;
    margin: 0 auto 1rem;
}
.sol-hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--landing-primary);
    background: rgba(74, 124, 35, 0.12);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.sol-hero-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1c;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}
.sol-hero-plain {
    font-weight: 700;
}
.sol-hero-accent {
    color: #276334;
    font-weight: 700;
}
.sol-hero-rule {
    width: 4rem;
    height: 3px;
    margin: 0 auto 1.35rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--landing-primary), #5a9a3a);
}
.sol-hero-intro {
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    color: var(--landing-text-muted);
    line-height: 1.65;
 max-width: 46rem;
    margin: 0 auto;
}

.sol-tier-list {
    max-width: 72rem;
    margin: 0 auto;
    padding-bottom: 1rem;
}
.sol-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.75rem;
    overflow: hidden;
}
.sol-card--free {
    border-color: rgba(13, 148, 136, 0.25);
}
.sol-card--grow {
    border-color: rgba(37, 99, 235, 0.28);
}
.sol-card--harvest {
    border-color: rgba(234, 88, 12, 0.28);
}
.sol-card--enterprise {
    border-color: rgba(124, 58, 237, 0.28);
}

.sol-card-row {
    align-items: stretch;
}
.sol-card-media {
    position: relative;
    height: 100%;
    min-height: 240px;
    background: linear-gradient(160deg, rgba(74, 124, 35, 0.10) 0%, rgba(35, 115, 115, 0.06) 50%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 0;
    overflow: hidden;
}
@media (min-width: 992px) {
    .sol-card-media {
        min-height: 100%;
    }
}
.sol-card-img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}
.sol-media-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
    min-width: 6.5rem;
}
.sol-media-badge-top {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.15;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.sol-media-badge-bottom {
    font-size: 0.72rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.2;
}
.sol-media-badge-single {
    font-size: 0.9rem;
}
.sol-media-badge--free {
    background: #ecfdf5;
    border: 1px solid rgba(13, 148, 136, 0.35);
}
.sol-media-badge--free .sol-media-badge-top {
    color: #0f766e;
}
.sol-media-badge--free .sol-media-badge-bottom {
    color: #0f766e;
    opacity: 0.9;
}
.sol-media-badge--grow .sol-media-badge-top {
    color: #1d4ed8;
}
.sol-media-badge--pro .sol-media-badge-top {
    color: #c2410c;
}
.sol-media-badge--market .sol-media-badge-top {
    color: #6d28d9;
}

.sol-card-body {
    position: relative;
    padding: 1.75rem 1.75rem 1.85rem;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.sol-card--grow .sol-card-body,
.sol-card--enterprise .sol-card-body {
    padding-top: 3.15rem;
}
@media (max-width: 991px) {
    .sol-card--grow .sol-card-body,
    .sol-card--enterprise .sol-card-body {
        padding-top: 3rem;
    }
}

.sol-pill-popular {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1e40af;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(37, 99, 235, 0.35);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.12);
}
.sol-pill-popular::before {
    content: "\2605";
    margin-right: 0.3rem;
    font-size: 0.65rem;
}
.sol-pill-enterprise {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.35);
}

.sol-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.35rem;
}
.sol-tier-icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.sol-tier-icon--free {
    background: linear-gradient(145deg, #14b8a6, #0d9488);
}
.sol-tier-icon--grow {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
}
.sol-tier-icon--pro {
    background: linear-gradient(145deg, #f97316, #ea580c);
    border-radius: 10px;
}
.sol-tier-icon--market {
    background: linear-gradient(145deg, #8b5cf6, #7c3aed);
    border-radius: 10px;
}

.sol-tier-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.8vw, 1.75rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 0.2rem;
    line-height: 1.2;
}
.sol-tier-tagline {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}
.sol-card--free .sol-tier-tagline {
    color: #0f766e;
}
.sol-card--grow .sol-tier-tagline {
    color: #1d4ed8;
}
.sol-card--harvest .sol-tier-tagline {
    color: #c2410c;
}
.sol-card--enterprise .sol-tier-tagline {
    color: #6d28d9;
}

.sol-tier-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #374151;
    margin: 0.75rem 0 0.85rem;
}

.sol-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
    font-size: 0.96rem;
    line-height: 1.55;
    color: #333;
}
.sol-check-list li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.5rem;
}
.sol-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.12rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 1.1rem;
    text-align: center;
}
.sol-card--free .sol-check-list li::before {
    background: #0d9488;
}
.sol-card--grow .sol-check-list li::before {
    background: #2563eb;
}
.sol-card--harvest .sol-check-list li::before {
    background: #ea580c;
}
.sol-card--enterprise .sol-check-list li::before {
    background: #7c3aed;
}

.sol-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.5rem;
    margin-top: 0.25rem;
}
.sol-why {
    flex: 1 1 14rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
    font-size: 0.92rem;
    line-height: 1.55;
}
.sol-why-arrow {
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1.45;
}
.sol-why--free {
    background: #ecfdf5;
    color: #334155;
    border: 1px solid rgba(13, 148, 136, 0.2);
}
.sol-why--free .sol-why-arrow {
    color: #0f766e;
}
.sol-why--grow {
    background: #eff6ff;
    color: #334155;
    border: 1px solid rgba(37, 99, 235, 0.2);
}
.sol-why--grow .sol-why-arrow {
    color: #2563eb;
}
.sol-why--pro {
    background: #fffbeb;
    color: #334155;
    border: 1px solid rgba(234, 88, 12, 0.22);
}
.sol-why--pro .sol-why-arrow {
    color: #ea580c;
}
.sol-why--market {
    background: #f5f3ff;
    color: #334155;
    border: 1px solid rgba(124, 58, 237, 0.22);
}
.sol-why--market .sol-why-arrow {
    color: #7c3aed;
}

.sol-who {
    flex: 0 1 16rem;
    margin: 0;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.45;
}
.sol-who-label {
    font-weight: 700;
    color: #4b5563;
}

.sol-cta {
    max-width: 44rem;
    margin: 2.5rem auto 0;
    padding: 3rem 1.5rem 3.25rem;
    text-align: center;
    background: #fafafa;
    border-radius: var(--landing-card-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.sol-cta-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.sol-cta-sub {
    font-size: 1.02rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin: 0 0 1.75rem;
}
.sol-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    align-items: center;
}
.sol-btn-primary,
.sol-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.65rem 1.65rem;
    border-radius: 10px;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    min-height: 48px;
}
.sol-btn-primary {
    background: var(--landing-primary);
    color: #fff !important;
    border: 2px solid var(--landing-primary);
    box-shadow: 0 4px 14px rgba(74, 124, 35, 0.28);
}
.sol-btn-primary:hover {
    background: var(--landing-primary-hover);
    border-color: var(--landing-primary-hover);
    color: #fff !important;
    transform: translateY(-1px);
}
.sol-btn-secondary {
    background: #fff;
    color: #333 !important;
    border: 2px solid #d1d5db;
}
.sol-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111 !important;
}

@media (max-width: 767px) {
    .sol-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .sol-who {
        max-width: none;
    }
}


/* —— Join Us (marketing cards) —— */
.join-us-page.landing-section.landing-theme {
    background: #fff;
    padding-top: 2rem;
}
main .landing-section.landing-theme.join-us-page:first-of-type {
    background: #fff;
}

/* About / Our Team — match Join Us shell */
.about-page.landing-section.landing-theme,
.our-team-page.landing-section.landing-theme {
    background: #fff;
    padding-top: 2rem;
}
main .landing-section.landing-theme.about-page:first-of-type,
main .landing-section.landing-theme.our-team-page:first-of-type {
    background: #fff;
}

.about-page .landing-content-block ul.join-check-list {
    padding-left: 0;
}

.about-page .landing-content-block ul.join-check-list li::before {
    background: var(--landing-primary);
}

.join-hero {
    text-align: center;
    padding: 0 0 1.75rem;
    max-width: 58rem;
    margin: 0 auto;
}
.join-hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--landing-primary);
    background: rgba(74, 124, 35, 0.12);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.join-hero-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1c;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.join-hero-sub {
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    color: var(--landing-text-muted);
    line-height: 1.65;
    max-width: 52rem;
    margin: 0 auto 1.25rem;
}
.join-hero-rule {
    width: 4rem;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--landing-primary), #5a9a3a);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 70rem;
    margin: 0 auto 1.25rem;
}

/* Space between hero intro + rule and membership cards */
.join-us-page .join-grid {
    margin-top: clamp(1.75rem, 4vw, 3rem);
}

.join-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--landing-card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.join-card {
    --join-accent: var(--landing-primary);
}
.join-card--farmowner {
    --join-accent: #276334;
}
.join-card--agronomist {
    --join-accent: #2563eb;
}
.join-card--technician {
    --join-accent: #ea580c;
}
.join-card--institution {
    --join-accent: #7c3aed;
}

.join-card-media {
    height: 170px;
    background: linear-gradient(160deg, rgba(74, 124, 35, 0.10) 0%, rgba(35, 115, 115, 0.06) 50%, rgba(255, 255, 255, 0.9) 100%);
}
.join-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-card-body {
    padding: 1.55rem 1.7rem 1.7rem;
    font-family: Muli, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.join-card-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.35rem;
    line-height: 1.15;
}
.join-card-tagline {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--join-accent);
    margin: 0 0 1rem;
}
.join-card-label {
    font-weight: 800;
    color: #4b5563;
    margin: 0.5rem 0 0.55rem;
}

.join-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #333;
}
.join-check-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55rem;
}
.join-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.12rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: var(--join-accent);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1.15rem;
    text-align: center;
}

.join-card-footer {
    margin: 0.25rem 0 1rem;
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
}

.join-card-btn {
    margin-top: auto;
    text-align: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (max-width: 991px) {
    .join-card-media {
        height: 150px;
    }
    .join-card-body {
        padding: 1.35rem 1.35rem 1.5rem;
    }
}

