:root {
    --black: #0a0a0a;
    --green-deep: #0f3d2e;
    --green-mid: #1a6b52;
    --green-accent: #2d9a6e;
    --green-light: #2d9a6e;
    --green-mist: rgba(30, 107, 82, 0.16);
    --green-surface: rgba(30, 107, 82, 0.14);
    --green-band: #1e6b52;
    --gold: #d4af37;
    --gold-light: #f5e6a8;
    --gold-shine: #fff8dc;
    --gold-deep: #b8941f;
    --cream: #ffffff;
    --ink: #0a0a0a;
    --muted: #3a4844;
    --text-strong: #0a0a0a;
    --paper: #ffffff;
    --surface: #ffffff;
    --line: rgba(15, 61, 46, 0.12);
    --header-dark: #ffffff;
    --header-border: rgba(15, 61, 46, 0.08);
    --shadow-soft: 0 10px 40px rgba(15, 61, 46, 0.07);
    --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.35);
    --gradient-gold: linear-gradient(145deg, var(--gold-shine) 0%, var(--gold-light) 35%, var(--gold) 72%, var(--gold-deep) 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, rgba(45, 154, 110, 0.22) 48%, rgba(30, 107, 82, 0.38) 100%);
    --black-shine: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(212, 175, 55, 0.14), transparent 52%),
        linear-gradient(168deg, #030303 0%, #0a0a0a 38%, #141414 62%, #050505 100%);
    --font-serif: Arial, Helvetica, sans-serif;
    --font-sans: Arial, Helvetica, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: #ffffff;
    line-height: 1.6;
    font-size: 1.05rem;
    padding-bottom: 0;
}
@media (max-width: 600px) {
    body {
        padding-bottom: 5rem;
    }
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: .5rem 1rem;
    background: var(--gold);
    color: var(--ink);
    z-index: 9999;
}

h1, h2, h3, .section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--black);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; margin: 0 0 0.5rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

a { color: var(--green-mid); }
a:hover { color: var(--green-deep); }

.inner { width: min(1120px, 92vw); margin: 0 auto; }
.narrow { max-width: 560px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 20px rgba(15, 61, 46, 0.05);
}

.header-inner {
    width: min(1200px, 94vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}
.brand img:not(.brand-logo-img) { border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; color: var(--green-deep); }
.brand-sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--line);
    background: var(--paper);
    font: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 8px;
    color: var(--ink);
    z-index: 510;
    flex-shrink: 0;
}
.nav-toggle__bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 18px;
    height: 14px;
}
.nav-toggle__bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 2px;
}
.nav-toggle__label {
    line-height: 1;
}

.primary-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    align-items: center;
}
.primary-nav > ul > li > a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--ink);
}
.primary-nav > ul > li > a:hover { color: var(--green-mid); }

.nav-has-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    font-size: 0.92rem;
    color: inherit;
    cursor: pointer;
    padding: 0.15rem 0;
    line-height: 1.4;
}
.nav-dropdown-chevron {
    transition: transform 0.2s ease;
    opacity: 0.85;
}
.nav-has-dropdown.is-open .nav-dropdown-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 15.5rem;
    background: rgba(10, 18, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    z-index: 120;
}
.nav-dropdown-menu[hidden] {
    display: none !important;
}
.nav-has-dropdown.is-open > .nav-dropdown-menu {
    display: block !important;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
}
.nav-dropdown-trigger,
.nav-dropdown-trigger span {
    color: inherit;
}
.nav-dropdown-chevron {
    color: inherit;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:hover span {
    color: var(--gold-light);
}
.nav-has-dropdown.is-active > .nav-dropdown-trigger,
.nav-has-dropdown.is-open > .nav-dropdown-trigger {
    color: #fff;
}

.header-tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lang-switch a { text-decoration: none; font-weight: 600; font-size: 0.85rem; }
.lang-switch a.is-active { color: var(--gold); text-decoration: underline; }
.lang-switch .sep { opacity: 0.4; margin: 0 0.2rem; }

/* Floating language switcher — top-right corner */
.lang-float {
    position: fixed;
    top: max(0.45rem, env(safe-area-inset-top, 0px));
    right: max(0.45rem, env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.28rem 0.5rem;
    background: rgba(10, 18, 16, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    pointer-events: auto;
}
body.fdc-site:not(.page-home) .lang-float {
    top: max(0.45rem, env(safe-area-inset-top, 0px));
}
.lang-float__link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 0.1rem 0.15rem;
}
.lang-float__link:hover {
    color: var(--gold-light);
}
.lang-float__link.is-active {
    color: var(--gold);
}
.lang-float__sep {
    opacity: 0.45;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
}

.btn {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    text-align: center;
}
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }
.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold-deep);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-gold:hover {
    filter: brightness(1.06);
    color: var(--black);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.42);
}
.btn-outline {
    background: transparent;
    border-color: var(--green-deep);
    color: var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }
.btn-light-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.85);
    color: #fff;
}
.btn-light-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-block { display: block; width: 100%; }

@media (max-width: 1100px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        width: 100%;
        display: none;
        border-top: 1px solid var(--line);
        padding-top: 0.75rem;
    }
    .primary-nav.is-open { display: block; }
    .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
    .nav-has-dropdown { width: 100%; }
    .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--gold);
        margin: 0.25rem 0 0.5rem 0.75rem;
        padding: 0.25rem 0;
        min-width: 0;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }
    .nav-has-dropdown.is-open > .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a {
        padding: 0.45rem 0.75rem;
        color: #fff;
    }
    .header-tools { width: 100%; justify-content: space-between; }
}

.hero {
    position: relative;
    min-height: min(78vh, 720px);
    display: grid;
    align-items: end;
    color: #fff;
}
.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,59,44,0.25) 0%, rgba(13,59,44,0.82) 88%);
}
.hero-content {
    position: relative;
    padding: 4rem 0 5rem;
}
.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    opacity: 0.95;
    margin-bottom: 0.75rem;
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-sub { max-width: 36rem; font-size: 1.1rem; opacity: 0.95; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.scroll-hint {
    display: inline-block;
    margin-top: 2rem;
    color: var(--gold-light);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.08em;
}
.scroll-hint--icon {
    font-size: 0;
    line-height: 0;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.scroll-hint--icon:hover {
    opacity: 1;
    transform: translateY(3px);
}
.scroll-hint__chevron {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    animation: scroll-hint-bounce 2s ease-in-out infinite;
}
@keyframes scroll-hint-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
.hero-cta--home {
    margin-top: 1.5rem;
}
body.page-home .hero h1 {
    font-size: clamp(1.65rem, 4.2vw, 2.75rem);
    max-width: 22ch;
}
body.page-home .hero-sub {
    max-width: 40rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.notice-banner {
    background: #fff8e6;
    border-bottom: 1px solid #e6d39a;
    padding: 1rem 0;
}
.notice-banner .inner { text-align: center; }

.section { padding: 4rem 0; }
.section-alt { background: var(--paper); border-block: 1px solid var(--line); }
.section-title { text-align: center; margin: 0 0 2.5rem; }

.card-grid {
    display: grid;
    gap: 1.5rem;
}
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 8px 28px rgba(13, 59, 44, 0.06);
}
.card-course h3 { margin-top: 0; }
.card-course a { font-weight: 600; text-decoration: none; }

.licence-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-course--licence {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
}
.card-course__media {
    margin: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    line-height: 0;
}
.card-course__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: min(320px, 42vw);
}
.card-course__body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-course__body h3 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--green-deep);
}
.card-course__body p {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--muted);
    flex: 1;
}
@media (max-width: 900px) {
    .licence-path-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
    .card-course__media img {
        max-height: 360px;
    }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .licence-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .licence-path-grid .card-course--licence:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        margin-inline: auto;
        width: 100%;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature {
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}
.feature h3 { margin-top: 0; }

.section-split .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 820px) {
    .section-split .split { grid-template-columns: 1fr; }
}
.split-media img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    border: 8px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.section-cta { padding: 3rem 0 4rem; }
.cta-box {
    background: linear-gradient(135deg, #ffffff 0%, var(--green-surface) 55%, rgba(30, 107, 82, 0.22) 100%);
    color: var(--ink);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: var(--shadow-soft);
}
.cta-box h2 { color: var(--black); margin: 0 0 0.35rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.page-hero {
    background: var(--gradient-hero);
    color: var(--ink);
    padding: 3.5rem 0;
    border-bottom: 3px solid var(--gold);
}
.page-hero.compact { padding: 2.75rem 0; }
.page-hero h1 { color: var(--black); margin: 0; }
.page-hero .lead { margin: 0.75rem 0 0; max-width: 52rem; color: var(--muted); }

.prose .inner { max-width: 800px; }
.prose-body { font-size: 1.05rem; }
.prose-body h3 { margin-top: 1.75rem; }
.prose-body ul, .prose-body ol { padding-left: 1.25rem; }
.prose-body table.fees { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem; }
.prose-body table.fees th, .prose-body table.fees td {
    border: 1px solid var(--line);
    padding: 0.5rem 0.65rem;
    text-align: left;
}
.prose-body table.fees thead { background: var(--paper); }
.tagline-sw { font-style: italic; color: var(--green-mid); }

.with-founder-photo {
    max-width: 960px;
    display: grid;
    grid-template-columns: min(280px, 100%) 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 720px) {
    .with-founder-photo { grid-template-columns: 1fr; }
}
.founder-photo {
    margin: 0;
}
.founder-photo img {
    width: 100%;
    border-radius: 8px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.download-list { list-style: none; padding: 0; }
.download-list li { margin: 0.65rem 0; }
.download-list a { font-weight: 600; font-size: 1.05rem; }

.stack-form label { display: block; margin-bottom: 1rem; font-weight: 600; }
.stack-form input, .stack-form textarea {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    font: inherit;
    background: #fff;
}
.error { color: #8b1a1a; font-weight: 600; }
.success { color: var(--green-mid); font-weight: 600; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.contact-card.wide { grid-column: 1 / -1; }
.contact-card h2 { margin-top: 0; font-size: 1.2rem; }
.social-large { list-style: none; padding: 0; margin: 0; }
.social-large li { margin: 0.5rem 0; }

.site-footer {
    background: #ffffff;
    color: var(--ink);
    padding: 3rem 0 1rem;
    margin-top: 2rem;
    border-top: 4px solid var(--gold);
    box-shadow: 0 -8px 32px rgba(15, 61, 46, 0.05);
}
.site-footer:not(.site-footer--pro) h3 { color: var(--green-deep); font-size: 1.15rem; margin-top: 0; }
.site-footer:not(.site-footer--pro) a { color: var(--green-mid); }
.site-footer:not(.site-footer--pro) a:hover { color: var(--gold-deep); }
.footer-grid {
    width: min(1120px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0.35rem 0; }
.social { list-style: none; padding: 0; margin: 0; }
.social li { margin: 0.35rem 0; }
.reg { font-size: 0.9rem; opacity: 0.9; }
.fine-print { font-size: 0.8rem; opacity: 0.75; }
.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 2rem;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.wa-widget {
    position: fixed;
    z-index: 9998;
    right: 1.15rem;
    bottom: 1.15rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-widget:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}
.wa-widget:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}
.wa-widget-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: wa-pulse 2s ease-out infinite;
    opacity: 0.45;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.45; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}
.wa-widget-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin */
.admin-wrap { max-width: 900px; margin: 2rem auto; padding: 0 1rem; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-table th, .admin-table td { border: 1px solid #ddd; padding: 0.5rem 0.65rem; text-align: left; }
.admin-form label { display: block; margin: 1rem 0; }
.admin-form textarea { width: 100%; min-height: 200px; font-family: ui-monospace, monospace; font-size: 0.9rem; }
.admin-nav { margin-bottom: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.admin-hint { color: var(--muted); font-size: 0.95rem; max-width: 52rem; }
.admin-hint code { font-size: 0.88rem; }

.upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
    padding: 1.25rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.file-label span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.file-label input[type="file"] {
    max-width: 100%;
}
.admin-uploads-table .td-thumb {
    width: 88px;
}
.admin-uploads-table .td-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--line);
}
.url-copy {
    width: 100%;
    max-width: 420px;
    font-size: 0.82rem;
    font-family: ui-monospace, monospace;
}

/* ========= FirstDrivingCentre-inspired layout (original Farmcart branding, TZ copy) ========= */
.fdc-topbar {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fdc-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0.4rem 0;
}
.fdc-topbar-item { display: inline-flex; align-items: center; gap: 0.35rem; }
.fdc-topbar-item svg { opacity: 0.85; }
.fdc-topbar a { color: #fff; text-decoration: none; }
.fdc-topbar a:hover { text-decoration: underline; color: var(--gold-light); }
.fdc-topbar-sep { opacity: 0.35; }

body.fdc-site .site-header--fdc {
    position: relative;
    top: auto;
    z-index: 1;
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}
body.fdc-site .site-header--fdc .header-inner {
    padding: 0.5rem 0;
    align-items: center;
}
body.fdc-site .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site .site-header--fdc .nav-dropdown-trigger,
body.fdc-site .site-header--fdc .nav-dropdown-trigger span {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 500;
}
body.fdc-site .site-header--fdc .nav-dropdown-chevron {
    color: var(--green-deep);
}
body.fdc-site .site-header--fdc .primary-nav > ul > li > a:hover,
body.fdc-site .site-header--fdc .nav-dropdown-trigger:hover,
body.fdc-site .site-header--fdc .nav-dropdown-trigger:hover span {
    color: var(--green-accent);
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger span,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-chevron {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a:hover,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger:hover,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger:hover span {
    color: var(--gold-light);
}
body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a,
body.page-home:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger,
body.page-home:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger span,
body.page-home:not(.is-header-solid) .site-header--fdc .nav-dropdown-chevron {
    color: #ffffff;
}
body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a:hover,
body.page-home:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger:hover,
body.page-home:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger:hover span {
    color: var(--gold-light);
}
body.fdc-site .site-header--fdc .nav-dropdown-menu a {
    color: #fff;
    text-shadow: none;
}
body.fdc-site .site-header--fdc .nav-dropdown-menu a:hover,
body.fdc-site .site-header--fdc .nav-dropdown-menu a[aria-current="page"] {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}
body.fdc-site .site-header--fdc .lang-switch a { color: rgba(255, 255, 255, 0.75); }
body.fdc-site .site-header--fdc .lang-switch a.is-active { color: var(--gold); }
body.fdc-site .site-header--fdc .lang-switch .sep { color: rgba(255, 255, 255, 0.35); }
body.fdc-site .site-header--fdc .nav-toggle {
    background: var(--green-surface);
    border-color: rgba(30, 107, 82, 0.22);
    color: var(--black);
}
body.page-home:not(.is-header-solid) .site-header--fdc .nav-toggle {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}
body.fdc-site .site-header--fdc .primary-nav.is-open,
body.fdc-site .site-header--fdc .primary-nav {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.brand--fdc {
    align-items: center;
    gap: 0.85rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.brand--fdc:hover {
    box-shadow: none;
    transform: none;
    opacity: 0.9;
}
.brand-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    width: clamp(100px, 14vw, 132px);
    height: clamp(100px, 14vw, 132px);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
.brand-logo-frame .brand-logo-img,
.brand-logo-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}
@media (max-width: 720px) {
    .brand-logo-frame {
        width: clamp(88px, 22vw, 112px);
        height: clamp(88px, 22vw, 112px);
    }
}
body.fdc-site .brand-name {
    color: var(--green-deep) !important;
    font-size: 2.25rem;
    letter-spacing: 0.02em;
    text-shadow: none;
}
body.fdc-site .brand-sub {
    color: var(--green-deep) !important;
    opacity: 0.88;
    font-size: 1.12rem;
    letter-spacing: 0.14em;
    text-shadow: none;
}

/* Home — transparent floating header over hero */
body.page-home .site-masthead--home-float {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
body.page-home .site-header--fdc.site-header--home {
    background: transparent !important;
}
body.page-home .header-inner--home-float {
    position: relative;
    max-width: min(1180px, 94vw);
    margin: 0.55rem auto 0;
    padding: 0.5rem 0.85rem 0.5rem 1rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease;
}
body.page-home .brand--fdc-float {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
body.page-home .brand--fdc-float {
    padding: 0;
    border-radius: 0;
}
body.page-home .brand--fdc-float .brand-logo-frame {
    width: clamp(92px, 16vw, 124px);
    height: clamp(92px, 16vw, 124px);
    box-shadow: none;
}
body.page-home .brand--fdc-float .brand-name,
body.page-home.is-header-solid .brand--fdc-float .brand-name {
    color: var(--green-deep) !important;
    text-shadow: none;
    font-family: var(--font-sans);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
}
body.page-home:not(.is-header-solid) .brand--fdc-float .brand-name {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    font-family: var(--font-sans);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
}
body.page-home .brand--fdc-float .brand-sub,
body.page-home.is-header-solid .brand--fdc-float .brand-sub {
    color: var(--green-deep) !important;
    opacity: 0.88;
    text-shadow: none;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}
body.page-home:not(.is-header-solid) .brand--fdc-float .brand-sub {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}
body.page-home .primary-nav--home-float {
    flex: 1 1 auto;
    min-width: min(100%, 18rem);
    margin-left: auto;
}
body.page-home .primary-nav--home-float > ul {
    justify-content: center;
    gap: 0.15rem 0.65rem;
}
body.page-home:not(.is-header-solid) .primary-nav--home-float > ul > li > a,
body.page-home:not(.is-header-solid) .primary-nav--home-float .nav-dropdown-trigger,
body.page-home:not(.is-header-solid) .primary-nav--home-float .nav-dropdown-trigger span {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    font-size: 0.8rem;
    font-weight: 500;
}
body.page-home:not(.is-header-solid) .primary-nav--home-float > ul > li > a:hover,
body.page-home:not(.is-header-solid) .primary-nav--home-float .nav-dropdown-trigger:hover {
    color: var(--gold-light) !important;
}
body.page-home:not(.is-header-solid) .primary-nav--home-float > ul > li > a[aria-current="page"] {
    color: var(--gold-light) !important;
    font-weight: 600;
}
body.page-home.is-header-solid .primary-nav--home-float > ul > li > a,
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-trigger,
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-trigger span {
    color: var(--black) !important;
    text-shadow: none;
    font-size: 0.8rem;
    font-weight: 500;
}
body.page-home.is-header-solid .primary-nav--home-float > ul > li > a:hover,
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-trigger:hover {
    color: var(--green-accent) !important;
}
body.page-home.is-header-solid .primary-nav--home-float > ul > li > a[aria-current="page"] {
    color: var(--green-deep) !important;
    font-weight: 600;
}
body.page-home .primary-nav--home-float > ul > li > a[aria-current="page"]::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 0.35rem;
    vertical-align: middle;
}
body.page-home:not(.is-header-solid) .primary-nav--home-float .nav-dropdown-chevron {
    color: #ffffff !important;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
}
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-chevron {
    color: var(--black) !important;
}
body.page-home .header-tools--home-float {
    margin-left: 0;
    flex-shrink: 0;
}
body.page-home .btn-register-float {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    border-radius: 6px;
    white-space: nowrap;
}
body.page-home:not(.is-header-solid) .site-header--home .nav-toggle {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}
body.page-home.is-header-solid .site-header--home .nav-toggle {
    margin-left: auto;
    background: var(--green-surface);
    border-color: rgba(30, 107, 82, 0.25);
    color: var(--black);
}
body.page-home .lang-float--home {
    top: max(0.45rem, env(safe-area-inset-top, 0px));
    right: max(0.45rem, env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 500;
}
body.page-home .hero--premium {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding-top: 0;
    box-sizing: border-box;
}
body.page-home .hero--premium .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.65) 100%
    );
}
body.page-home .hero-content--premium {
    position: relative;
    z-index: 5;
    width: min(100%, 44rem);
    margin: 0 auto;
    padding: 5.25rem 1.15rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.page-home .hero-badge {
    display: inline-block;
    margin: 0 0 1.1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
body.page-home .hero-headline {
    margin: 0 0 0.85rem;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}
body.page-home .hero-headline__lead {
    display: block;
    font-size: clamp(1.85rem, 5vw, 3.15rem);
    font-weight: 700;
}
body.page-home .hero-headline__accent {
    display: block;
    font-size: clamp(1.85rem, 5vw, 3.15rem);
    color: var(--gold-light);
}
body.page-home .hero-headline--single {
    font-size: clamp(1.5rem, 4.2vw, 2.5rem);
    max-width: 18ch;
}
body.page-home .hero-sub--premium {
    margin: 0 auto 1.35rem;
    max-width: 36rem;
    font-size: clamp(0.95rem, 1.9vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    opacity: 1;
}
body.page-home .hero-cta--premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}
body.page-home .btn-hero-primary {
    padding: 0.75rem 1.35rem;
    font-size: 0.95rem;
    border-radius: 6px;
}
body.page-home .btn-hero-ghost {
    display: inline-block;
    padding: 0.72rem 1.25rem;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}
body.page-home .btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}
body.page-home .hero-trust-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
}
body.page-home .hero-trust-stats li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
body.page-home .hero-trust-stats__check {
    color: var(--gold);
    font-weight: 700;
}
body.page-home .hero-trust-stats strong {
    font-weight: 700;
    color: #fff;
}
body.page-home .hero-scroll-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.2s ease;
}
body.page-home .hero-scroll-label:hover {
    color: var(--gold-light);
}
body.page-home .hero-stat-bubbles {
    display: none !important;
}
body.page-home.is-header-solid .site-masthead--home-float {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--line);
}
body.page-home.is-header-solid .header-inner--home-float {
    background: transparent;
    box-shadow: none;
}
body.page-home.is-header-solid {
    padding-top: 0;
}
@media (max-width: 1100px) {
    body.page-home .primary-nav--home-float {
        display: none;
        width: 100%;
        order: 4;
    }
    body.page-home .primary-nav--home-float.is-open {
        display: block;
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 0.5rem;
    }
    body.page-home .primary-nav--home-float.is-open > ul {
        flex-direction: column;
        align-items: stretch;
    }
    body.page-home .primary-nav--home-float.is-open .nav-dropdown-menu {
        position: static;
        background: #fff;
        border: 1px solid #e0e8e4;
        box-shadow: none;
    }
    body.page-home .primary-nav--home-float.is-open .nav-dropdown-menu a {
        color: var(--ink) !important;
    }
    body.page-home .header-inner--home-float {
        padding-right: 5.75rem;
    }
    body.page-home .site-header--home .nav-toggle {
        margin-right: 0.15rem;
    }
}
@media (max-width: 720px) {
    body.page-home .hero-content--premium {
        padding-top: 4.75rem;
    }
    body.page-home .hero-cta--premium .btn {
        width: 100%;
        max-width: 16rem;
    }
    body.page-home .hero-trust-stats {
        flex-direction: column;
        gap: 0.4rem;
    }
    body.page-home .lang-float--home,
    .lang-float {
        top: max(0.35rem, env(safe-area-inset-top, 0px));
        right: max(0.35rem, env(safe-area-inset-right, 0px));
    }
    body.page-home .brand--fdc-float .brand-logo-frame {
        width: clamp(88px, 22vw, 112px);
        height: clamp(88px, 22vw, 112px);
    }
    body.page-home .brand--fdc-float .brand-name,
    body.page-home.is-header-solid .brand--fdc-float .brand-name {
        font-size: 1.5rem !important;
    }
    body.page-home .brand--fdc-float .brand-sub,
    body.page-home.is-header-solid .brand--fdc-float .brand-sub {
        font-size: 0.95rem !important;
    }
}

.hero--fdc .hero-overlay {
    background: linear-gradient(185deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 38%, rgba(8, 22, 18, 0.88) 100%);
}
.hero--fdc .hero-content { padding-bottom: 5.5rem; }

/* Site-wide frosted glass masthead (semi-transparent) */
body.fdc-site .site-masthead {
    z-index: 300;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
body.fdc-site:not(.has-hero-header) .site-masthead--glass {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 24px rgba(15, 61, 46, 0.06);
}
body.fdc-site .site-masthead--glass .fdc-topbar,
body.fdc-site .site-masthead--glass .site-header--fdc {
    background: transparent !important;
}

/* Home: header over landing photo — fully clear until scroll */
body.page-home .site-masthead--over-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
body.page-home .site-masthead--over-hero .fdc-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
body.page-home .site-masthead--over-hero .primary-nav > ul > li > a,
body.page-home .site-masthead--over-hero .nav-dropdown-trigger,
body.page-home .site-masthead--over-hero .brand-name,
body.page-home .site-masthead--over-hero .brand-sub,
body.page-home .site-masthead--over-hero .fdc-topbar {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
body.page-home .site-masthead--over-hero .nav-dropdown-trigger,
body.page-home .site-masthead--over-hero .nav-dropdown-trigger span,
body.page-home .site-masthead--over-hero .nav-dropdown-chevron {
    color: #fff;
}
body.page-home.is-header-solid .nav-dropdown-trigger,
body.page-home.is-header-solid .nav-dropdown-trigger span,
body.page-home.is-header-solid .nav-dropdown-chevron {
    color: var(--black) !important;
    text-shadow: none;
}
body.page-home .hero--fullscreen {
    min-height: 100vh;
    min-height: 100dvh;
}
body.page-home .hero--fullscreen .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.48) 40%,
        rgba(0, 0, 0, 0.58) 70%,
        rgba(8, 22, 18, 0.92) 100%
    );
}
/* Home after scroll: same frosted glass as rest of site */
body.page-home.is-header-solid .site-masthead--over-hero {
    position: fixed;
    background: rgba(10, 18, 16, 0.38);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
body.page-home.is-header-solid .site-masthead--over-hero .fdc-topbar {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.page-home.is-header-solid .primary-nav > ul > li > a,
body.page-home.is-header-solid .brand-name,
body.page-home.is-header-solid .brand-sub,
body.page-home.is-header-solid .fdc-topbar {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
body.page-home.is-header-solid {
    padding-top: 0;
}

@media (max-width: 1100px) {
    body.fdc-site .site-masthead .primary-nav.is-open {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    body.fdc-site .site-masthead .primary-nav.is-open a,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger span {
        color: var(--ink) !important;
        text-shadow: none;
    }
}

.fdc-section-muted { background: var(--green-surface); border-color: rgba(30, 107, 82, 0.2); }
body.fdc-site .card {
    border-radius: 14px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 10px 36px rgba(10, 24, 20, 0.08);
    background: #fff;
}
body.fdc-site .card-course a { color: var(--green-accent); }

.section-apart { overflow: hidden; }

.feature-carousel {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.5rem;
}
.feature-carousel__viewport {
    flex: 1;
    min-width: 0;
    outline: none;
    overflow: hidden;
    container-type: inline-size;
}
.feature-carousel__viewport:focus-visible {
    box-shadow: 0 0 0 2px var(--gold-light), 0 0 0 4px rgba(201, 162, 39, 0.35);
    border-radius: 12px;
}
.feature-carousel__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.35rem 0.15rem 1rem;
}
.feature-carousel__track::-webkit-scrollbar { display: none; }
.feature-carousel__track .feature {
    flex: 0 0 calc((100cqi - 2.5rem) / 3);
    max-width: calc((100cqi - 2.5rem) / 3);
    scroll-snap-align: start;
}
.feature-carousel__btn {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(10, 31, 24, 0.12);
    background: #fff;
    color: var(--green-deep);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(10, 24, 20, 0.08);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.feature-carousel__btn:hover {
    background: var(--green-deep);
    color: #fff;
    border-color: var(--green-deep);
}
.feature-carousel__btn:active { transform: scale(0.96); }
.feature-carousel__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}
.feature-carousel__btn:disabled:hover {
    background: #fff;
    color: var(--green-deep);
    border-color: rgba(10, 31, 24, 0.12);
}

body.fdc-site .feature-carousel .feature {
    position: relative;
    border-left: none;
    padding: 1.35rem 1.25rem 1.35rem 4.25rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 6px 24px rgba(10, 24, 20, 0.06);
    margin: 0;
}
body.fdc-site .feature-carousel .feature p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
    color: var(--green-deep);
}
body.fdc-site .feature-carousel .feature::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.35rem;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
body.fdc-site .feature-carousel .feature::after {
    content: var(--feature-icon, "✓");
    position: absolute;
    left: 1.42rem;
    top: 1.4rem;
    font-size: 1rem;
    color: var(--green-deep);
    font-weight: 800;
    line-height: 1;
}

@container (max-width: 960px) {
    .feature-carousel__track .feature {
        flex: 0 0 calc((100cqi - 1.25rem) / 2);
        max-width: calc((100cqi - 1.25rem) / 2);
    }
}
@media (max-width: 640px) {
    .feature-carousel {
        gap: 0.4rem;
    }
    .feature-carousel__btn {
        width: 2.4rem;
        height: 2.4rem;
    }
}
@container (max-width: 560px) {
    .feature-carousel__track .feature {
        flex: 0 0 86cqi;
        max-width: 86cqi;
    }
}

.page-hero--inner.fdc-inner-hero {
    padding: 3.25rem 0 3.5rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
    color: var(--ink);
}
.page-hero--inner.fdc-inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 85% 15%, rgba(245, 230, 168, 0.35), transparent 58%);
    pointer-events: none;
}
.page-hero--inner.fdc-inner-hero .inner { position: relative; z-index: 1; }
.page-hero--inner.fdc-inner-hero h1 { color: var(--black); }
.page-hero--inner.fdc-inner-hero .lead { color: var(--muted); opacity: 1; }
.fdc-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
    color: var(--gold-deep);
    margin: 0 0 0.6rem;
    font-weight: 700;
}
.page-hero--inner.fdc-inner-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    max-width: 18ch;
}
.page-hero--inner.fdc-inner-hero .lead { max-width: 40rem; }

.fdc-hub-section .section-title { margin-bottom: 2rem; }
.fdc-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.fdc-hub-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(10, 24, 20, 0.07);
    text-align: center;
}
.fdc-hub-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    line-height: 1;
}
.fdc-hub-card h3 { margin-top: 0; font-size: 1.1rem; }
.fdc-hub-cta-wrap { text-align: center; margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Road safety — large visuals & readable text */
.inner--wide {
    width: min(1280px, 96vw);
}
.road-safety-intro { padding: 0; }
.section-title--left { text-align: left; max-width: none; }
.section-title--large {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    margin-bottom: 1.25rem;
}
.road-safety-banner {
    position: relative;
    min-height: clamp(280px, 42vw, 480px);
    overflow: hidden;
}
.road-safety-banner img {
    width: 100%;
    height: 100%;
    min-height: clamp(280px, 42vw, 480px);
    object-fit: cover;
    display: block;
}
.road-safety-banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(10, 24, 20, 0.15) 0%, rgba(10, 24, 20, 0.88) 72%);
    padding: 2.5rem 0 3rem;
}
.road-safety-banner__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #fff;
    max-width: 20ch;
    line-height: 1.15;
}
.road-safety-banner__lead {
    margin: 0;
    max-width: 52rem;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}
.road-safety-lead {
    max-width: 52rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}
.road-safety-cards-section { padding-top: 3rem; padding-bottom: 3.5rem; }
.safety-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0.75rem;
}
.safety-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 12px 40px rgba(10, 24, 20, 0.09);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.safety-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(10, 24, 20, 0.12);
}
.safety-card__media {
    margin: 0;
    aspect-ratio: 16 / 10;
    min-height: 240px;
    max-height: 360px;
    background: linear-gradient(145deg, #d4e8f5, #e8eeeb);
    overflow: hidden;
}
.safety-card__media .safety-illustration {
    display: block;
    width: 100%;
    height: 100%;
}
.safety-card__content {
    padding: 1.75rem 1.65rem 1.65rem;
}
.safety-card__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    color: var(--green-deep);
    line-height: 1.25;
    font-family: var(--font-serif);
}
.safety-card__body {
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: var(--ink);
}
.safety-card__list {
    margin: 1.1rem 0 0;
    padding-left: 1.35rem;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.65;
    color: var(--muted);
}
.safety-card__list li {
    margin-bottom: 0.5rem;
}
.safety-card__list li::marker {
    color: var(--gold);
}
.road-safety-footnote {
    margin: 2.5rem 0 0;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
}
.road-safety-footnote a {
    font-weight: 600;
    color: var(--green-accent);
}
.fdc-inner-hero--safety {
    background: linear-gradient(125deg, #0a1815 0%, #1a4a38 45%, #1e6b52 100%);
}
.fdc-inner-hero--safety .lead,
.lead--large {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    max-width: 44rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
    .safety-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.75rem;
    }
    .safety-card__media {
        min-height: 260px;
    }
}
@media (min-width: 1200px) {
    .safety-card__media {
        min-height: 280px;
        max-height: 400px;
    }
    .safety-card__content {
        padding: 2rem 1.85rem 1.85rem;
    }
}

.fdc-contact-section { padding-top: 2.5rem; }
.fdc-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.fdc-contact-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1.5rem 1.35rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 28px rgba(10, 24, 20, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fdc-contact-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(10, 24, 20, 0.1);
}
.fdc-contact-tile--static { cursor: default; }
.fdc-contact-tile--static:hover { transform: none; }
.fdc-contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: rgba(30, 107, 82, 0.12);
    color: var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}
.fdc-contact-icon--wa { background: rgba(37, 211, 102, 0.15); color: #128c7e; }
.fdc-contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }
.fdc-contact-value { font-size: 1.05rem; font-weight: 600; color: var(--green-deep); word-break: break-word; }
.fdc-contact-meta { font-size: 0.9rem; color: var(--muted); }
.fdc-contact-secondary {
    margin-top: 2.75rem;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(10, 24, 20, 0.05);
}
.fdc-contact-secondary h2 { margin-top: 0; font-size: 1.25rem; }
.fdc-contact-secondary-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2.5rem;
}
.fdc-contact-md p { margin: 0.35rem 0; }

.fdc-social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.65rem;
}
.fdc-social-icons a:not(.fdc-social-icons__link) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.15s ease, color 0.15s ease;
}
.fdc-social-icons a:not(.fdc-social-icons__link):hover {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}
body.fdc-site .fdc-contact-secondary .fdc-social-icons a:not(.fdc-social-icons__link) {
    background: rgba(30, 107, 82, 0.1);
    color: var(--green-deep);
    border-color: rgba(30, 107, 82, 0.15);
}
body.fdc-site .fdc-contact-secondary .fdc-social-icons a:not(.fdc-social-icons__link):hover {
    background: var(--gold);
    color: var(--green-deep);
}

body.fdc-site .site-footer {
    background: #050807;
    border-top: none;
}
body.fdc-site .site-footer--pro {
    padding: 0;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.82);
}
body.fdc-site .site-footer a { color: rgba(255, 255, 255, 0.88); }
body.fdc-site .site-footer a:hover { color: #fff; }

/* Pro footer */
.footer-connect {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 55%, #0a1815 100%);
    padding: 2.75rem 0 2.5rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.footer-connect__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    color: #fff;
    font-weight: 600;
}
.footer-connect__sub {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
}
.footer-connect .fdc-social-icons {
    justify-content: center;
    margin: 0;
}
.footer-connect .fdc-social-icons a,
.footer-connect .fdc-social-icons__link {
    width: 52px;
    height: 52px;
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.footer-connect .fdc-social-icons__link--fb { background: #1877f2; }
.footer-connect .fdc-social-icons__link--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-connect .fdc-social-icons__link--wa { background: #25d366; }
.footer-connect .fdc-social-icons__link--in { background: #0a66c2; }
.footer-connect .fdc-social-icons a:hover,
.footer-connect .fdc-social-icons__link:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.site-footer--no-connect .footer-contact-bar {
    border-top: 3px solid var(--gold);
}
.footer-contact-bar {
    background: #0a0f0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
}
.footer-contact-bar__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}
.footer-contact-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    gap: 0.35rem;
    transition: color 0.2s ease;
}
.footer-contact-bar__item:hover { color: #fff; }
.footer-contact-bar__icon {
    color: var(--gold-light);
    display: flex;
}
.footer-contact-bar__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}
.footer-contact-bar__value {
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
}

.footer-main {
    padding: 2.75rem 0 2rem;
    background: var(--black-shine);
    color: rgba(255, 255, 255, 0.88);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.footer-main__grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
}
.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.footer-brand__logo .brand-logo-frame--footer {
    width: clamp(112px, 28vw, 152px);
    height: clamp(112px, 28vw, 152px);
    border-radius: 0;
    background: transparent;
}
.footer-brand__logo .brand-logo-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.footer-brand__name {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-deep);
    background: var(--gradient-gold);
    border: 1px solid rgba(184, 148, 31, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.footer-brand__reg,
.footer-brand__copy {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.footer-col__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.site-footer--pro .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer--pro .footer-links li { margin: 0.4rem 0; }
.site-footer--pro .footer-links a {
    font-size: 0.92rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
}
.site-footer--pro .footer-links a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}
.site-footer--pro .footer-follow a {
    color: rgba(255, 255, 255, 0.9);
}
.site-footer--pro .footer-follow a:hover {
    color: var(--gold-light);
}

.footer-follow {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-follow li { margin: 0.45rem 0; }
.footer-follow a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
}
.footer-follow__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-follow__icon--fb { background: #1877f2; color: #fff; }
.footer-follow__icon--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.footer-follow__icon--wa { background: #25d366; color: #fff; }
.footer-follow__icon--in { background: #0a66c2; color: #fff; }

.footer-director {
    background: #030504;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
}
.footer-director__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    font-size: 0.9rem;
}
.footer-director__name {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}
.footer-director__contact {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}
.footer-director__contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}
.footer-director__contact a:hover { color: #fff; text-decoration: underline; }
.footer-director__sep { margin: 0 0.35rem; opacity: 0.5; }

.footer-credits {
    background: #020302;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.65rem 0;
}
.footer-credits__inner {
    text-align: center;
}
.footer-credits__text {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}
.footer-credits__text strong {
    color: rgba(201, 162, 39, 0.95);
    font-weight: 600;
}

.phone-widget {
    position: fixed;
    z-index: 9998;
    right: 1.15rem;
    bottom: 5.35rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.phone-widget:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}
.phone-widget:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .footer-main__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .footer-brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 1rem;
        align-items: start;
    }
    .footer-brand__logo { grid-row: 1 / 3; }
}
@media (max-width: 768px) {
    .footer-contact-bar__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .footer-main__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-director__inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .phone-widget { bottom: 5rem; }
}
@media (max-width: 480px) {
    .footer-main__grid { grid-template-columns: 1fr; }
}

body.fdc-site .hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}
body.fdc-site .hero .btn-outline:hover {
    background: #fff;
    color: var(--green-deep);
}

/* Traffic signs — pictorial gallery */
.sign-category { padding: 3rem 0 3.5rem; }
.sign-category-head { margin-bottom: 2rem; text-align: center; }
.sign-category-head .section-title { margin-bottom: 0.5rem; }
.sign-category-intro {
    margin: 0 auto;
    max-width: 40rem;
    color: var(--muted);
    font-size: 1rem;
}
.sign-pictorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}
.sign-pictorial-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 1rem 0.85rem 1.1rem;
    text-align: center;
    box-shadow: 0 6px 22px rgba(10, 24, 20, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sign-pictorial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10, 24, 20, 0.1);
}
.sign-pictorial-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    margin-bottom: 0.65rem;
    padding: 0.5rem;
    background: linear-gradient(180deg, #f4f7f5 0%, #e8eeeb 100%);
    border-radius: 10px;
}
.sign-pictorial-visual svg {
    max-width: 100%;
    height: auto;
}
.sign-pictorial-name {
    margin: 0 0 0.35rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.25;
}
.sign-pictorial-detail {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--muted);
}
.fdc-hub-section--compact { padding: 2.5rem 0; }
.fdc-hub-grid--nav { margin-bottom: 0; }
.fdc-hub-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fdc-hub-card--link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 24, 20, 0.12);
}
.fdc-hub-card--link h3 { color: var(--green-deep); }
.sign-gallery-cta { padding: 2rem 0 4rem; }

.awareness-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 56rem;
    margin: 0 auto;
}
.awareness-hub-card {
    text-align: left;
    padding: 1.75rem 1.5rem;
}
.awareness-hub-card p {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
}
.awareness-hub-card__cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-accent);
}
.fdc-hub-icon--safety { background: rgba(30, 107, 82, 0.12); }
.fdc-hub-icon--signs { background: rgba(201, 162, 39, 0.18); }

.awareness-subnav {
    background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-mid) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(10, 31, 24, 0.12);
}
.awareness-subnav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    padding: 0.65rem 0;
}
.awareness-subnav__link {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    transition: background 0.15s ease, color 0.15s ease;
}
.awareness-subnav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.awareness-subnav__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
@media (max-width: 640px) {
    .awareness-hub-grid { grid-template-columns: 1fr; }
    .awareness-subnav__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}

.fdc-map-section {
    padding: 0 0 4rem;
    background: var(--cream);
}
.fdc-map-section .section-title {
    margin-bottom: 1.25rem;
}
.fdc-map-wrap {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(10, 24, 20, 0.1);
    background: #e8eeeb;
    aspect-ratio: 16 / 9;
    max-height: 480px;
}
.fdc-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.fdc-map-actions {
    margin: 1rem 0 0;
    text-align: center;
}

/* Founder — luxury presentation */
body.page-founder {
    --luxury-serif: Arial, Helvetica, sans-serif;
    --luxury-gold: #d4af37;
    --luxury-champagne: #f7f3ea;
    --luxury-ink: #0c1412;
}
.founder-hero {
    position: relative;
    padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(3.5rem, 8vw, 5rem);
    background: linear-gradient(160deg, #060e0c 0%, #0f221c 38%, #163d32 72%, #1a4a3c 100%);
    color: #f5f0e6;
    overflow: hidden;
    text-align: center;
}
.founder-hero__ornament {
    position: absolute;
    width: clamp(120px, 18vw, 220px);
    height: clamp(120px, 18vw, 220px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
}
.founder-hero__ornament--tl {
    top: 1.5rem;
    left: 4%;
    border-right: none;
    border-bottom: none;
}
.founder-hero__ornament--br {
    bottom: 1.5rem;
    right: 4%;
    border-left: none;
    border-top: none;
}
.founder-hero__inner { position: relative; z-index: 1; }
.founder-eyebrow {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    font-weight: 600;
}
.founder-hero__name {
    margin: 0 0 0.65rem;
    font-family: var(--luxury-serif);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    letter-spacing: 0.03em;
}
.founder-hero__role {
    margin: 0 0 0.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(232, 212, 139, 0.95);
    letter-spacing: 0.04em;
}
.founder-hero__tagline {
    margin: 0;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(245, 240, 230, 0.72);
    font-style: italic;
}
.founder-hero__rule {
    display: flex;
    justify-content: center;
    margin: 2rem auto 0;
    max-width: 200px;
}
.founder-hero__rule span {
    display: block;
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}
.founder-hero__rule--center { margin-top: 1.25rem; }

.founder-luxury { padding: clamp(3rem, 7vw, 5rem) 0; }
.founder-luxury--intro {
    background: var(--luxury-champagne);
}
.founder-luxury__grid {
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
@media (max-width: 900px) {
    .founder-luxury__grid { grid-template-columns: 1fr; }
}
.founder-portrait { margin: 0; text-align: center; }
.founder-portrait__frame {
    position: relative;
    padding: 0.65rem;
    background: linear-gradient(145deg, var(--luxury-gold), #8b6914 55%, var(--luxury-gold));
    box-shadow: 0 24px 60px rgba(12, 20, 18, 0.22);
}
.founder-portrait__frame::before {
    content: "";
    position: absolute;
    inset: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 1;
}
.founder-portrait__frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}
.founder-portrait__caption {
    margin: 1rem 0 0;
    font-family: var(--luxury-serif);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--luxury-ink);
    opacity: 0.75;
}
.founder-section-label {
    margin: 0 0 1.25rem;
    font-family: var(--luxury-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 0.04em;
}
.founder-section-label--light { color: var(--luxury-gold); }
.founder-section-label--center { text-align: center; }
.founder-story__p {
    margin: 0 0 1.15rem;
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    line-height: 1.8;
    color: #2a3530;
}
.founder-story__p:last-child { margin-bottom: 0; }

.founder-luxury--dark {
    background: linear-gradient(165deg, #060e0c, #0f221c 50%, #143528);
    color: #f0ebe0;
}
.founder-luxury__head { text-align: center; margin-bottom: 2.5rem; }
.founder-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.founder-pillar {
    padding: 1.75rem 1.35rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 4px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.founder-pillar:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
}
.founder-pillar__icon {
    display: block;
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 0.85rem;
}
.founder-pillar p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(245, 240, 230, 0.9);
}

.founder-luxury--cream {
    background: linear-gradient(180deg, #fff 0%, var(--luxury-champagne) 100%);
}
.founder-vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}
@media (max-width: 720px) {
    .founder-vm-grid { grid-template-columns: 1fr; }
}
.founder-vm-card {
    padding: 2.25rem 2rem;
    background: #fff;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 16px 48px rgba(10, 24, 20, 0.08);
    position: relative;
}
.founder-vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.founder-vm-card--accent {
    background: linear-gradient(145deg, #0f221c, #1a4a3c);
    color: #f5f0e6;
    border-color: rgba(212, 175, 55, 0.25);
}
.founder-vm-card--accent::before {
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}
.founder-vm-card__label {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}
.founder-vm-card--accent .founder-vm-card__label { color: var(--luxury-gold); }
.founder-vm-card__text {
    margin: 0;
    font-family: var(--luxury-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    line-height: 1.55;
    font-weight: 500;
}
.founder-vm-card--accent .founder-vm-card__text { color: #f5f0e6; }

.founder-luxury--values {
    background: #fff;
    text-align: center;
}
.founder-values {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    max-width: 900px;
    margin-inline: auto;
}
.founder-values li {
    padding: 0.65rem 1.35rem;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green-deep);
    border: 1px solid rgba(201, 162, 39, 0.45);
    background: var(--luxury-champagne);
}

.founder-luxury--quote {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(160deg, #0a1815, #143d30);
    text-align: center;
}
.founder-quote {
    margin: 0 auto;
    max-width: 44rem;
    padding: 0 1rem;
    border: none;
}
.founder-quote p {
    margin: 0 0 1.5rem;
    font-family: var(--luxury-serif);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.65;
    font-style: italic;
    color: #f5f0e6;
    font-weight: 500;
}
.founder-quote p::before {
    content: "“";
    display: block;
    font-size: 4rem;
    line-height: 1;
    color: var(--luxury-gold);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}
.founder-quote cite {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    font-style: normal;
}

.founder-luxury--contact {
    background: var(--luxury-champagne);
    padding-bottom: 4rem;
}
.founder-connect-icons {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    max-width: 720px;
    margin-inline: auto;
}
.founder-connect-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--green-deep);
    transition: transform 0.2s ease;
}
.founder-connect-icon:hover {
    transform: translateY(-4px);
    color: var(--green-deep);
}
.founder-connect-icon__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(10, 24, 20, 0.14);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.founder-connect-icon:hover .founder-connect-icon__circle {
    box-shadow: 0 14px 32px rgba(10, 24, 20, 0.2);
}
.founder-connect-icon__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.founder-connect-icon--linkedin .founder-connect-icon__circle { background: #0a66c2; }
.founder-connect-icon--instagram .founder-connect-icon__circle {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.founder-connect-icon--facebook .founder-connect-icon__circle { background: #1877f2; }
.founder-connect-icon--whatsapp .founder-connect-icon__circle { background: #25d366; }
.founder-connect-icon--email .founder-connect-icon__circle { background: #ea4335; }
.founder-connect-icon--phone .founder-connect-icon__circle { background: #128c7e; }
@media (max-width: 480px) {
    .founder-connect-icons { gap: 1.25rem 1.5rem; }
    .founder-connect-icon__circle {
        width: 3.75rem;
        height: 3.75rem;
    }
    .founder-connect-icon__circle svg {
        width: 24px;
        height: 24px;
    }
}

/* Director welcome note */
.founder-luxury--welcome {
    background: linear-gradient(180deg, #f7f3ea 0%, #fff 45%, #f4f8f6 100%);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.founder-welcome__head { text-align: center; margin-bottom: 2rem; }
.founder-welcome__slogan {
    margin: 0.75rem 0 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-style: italic;
    color: var(--green-deep);
    font-weight: 600;
}
.founder-welcome__letter {
    background: var(--paper);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 14px;
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: 0 12px 40px rgba(10, 31, 24, 0.08);
}
.founder-welcome__greeting {
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--green-deep);
}
.founder-welcome__p {
    margin: 0 0 1rem;
    line-height: 1.75;
    color: var(--ink);
}
.founder-welcome__ability {
    margin: 1.25rem 0;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #fff9e8 0%, #f4f8f6 100%);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
}
.founder-welcome__pillar {
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
}
.founder-welcome__pillar-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
}
.founder-welcome__why-title {
    margin: 1.75rem 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--green-deep);
}
.founder-welcome__closing { font-weight: 500; }
.founder-welcome__signoff {
    margin: 1.25rem 0 0;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-accent);
    font-size: 0.92rem;
}
.founder-welcome__signature {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.founder-welcome__sig-name {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--green-deep);
}
.founder-welcome__sig-role {
    margin: 0.25rem 0 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.founder-welcome__linkedin-btn { margin-top: 0.25rem; }

.director-welcome--teaser {
    padding: clamp(2rem, 5vw, 3rem) 0;
}
.director-welcome__teaser-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    align-items: center;
}
.director-welcome__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--green-accent);
}
.director-welcome__slogan {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    color: var(--green-deep);
    font-style: italic;
}
.director-welcome__teaser-text {
    margin: 0 0 1.25rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 42rem;
}
.director-welcome__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.director-welcome__teaser-aside {
    padding: 1.25rem 1.35rem;
    background: linear-gradient(160deg, var(--green-deep) 0%, #0d3d2e 100%);
    border-radius: 12px;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.35);
}
.director-welcome__aside-name {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
}
.director-welcome__aside-role {
    margin: 0.35rem 0 1rem;
    font-size: 0.88rem;
    opacity: 0.9;
    line-height: 1.45;
}
.director-welcome__aside-signoff {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}
@media (max-width: 768px) {
    .director-welcome__teaser-grid { grid-template-columns: 1fr; }
}

/* About Us — storytelling + classic structure (readable scale) */
.about-hero {
    padding-bottom: clamp(3.5rem, 8vw, 5rem);
}
.about-hero__inner {
    text-align: center;
    max-width: 48rem;
    margin-inline: auto;
}
.about-hero h1 {
    font-size: clamp(2.15rem, 5vw, 3.35rem);
    line-height: 1.12;
    max-width: 22ch;
    margin-inline: auto;
    color: #fff;
}
.about-hero__lead,
.about-hero__badge {
    color: #fff;
}
.about-eyebrow {
    margin: 0 0 1rem;
    font-size: clamp(0.78rem, 1.5vw, 0.9rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.about-hero__lead {
    margin: 1.25rem auto 0;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    line-height: 1.75;
    max-width: 44rem;
}
.about-hero__badge {
    margin: 1.75rem 0 0;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    letter-spacing: 0.06em;
}
.about-hero__badge strong {
    color: var(--gold-light);
    font-size: 1.08em;
}

.about-story {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: #fff;
}
.about-story .inner--wide {
    position: relative;
    max-width: 880px;
}
.about-story__timeline {
    position: absolute;
    left: 1.35rem;
    top: 0.5rem;
    bottom: 4rem;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), rgba(201, 162, 39, 0.15));
}
@media (max-width: 640px) {
    .about-story__timeline { left: 0.65rem; }
    .about-ps-grid { grid-template-columns: 1fr; }
}
.about-chapter {
    position: relative;
    padding: 0 0 3.5rem 4rem;
}
@media (max-width: 640px) {
    .about-chapter { padding-left: 2.5rem; }
}
.about-chapter:last-of-type { padding-bottom: 2.5rem; }
.about-chapter__head {
    display: flex;
    align-items: baseline;
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}
.about-chapter__num {
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    width: 2.75rem;
    margin-left: -4rem;
    text-align: right;
}
@media (max-width: 640px) {
    .about-chapter__num {
        margin-left: -2.5rem;
        width: 2rem;
        font-size: 1.4rem;
    }
}
.about-chapter__title {
    margin: 0;
    font-size: clamp(1.55rem, 3.2vw, 2.05rem);
    color: var(--green-deep);
    line-height: 1.25;
}
.about-chapter__p {
    margin: 0 0 1.2rem;
    font-size: clamp(1.1rem, 2vw, 1.22rem);
    line-height: 1.85;
    color: #2a3530;
}
.about-chapter__p--lead {
    font-size: clamp(1.18rem, 2.2vw, 1.32rem);
    color: var(--ink);
    font-weight: 500;
}
.about-chapter__p--lead::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 4.25rem;
    line-height: 0.82;
    padding: 0.1rem 0.55rem 0 0;
    color: var(--green-deep);
    font-weight: 700;
}
.about-pull-quote {
    margin: 3rem 0 0;
    padding: 2.25rem 2rem 2.25rem 2.5rem;
    border: none;
    border-left: 5px solid var(--gold);
    background: var(--luxury-champagne, #f7f3ea);
    border-radius: 0 14px 14px 0;
}
.about-pull-quote p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.6;
    font-style: italic;
    color: var(--green-deep);
}

.about-classic { padding: clamp(3.5rem, 7vw, 5rem) 0; }
.about-classic__head { margin-bottom: 2.25rem; max-width: 44rem; }
.about-classic__head--center { text-align: center; max-width: none; margin-inline: auto; }
.about-section-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 3.5vw, 2.45rem);
    color: var(--green-deep);
    line-height: 1.2;
}
.about-section-intro {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: var(--muted);
}
/* Problem → solution cards */
.about-classic--problems .about-section-intro {
    font-size: clamp(1.15rem, 2.1vw, 1.28rem);
    line-height: 1.75;
}
.about-ps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
}
.about-ps-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 10px 36px rgba(10, 24, 20, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-ps-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(10, 24, 20, 0.12);
}
.about-ps-card__visual {
    margin: 0;
    aspect-ratio: 16 / 10;
    min-height: 140px;
    max-height: 200px;
    overflow: hidden;
    background: #e8eeeb;
    border-bottom: 1px solid rgba(10, 31, 24, 0.06);
}
.about-ps-card__visual .about-ps-symbol {
    display: block;
    width: 100%;
    height: 100%;
}
.about-ps-card__problem,
.about-ps-card__solution {
    padding: 1.4rem 1.55rem;
}
.about-ps-card__problem {
    background: #faf8f5;
    border-bottom: 1px solid rgba(10, 31, 24, 0.06);
}
.about-ps-card__label {
    margin: 0 0 0.65rem;
    font-size: clamp(0.78rem, 1.4vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a63a32;
}
.about-ps-card__label--solution {
    color: var(--green-accent);
}
.about-ps-card__problem p,
.about-ps-card__solution p {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.22rem);
    line-height: 1.75;
    color: var(--ink);
}
.about-ps-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    background: linear-gradient(90deg, #faf8f5, #f0f7f4, #faf8f5);
}
.about-ps-card__solution {
    background: linear-gradient(180deg, #f4faf7 0%, #fff 100%);
    flex: 1;
}
.about-ps-card__solution p {
    color: #2a4038;
    font-size: clamp(1.1rem, 2vw, 1.22rem);
}
@media (min-width: 1000px) {
    .about-ps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-ps-card__visual {
        min-height: 160px;
    }
}
@media (max-width: 640px) {
    .about-ps-grid {
        grid-template-columns: 1fr;
    }
}

.about-goals-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
}
.about-goal-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.75rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 10px 36px rgba(10, 24, 20, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.about-goal-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(10, 24, 20, 0.12);
    border-color: rgba(201, 162, 39, 0.35);
}
.about-goal-icon-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    margin-bottom: 1.15rem;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(30, 107, 82, 0.12), rgba(30, 107, 82, 0.04));
    border: 1px solid rgba(30, 107, 82, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.about-goal-icon-card__text {
    margin: 0;
    font-size: clamp(1.05rem, 1.9vw, 1.15rem);
    line-height: 1.7;
    color: var(--ink);
    max-width: 28ch;
}
.about-classic--goals {
    background: linear-gradient(180deg, #fff 0%, var(--luxury-champagne, #f7f3ea) 100%);
}
@media (min-width: 1000px) {
    .about-goals-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .about-goals-icon-grid {
        grid-template-columns: 1fr;
    }
    .about-goal-icon-card {
        padding: 1.75rem 1.35rem 1.5rem;
    }
    .about-goal-icon-card__text {
        max-width: none;
    }
}

/* Why choose us — readable showcase (white / green / gold / black) */
.about-why-showcase {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 5.5rem);
    background: linear-gradient(180deg, #ffffff 0%, var(--green-surface) 50%, rgba(30, 107, 82, 0.2) 100%);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.about-why-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%);
    pointer-events: none;
}
.about-why-showcase .inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}
.about-why-showcase__title {
    margin: 0 0 2.75rem;
    text-align: center;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: 0.02em;
}
.about-why-showcase__title::after {
    content: "";
    display: block;
    width: 4rem;
    height: 3px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-why-carousel__viewport {
    overflow: hidden;
    margin: 0 -0.5rem;
}
.about-why-carousel__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-why-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.25rem;
    padding: 0 0.5rem;
    box-sizing: border-box;
}
.about-why-feature {
    text-align: center;
    padding: 0 0.5rem;
}
.about-why-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
    margin-bottom: 1.25rem;
}
.about-why-feature__icon svg {
    width: clamp(64px, 8vw, 80px);
    height: auto;
}
.about-why-feature__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.12rem, 2vw, 1.28rem);
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.35;
}
.about-why-feature__desc {
    margin: 0 auto;
    max-width: 24ch;
    font-size: clamp(1rem, 1.75vw, 1.12rem);
    line-height: 1.7;
    color: var(--muted);
}
.about-why-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2.5rem;
}
.about-why-dots__btn {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.about-why-dots__btn:hover {
    background: rgba(255, 255, 255, 0.5);
}
.about-why-dots__btn.is-active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
@media (max-width: 1024px) {
    .about-why-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
}
@media (max-width: 560px) {
    .about-why-slide {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    .about-why-feature__desc {
        max-width: 32ch;
    }
}

.about-visual-break {
    position: relative;
    min-height: 220px;
    max-height: 380px;
    overflow: hidden;
}
.about-visual-break img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}
.about-visual-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 20, 0.2), rgba(10, 24, 20, 0.55));
}

.about-promise {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--green-surface) 55%, rgba(30, 107, 82, 0.22) 100%);
    text-align: center;
    color: var(--ink);
}
.about-section-title--light { color: var(--text-strong); }
.about-promise__text {
    margin: 0 auto 1.75rem;
    max-width: 44rem;
    font-size: clamp(1.15rem, 2.2vw, 1.3rem);
    line-height: 1.8;
    opacity: 0.94;
}
.about-promise__tagline {
    margin: 0 auto 2.25rem;
    max-width: 40rem;
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.8vw, 1.65rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--gold-light);
}
.about-promise__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
body.page-about .about-promise__cta .btn {
    font-size: 1rem;
    padding: 0.85rem 1.65rem;
}
body.page-about .btn-light-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}
body.page-about .btn-light-outline:hover {
    background: #fff;
    color: var(--green-deep);
}

/* Courses & licences page */
.courses-services {
    background: #fff;
    padding-top: clamp(3rem, 7vw, 4.5rem);
    padding-bottom: clamp(3rem, 7vw, 4.5rem);
}
.courses-section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}
.courses-section-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    color: var(--green-deep);
}
.courses-section-intro {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    line-height: 1.7;
    color: var(--ink);
    font-weight: 500;
}
.courses-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.courses-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 1.65rem 1.5rem 1.5rem;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 8px 28px rgba(10, 31, 24, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.courses-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(10, 31, 24, 0.12);
}
.courses-service-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 14px;
    margin-bottom: 1.15rem;
}
.courses-service-card--green .courses-service-card__icon-wrap {
    background: rgba(30, 107, 82, 0.12);
    color: var(--green-accent);
}
.courses-service-card--blue .courses-service-card__icon-wrap {
    background: rgba(30, 90, 140, 0.1);
    color: #1e5a8c;
}
.courses-service-card--gold .courses-service-card__icon-wrap {
    background: rgba(201, 162, 39, 0.15);
    color: #9a7b1a;
}
.courses-service-card--teal .courses-service-card__icon-wrap {
    background: rgba(30, 107, 100, 0.12);
    color: #1a6b66;
}
.courses-service-card--orange .courses-service-card__icon-wrap {
    background: rgba(200, 90, 40, 0.12);
    color: #c45a1a;
}
.courses-service-card__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.12rem, 2vw, 1.28rem);
    color: var(--green-deep);
    line-height: 1.3;
}
.courses-service-card__subtitle {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-accent);
    letter-spacing: 0.02em;
}
.courses-service-card__desc {
    margin: 0 0 1.1rem;
    font-size: clamp(0.98rem, 1.6vw, 1.05rem);
    line-height: 1.65;
    color: var(--ink);
}
.courses-service-card__block {
    margin-bottom: 1rem;
}
.courses-service-card__label {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-family: var(--font-sans);
}
.courses-service-card__list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink);
}
.courses-service-card__list li + li {
    margin-top: 0.35rem;
}
.courses-service-card__list--available li::marker {
    color: var(--gold);
}
.courses-service-card__btn {
    margin-top: 0;
    align-self: auto;
    font-size: 0.92rem;
    padding: 0.7rem 1.25rem;
    flex-shrink: 0;
    border-radius: 8px;
    font-weight: 700;
}
.read-more--service-card {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}
.read-more--service-card .read-more__extra {
    margin-bottom: 0.85rem;
}
.read-more--service-card .read-more__extra .courses-service-card__block {
    margin-bottom: 0.85rem;
}
.read-more--service-card .read-more__extra .courses-service-card__block:last-child {
    margin-bottom: 0;
}
.courses-service-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-top: 0.35rem;
}
.courses-service-card__actions .read-more__toggle {
    margin: 0;
    flex-shrink: 0;
    border-radius: 8px;
    padding: 0.7rem 1.25rem;
    font-weight: 700;
    font-size: 0.92rem;
}
.courses-extras {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.courses-extras-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}
.courses-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    background: #fff;
    box-shadow: 0 4px 16px rgba(10, 31, 24, 0.05);
}
.courses-table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(0.98rem, 1.6vw, 1.05rem);
}
.courses-table th,
.courses-table td {
    padding: 0.85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(10, 31, 24, 0.06);
}
.courses-table th {
    background: var(--green-deep);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.courses-table tbody tr:last-child td {
    border-bottom: none;
}
.courses-table tbody tr:hover td {
    background: rgba(30, 107, 82, 0.04);
}
.courses-class-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    background: var(--green-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.courses-note {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}
.courses-payment-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 10px 32px rgba(201, 162, 39, 0.12);
    border-left: 4px solid var(--gold);
}
.courses-payment-card__icon {
    font-size: 2rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}
.courses-payment-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    color: var(--green-deep);
}
.courses-payment-card__lead {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--green-accent);
    line-height: 1.5;
}
.courses-payment-card__detail {
    margin: 0 0 1.25rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--muted);
}
.courses-payment-card__btn {
    font-size: 0.95rem;
}
/* ========= Course showcase cards + detail modal (Farmcart green / white / gold) ========= */
.courses-showcase {
    background: var(--cream);
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.courses-showcase-group + .courses-showcase-group {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(10, 31, 24, 0.08);
}
.courses-showcase-group__title { margin-bottom: 1.75rem; }
.courses-showcase-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.courses-showcase-footnote {
    margin-top: 2rem;
    max-width: 42rem;
}
.course-showcase-card {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 10px 32px rgba(10, 31, 24, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.course-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 31, 24, 0.12);
}
.course-showcase-card--featured {
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: 0 14px 40px rgba(201, 162, 39, 0.18);
    background: linear-gradient(180deg, #fffef8 0%, var(--paper) 35%);
}
.course-showcase-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--green-deep);
}
.course-showcase-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.course-showcase-card__duration {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green-deep);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.course-showcase-card__popular {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.course-showcase-card__corner-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green-accent), var(--green-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 107, 82, 0.45);
}
.course-showcase-card__body {
    padding: 1.15rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
}
.course-showcase-card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1.25;
    font-family: var(--font-serif);
}
.course-showcase-card__subtitle {
    margin: -0.35rem 0 0;
    font-size: 0.88rem;
    color: var(--green-accent);
    font-weight: 600;
}
.course-showcase-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.course-showcase-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.course-showcase-card__pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.course-showcase-card__pricing--single {
    grid-template-columns: 1fr;
}
.course-showcase-card__price {
    border-radius: 10px;
    padding: 0.65rem 0.5rem;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--paper);
}
.course-showcase-card__price--private {
    background: linear-gradient(180deg, #fffef8 0%, rgba(232, 212, 139, 0.2) 100%);
    border-color: rgba(201, 162, 39, 0.45);
}
.course-showcase-card__price-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.course-showcase-card__price--private .course-showcase-card__price-label {
    color: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}
.course-showcase-card__price--private .course-showcase-card__price-label svg {
    color: var(--gold);
}
.course-showcase-card__price-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1.1;
}
.course-showcase-card__price--ordinary .course-showcase-card__price-value {
    color: var(--green-accent);
}
.course-showcase-card__price--private .course-showcase-card__price-value {
    color: var(--green-deep);
}
.course-showcase-card__price-currency {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
}
.course-showcase-card__price-note {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-mid);
    text-align: center;
    padding: 0.5rem;
    background: rgba(232, 212, 139, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.35);
}
.course-showcase-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.35rem;
}
.course-showcase-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.course-showcase-card__btn--details {
    background: var(--paper);
    border: 2px solid var(--green-accent);
    color: var(--green-accent);
}
.course-showcase-card__btn--details:hover {
    background: rgba(30, 107, 82, 0.08);
    color: var(--green-deep);
    border-color: var(--green-deep);
}
.course-showcase-card__btn--enroll {
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    border: 2px solid #a8861a;
}
.course-showcase-card__btn--enroll:hover {
    filter: brightness(1.05);
    color: var(--green-deep);
    border-color: var(--gold);
}

/* Licence + banner media (green / gold / vehicle) */
.course-showcase-card__brand {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--green-deep);
    background: var(--gradient-gold);
    border-bottom: 1px solid rgba(184, 148, 31, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.course-showcase-card__brand-name {
    color: var(--green-deep);
    line-height: 1.3;
    font-weight: 800;
}
.course-showcase-card__brand-ref {
    color: rgba(15, 61, 46, 0.78);
    text-align: right;
    line-height: 1.3;
    flex-shrink: 0;
    font-weight: 700;
}
.course-showcase-card__media--banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    aspect-ratio: auto;
    min-height: 210px;
    background: linear-gradient(180deg, var(--green-deep) 0%, rgba(45, 154, 110, 0.35) 88%);
}
.course-showcase-card__media--banner .course-showcase-card__duration {
    z-index: 3;
}
.course-showcase-card__banner-green {
    margin: 0;
    padding: 0.55rem 0.7rem;
    background: var(--green-deep);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.02em;
}
.course-showcase-card__banner-gold {
    display: block;
    margin: 0.35rem auto 0.25rem;
    padding: 0.28rem 0.75rem;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    font-size: 0.66rem;
    font-weight: 800;
    border-radius: 4px;
    text-align: center;
    max-width: 94%;
    box-shadow: 0 2px 8px rgba(10, 31, 24, 0.12);
}
.course-showcase-card__vehicle-img {
    flex: 1;
    width: 100%;
    min-height: 110px;
    max-height: 155px;
    object-fit: contain;
    object-position: center bottom;
    padding: 0.25rem 0.75rem 0.65rem;
    background: transparent;
}
.course-showcase-card--licence .course-showcase-card__media--banner {
    min-height: 220px;
}
.course-showcase-card--licence .course-showcase-card__corner-icon {
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.45);
}
.course-showcase-card__price--solo {
    border-color: rgba(30, 107, 82, 0.28);
    background: linear-gradient(180deg, var(--paper) 0%, var(--green-surface) 100%);
    padding: 0.85rem 0.5rem;
}
.course-showcase-card__price--solo .course-showcase-card__price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--green-deep);
    letter-spacing: 0.01em;
}
.courses-showcase-group--licence .courses-showcase-group__title {
    color: var(--green-deep);
}

/* Course detail modal */
.course-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.course-modal[hidden] { display: none !important; }
.course-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 14, 0.65);
    backdrop-filter: blur(4px);
}
.course-modal__dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: min(92vh, 900px);
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.course-modal__header {
    position: relative;
    padding: 1.5rem 3.5rem 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 45%, var(--green-accent) 100%);
    color: #fff;
}
.course-modal__header .course-modal__title {
    color: #fff;
    font-family: var(--font-serif);
}
.course-modal__duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.course-modal__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
}
.course-modal__header-icon {
    position: absolute;
    top: 1rem;
    right: 3.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.course-modal__close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-modal__close-x:hover { background: rgba(255, 255, 255, 0.28); }
.course-modal__body {
    padding: 1.25rem 1.25rem 0.5rem;
    overflow-y: auto;
    flex: 1;
    scrollbar-color: var(--green-accent) var(--cream);
}
.course-modal__body::-webkit-scrollbar { width: 8px; }
.course-modal__body::-webkit-scrollbar-thumb {
    background: var(--green-accent);
    border-radius: 4px;
}
.course-modal__grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}
.course-modal__grid--top {
    grid-template-columns: 1fr 1fr;
}
.course-modal__grid--modules {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) {
    .course-modal__grid--top,
    .course-modal__grid--modules {
        grid-template-columns: 1fr;
    }
}
.course-modal__panel {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 1rem;
    background: var(--cream);
}
.course-modal__panel--details {
    background: linear-gradient(180deg, #fffef8 0%, var(--paper) 100%);
    border-color: rgba(201, 162, 39, 0.3);
}
.course-modal__panel-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--green-deep);
}
.course-modal__panel-title svg { color: var(--green-accent); flex-shrink: 0; }
.course-modal__panel--details .course-modal__panel-title svg { color: var(--gold); }
.course-modal__overview {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}
.course-modal__details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.88rem;
}
.course-modal__details-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(10, 31, 24, 0.06);
}
.course-modal__details-list li:last-child { border-bottom: none; }
.course-modal__details-list strong { color: var(--green-mid); }
.course-modal__private-price {
    margin: 0.75rem 0 0;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid #a8861a;
}
.course-modal__module-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
}
.course-modal__panel--theory .course-modal__module-head {
    background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
}
.course-modal__panel--practical .course-modal__module-head {
    background: linear-gradient(135deg, var(--green-accent), #2a8f6a);
}
.course-modal__module-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.course-modal__module-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--ink);
}
.course-modal__panel--theory .course-modal__module-list li::before {
    content: "✓";
    color: var(--green-mid);
    font-weight: 800;
    flex-shrink: 0;
}
.course-modal__panel--practical .course-modal__module-list li::before {
    content: "✓";
    color: var(--green-accent);
    font-weight: 800;
    flex-shrink: 0;
}
.course-modal__benefits { margin-bottom: 0.5rem; }
.course-modal__benefits-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--green-deep);
    font-family: var(--font-serif);
}
.course-modal__benefits-title svg { color: var(--gold); }
.course-modal__benefits-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
}
@media (max-width: 560px) {
    .course-modal__benefits-grid { grid-template-columns: 1fr; }
}
.course-modal__benefits-grid li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    border: 1px solid var(--line);
    border-left-width: 3px;
    border-left-color: var(--gold);
}
.course-modal__benefits-grid li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green-accent), var(--green-mid));
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.course-modal__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--line);
    background: var(--cream);
}
.course-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.course-modal__btn--primary {
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    border: 2px solid #a8861a;
}
.course-modal__btn--primary:hover {
    filter: brightness(1.05);
    color: var(--green-deep);
}
.course-modal__btn--secondary {
    background: var(--paper);
    border: 2px solid var(--green-deep);
    color: var(--green-deep);
}
.course-modal__btn--secondary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--cream);
}
body.course-modal-open { overflow: hidden; }

/* Courses page — unify service cards to brand palette (green / white / black / gold) */
.page-courses .courses-service-card--blue .courses-service-card__icon-wrap,
.page-courses .courses-service-card--teal .courses-service-card__icon-wrap {
    background: rgba(30, 107, 82, 0.12);
    color: var(--green-accent);
}
.page-courses .courses-service-card--orange .courses-service-card__icon-wrap {
    background: rgba(201, 162, 39, 0.15);
    color: #9a7b1a;
}
.page-courses .courses-service-card__btn {
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    border: 2px solid #a8861a;
    border-radius: 8px;
    font-weight: 700;
}
.page-courses .courses-service-card__btn:hover {
    filter: brightness(1.05);
    color: var(--green-deep);
}
.page-courses .courses-showcase-group__title,
.page-courses .courses-section-title {
    color: var(--green-deep);
    font-family: var(--font-serif);
}
.page-courses .course-showcase-card__price--ordinary {
    border-color: rgba(30, 107, 82, 0.35);
}
.page-courses .course-showcase-card__price--ordinary .course-showcase-card__price-value {
    color: var(--green-accent);
}
.page-courses .courses-hero.fdc-inner-hero {
    background: var(--gradient-hero);
}

.courses-packages {
    background: #fff;
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.courses-packages-group + .courses-packages-group {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(10, 31, 24, 0.08);
}
.courses-packages-group__title {
    margin-bottom: 1.75rem;
}
.courses-packages-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .courses-packages-grid[data-cols="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .courses-packages-grid[data-cols="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.courses-packages-grid[data-cols="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) {
    .courses-packages-grid[data-cols="4"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.courses-package-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 8px 28px rgba(10, 31, 24, 0.07);
    padding: 1.5rem 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}
.courses-package-card--featured {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 12px 36px rgba(201, 162, 39, 0.15);
    background: linear-gradient(180deg, #fffef8 0%, #fff 40%);
}
.courses-package-card__head {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1.15rem;
}
.courses-package-card__icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.courses-package-card__title {
    margin: 0 0 0.25rem;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--green-deep);
    line-height: 1.3;
}
.courses-package-card__subtitle {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-accent);
}
.courses-package-card__table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    margin-bottom: 1.1rem;
}
.courses-package-card__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.courses-package-card__table thead th {
    background: var(--green-deep);
    color: #fff;
    padding: 0.6rem 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
}
.courses-package-card__table tbody th {
    width: 38%;
    padding: 0.65rem 0.85rem;
    text-align: left;
    font-weight: 600;
    color: var(--muted);
    background: rgba(10, 31, 24, 0.03);
    border-bottom: 1px solid rgba(10, 31, 24, 0.06);
    font-family: var(--font-sans);
    font-size: 0.88rem;
}
.courses-package-card__table tbody td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(10, 31, 24, 0.06);
    color: var(--ink);
    vertical-align: top;
}
.courses-package-card__table tbody tr:last-child th,
.courses-package-card__table tbody tr:last-child td {
    border-bottom: none;
}
.courses-package-card__highlight {
    font-weight: 700;
    color: var(--green-deep);
    font-size: 1.05em;
}
.courses-package-card__lines {
    margin: 0;
    padding: 0;
    list-style: none;
}
.courses-package-card__lines li + li {
    margin-top: 0.25rem;
}
.courses-package-card__includes {
    margin-top: auto;
}
.courses-package-card__includes-label {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-family: var(--font-sans);
}
.courses-package-card__includes ul {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--ink);
}
.courses-package-card__includes li + li {
    margin-top: 0.3rem;
}
.courses-packages .courses-footnote {
    margin-top: 2rem;
}
.courses-footnote {
    margin: 1.25rem 0 0;
    font-size: 0.92rem;
    font-style: italic;
    color: var(--muted);
}
.courses-process {
    padding: clamp(3rem, 7vw, 4rem) 0;
}
.courses-process .inner--narrow {
    max-width: 640px;
}
.courses-process-steps {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}
.courses-process-steps li {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    background: #fff;
    padding: 1.25rem 1.35rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(10, 31, 24, 0.06);
    border: 1px solid rgba(10, 31, 24, 0.06);
}
.courses-process-steps__num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
}
.courses-process-steps p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.65;
    color: var(--ink);
}
@media (max-width: 1100px) {
    .courses-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .courses-extras-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 719px) {
    .courses-packages-grid[data-cols] {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .courses-services-grid {
        grid-template-columns: 1fr;
    }
    .courses-table th,
    .courses-table td {
        padding: 0.7rem 0.75rem;
        font-size: 0.9rem;
    }
    .courses-package-card__table tbody th {
        width: 42%;
        font-size: 0.82rem;
    }
}

/* Homepage sections */
.inner--narrow { max-width: 720px; }
.section-title--left { text-align: left; margin-bottom: 1rem; }
.home-section-intro {
    text-align: center;
    max-width: 40rem;
    margin: -1.5rem auto 2rem;
    color: var(--muted);
    line-height: 1.7;
}
.home-section-intro--left {
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: none;
}
.home-section-cta {
    text-align: center;
    margin: 2rem 0 0;
}

/* Home — floating stat bubbles on hero */
body.page-home .hero--fdc {
    overflow: hidden;
}
.hero-stat-bubbles {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.hero-stat-bubble {
    position: absolute;
    width: clamp(6.5rem, 11vw, 8.25rem);
    height: clamp(6.5rem, 11vw, 8.25rem);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.65rem;
    gap: 0.1rem;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.22),
        0 0 0 3px rgba(255, 255, 255, 0.35);
    animation: hero-bubble-float 5s ease-in-out infinite;
    pointer-events: auto;
}
.hero-stat-bubble--tl { top: 18%; left: 4%; animation-delay: 0s; }
.hero-stat-bubble--tr { top: 22%; right: 4%; animation-delay: 0.8s; }
.hero-stat-bubble--bl { bottom: 18%; left: 6%; animation-delay: 1.6s; }
.hero-stat-bubble--br { bottom: 20%; right: 6%; animation-delay: 2.4s; }
.hero-stat-bubble--white {
    background: #fff;
    color: var(--green-deep);
    border: 2px solid rgba(30, 107, 82, 0.25);
}
.hero-stat-bubble--yellow {
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--green-deep);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.hero-stat-bubble--green {
    background: linear-gradient(145deg, var(--green-accent) 0%, var(--green-mid) 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.hero-stat-bubble--green .hero-stat-bubble__icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.hero-stat-bubble__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.15rem;
    background: rgba(30, 107, 82, 0.1);
    color: var(--green-accent);
}
.hero-stat-bubble__icon-svg {
    width: 14px;
    height: 14px;
    display: block;
}
.hero-stat-bubble__value {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-stat-bubble__label {
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: 5.5rem;
    opacity: 0.92;
}
@keyframes hero-bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@media (max-width: 900px) {
    .hero-stat-bubble {
        width: 5.5rem;
        height: 5.5rem;
        padding: 0.45rem;
    }
    .hero-stat-bubble--tl { top: 14%; left: 2%; }
    .hero-stat-bubble--tr { top: 14%; right: 2%; }
    .hero-stat-bubble--bl { bottom: 14%; left: 2%; }
    .hero-stat-bubble--br { bottom: 14%; right: 2%; }
    .hero-stat-bubble__value { font-size: 1rem; }
    .hero-stat-bubble__label { font-size: 0.55rem; max-width: 4.5rem; }
}
@media (max-width: 600px) {
    .hero-stat-bubbles {
        position: relative;
        inset: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem;
        padding: 0 1rem 1.25rem;
        margin-top: -3.5rem;
        z-index: 5;
    }
    .hero-stat-bubble {
        position: static;
        width: calc(50% - 0.4rem);
        height: auto;
        aspect-ratio: 1;
        max-width: 7rem;
        animation: none;
    }
    body.page-home .hero--fullscreen .hero-content {
        padding-bottom: 0.5rem;
    }
}

.home-section-head {
    text-align: center;
    margin-bottom: 2rem;
}
.home-section-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.home-team__bubbles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    justify-items: center;
    align-items: start;
}
.home-team__bubble {
    margin: 0;
    text-align: center;
    max-width: 100%;
}
.home-team__bubble--xl {
    grid-column: 1 / -1;
}
.home-team__bubble-ring {
    width: clamp(16rem, 32vw, 22rem);
    height: clamp(16rem, 32vw, 22rem);
    margin: 0 auto;
    padding: 5px;
    border-radius: 50%;
    box-shadow:
        0 18px 44px rgba(10, 31, 24, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}
.home-team__bubble--xl .home-team__bubble-ring {
    width: clamp(18rem, 42vw, 26rem);
    height: clamp(18rem, 42vw, 26rem);
    padding: 6px;
}
.home-team__bubble-ring--green {
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--green-accent) 55%, var(--green-mid) 100%);
}
.home-team__bubble-ring--gold {
    background: linear-gradient(145deg, #fff 0%, var(--gold-light) 40%, var(--gold) 100%);
}
.home-team__bubble-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}
.home-team__bubble-inner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}
.home-team__bubble figcaption {
    margin-top: 0.85rem;
    padding: 0 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}
.home-team__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.home-testimonials {
    background: #f7f9f8;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}
.home-testimonials__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 3.25rem;
}
.home-testimonials-carousel__viewport {
    overflow: hidden;
    outline: none;
    width: 100%;
}
.home-testimonials-carousel__track {
    position: relative;
    min-height: 17.5rem;
    width: 100%;
}
.home-testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}
.home-testimonial-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.home-testimonial-slide__card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 12px 40px rgba(10, 31, 24, 0.08);
    border: 1px solid rgba(10, 31, 24, 0.06);
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    box-sizing: border-box;
}
.home-testimonial-slide__stars {
    display: flex;
    gap: 0.15rem;
    color: #f5b301;
    margin-bottom: 0.5rem;
}
.home-testimonial-slide__quote-mark {
    display: block;
    font-size: 3rem;
    line-height: 1;
    color: rgba(198, 40, 40, 0.35);
    font-family: Georgia, serif;
    margin-bottom: 0.25rem;
}
.home-testimonial-slide blockquote {
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
}
.home-testimonial-slide blockquote p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--green-deep);
}
.home-testimonial-slide__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
}
.home-testimonial-slide__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.15), rgba(30, 107, 82, 0.2));
    border: 2px solid rgba(198, 40, 40, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green-deep);
    flex-shrink: 0;
}
.home-testimonial-slide__avatar--photo {
    object-fit: cover;
    object-position: center top;
    padding: 0;
    background: #e8ece9;
    display: block;
}
.home-testimonial-slide__author strong {
    display: block;
    font-size: 1rem;
    color: var(--green-deep);
}
.home-testimonial-slide__author em {
    display: block;
    font-style: normal;
    font-size: 0.88rem;
    color: #c62828;
    font-weight: 600;
    margin-top: 0.1rem;
}
.home-testimonials-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(10, 31, 24, 0.08);
    transition: border-color 0.15s ease, color 0.15s ease;
    z-index: 2;
}
.home-testimonials-carousel__nav:hover {
    border-color: var(--green-accent);
    color: var(--green-accent);
}
.home-testimonials-carousel__nav--prev { left: 0; }
.home-testimonials-carousel__nav--next { right: 0; }
.home-testimonials-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.home-testimonials-carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(10, 31, 24, 0.2);
    cursor: pointer;
}
.home-testimonials-carousel__dot.is-active {
    background: #c62828;
    transform: scale(1.15);
}

@media (min-width: 1024px) {
    .home-testimonials-carousel {
        max-width: 62rem;
        padding: 0 4.5rem;
    }
    .home-testimonials-carousel__track {
        min-height: 19.5rem;
    }
    .home-testimonial-slide__card {
        padding: 2.5rem 3rem 2.25rem;
        min-height: 17.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home-testimonial-slide blockquote p {
        font-size: 1.12rem;
        line-height: 1.75;
    }
    .home-testimonial-slide__quote-mark {
        font-size: 3.25rem;
    }
    .home-team__bubbles {
        gap: 3rem 2.5rem;
    }
    .home-team__bubble--xl .home-team__bubble-ring {
        width: min(26rem, 38vw);
        height: min(26rem, 38vw);
    }
    .home-team__bubble--lg .home-team__bubble-ring {
        width: min(20rem, 28vw);
        height: min(20rem, 28vw);
    }
}

@media (min-width: 1280px) {
    .home-testimonials-carousel {
        max-width: 68rem;
    }
    .home-testimonial-slide__card {
        max-width: 52rem;
        padding: 2.75rem 3.5rem 2.5rem;
    }
}

.home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.home-about__copy p {
    line-height: 1.75;
    color: var(--ink);
}
.home-about__copy .btn { margin-top: 0.5rem; }
.home-about__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 31, 24, 0.12);
}
.home-about__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.home-why-showcase {
    margin: 0;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 1rem;
}
.home-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    background: #fff;
    box-shadow: 0 6px 20px rgba(10, 31, 24, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 31, 24, 0.1);
}
.home-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}
.home-service-card__icon svg {
    width: 40px;
    height: 40px;
}
.home-service-card--green .home-service-card__icon { background: rgba(30, 107, 82, 0.12); color: var(--green-accent); }
.home-service-card--blue .home-service-card__icon { background: rgba(30, 90, 140, 0.1); color: #1e5a8c; }
.home-service-card--gold .home-service-card__icon { background: rgba(201, 162, 39, 0.15); color: #9a7b1a; }
.home-service-card--teal .home-service-card__icon { background: rgba(30, 107, 100, 0.12); color: #1a6b66; }
.home-service-card--orange .home-service-card__icon { background: rgba(200, 90, 40, 0.12); color: #c45a1a; }
.home-service-card h3 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    color: var(--green-deep);
}
.home-service-card p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}

.home-packages__note {
    text-align: center;
    color: var(--green-accent);
    font-weight: 600;
    margin: -1rem 0 1.75rem;
}
.home-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}
.home-package-teaser {
    display: block;
    text-align: center;
    padding: 1.35rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    box-shadow: 0 6px 22px rgba(10, 31, 24, 0.07);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.home-package-teaser:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.home-package-teaser__icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.home-package-teaser h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: var(--green-deep);
}
.home-package-teaser__fee {
    margin: 0;
    font-weight: 700;
    color: var(--green-accent);
    font-size: 1.05rem;
}

.home-how__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}
.home-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.home-steps li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.home-steps__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 0.95rem;
}
.home-steps strong {
    display: block;
    color: var(--green-deep);
    margin-bottom: 0.2rem;
}
.home-steps p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.55;
}
.home-how__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(10, 31, 24, 0.1);
}
.home-how__media img {
    width: 100%;
    height: auto;
    display: block;
}

.home-safety {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.home-safety__head {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}
.home-safety .home-section-intro--left {
    max-width: 36rem;
}
.home-safety-tips {
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
    line-height: 1.75;
    color: var(--ink);
    font-size: 1rem;
}
.home-safety-tips li {
    margin-bottom: 0.4rem;
}
.home-safety-tips li::marker {
    color: var(--green-accent);
}
.home-safety__featured {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(10, 31, 24, 0.1);
}
.home-safety__featured img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}
.home-safety-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.home-safety-gallery figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 31, 24, 0.09);
}
.home-safety-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
@media (min-width: 1024px) {
    .home-safety {
        padding: clamp(4.5rem, 8vw, 6rem) 0;
    }
    .home-safety__head {
        grid-template-columns: 1fr 1.1fr;
        gap: clamp(2.5rem, 4vw, 4rem);
        margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    }
    .home-safety .section-title--left {
        font-size: clamp(2rem, 3.2vw, 2.85rem);
        margin-bottom: 1.25rem;
    }
    .home-safety .home-section-intro--left {
        font-size: clamp(1.12rem, 1.75vw, 1.38rem);
        line-height: 1.8;
        margin-bottom: 2rem;
        max-width: 42rem;
    }
    .home-safety-tips {
        font-size: clamp(1.05rem, 1.55vw, 1.22rem);
        line-height: 1.85;
        margin-bottom: 2.25rem;
        padding-left: 1.5rem;
    }
    .home-safety-tips li {
        margin-bottom: 0.55rem;
    }
    .home-safety .btn-outline {
        font-size: 1.08rem;
        padding: 0.9rem 1.85rem;
    }
    .home-safety__featured {
        border-radius: 18px;
    }
    .home-safety__featured img {
        min-height: 400px;
    }
    .home-safety-gallery {
        gap: clamp(1.35rem, 2vw, 2rem);
    }
    .home-safety-gallery figure {
        border-radius: 16px;
    }
    .home-safety-gallery img {
        height: clamp(260px, 22vw, 340px);
    }
}
@media (min-width: 1400px) {
    .home-safety .inner--wide {
        width: min(1360px, 94vw);
    }
    .home-safety__featured img {
        min-height: 460px;
    }
    .home-safety-gallery img {
        height: 360px;
    }
}

.home-contact__hours {
    text-align: center;
    color: var(--muted);
    margin: -1rem 0 1.5rem;
}
.home-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.home-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.15rem 1.1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(10, 31, 24, 0.08);
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-contact-card:hover {
    border-color: var(--green-accent);
    box-shadow: 0 6px 18px rgba(10, 31, 24, 0.08);
}
.home-contact-card strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.home-contact-card span {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 0.98rem;
}
.home-contact-card__meta {
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
}
.home-contact-card--wa:hover strong,
.home-contact-card--wa span { color: #128c7e; }

@media (max-width: 1024px) {
    .home-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .home-about__grid,
    .home-how__grid,
    .home-safety__head {
        grid-template-columns: 1fr;
    }
    .home-safety-gallery {
        grid-template-columns: 1fr;
    }
    .home-safety-gallery img { height: auto; max-height: 220px; }
    .home-team__bubbles { grid-template-columns: 1fr; }
    .home-team__bubble--xl { grid-column: auto; }
    .home-testimonials-carousel { padding: 0 2.5rem; }
    .hero-cta--home .btn { width: 100%; justify-content: center; }
}

/* Contact hub — details + feedback + newsletter */
.contact-hero .lead--large { max-width: 42rem; }
.contact-hub {
    background: linear-gradient(180deg, #f4f8f6 0%, #fff 12rem);
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}
.contact-hub__notice {
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--line);
}
.contact-hub__grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 2rem 2.75rem;
    align-items: start;
}
.contact-hub__heading {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: var(--green-deep);
}
.contact-hub__hours {
    margin: 0 0 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.contact-hub__channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-hub__channel {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 22px rgba(10, 24, 20, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.contact-hub__channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 24, 20, 0.09);
    border-color: rgba(30, 107, 82, 0.35);
}
.contact-hub__channel--wa:hover .contact-hub__channel-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #128c7e;
}
.contact-hub__channel-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: rgba(30, 107, 82, 0.12);
    color: var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-hub__channel-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.contact-hub__channel-body strong {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.contact-hub__channel-body span {
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.35;
}
.contact-hub__channel-body small {
    font-size: 0.88rem;
    color: var(--muted);
}
.contact-hub__social {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.contact-hub__subheading {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--green-deep);
}
.contact-hub__md {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}
.contact-hub__md a { font-weight: 600; }
.contact-hub__forms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-hub__panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.75rem 1.85rem 2rem;
    box-shadow: 0 10px 40px rgba(10, 24, 20, 0.07);
    scroll-margin-top: 6rem;
}
.contact-hub__panel--news {
    background: linear-gradient(135deg, #fff 0%, #f8fbf9 100%);
    border-color: rgba(30, 107, 82, 0.2);
}
.contact-hub__panel-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.35rem;
}
.contact-hub__panel-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}
.contact-hub__panel-head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: var(--green-deep);
}
.contact-hub__panel-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-hub__alert { margin: 0 0 1rem; }
.contact-hub-form label { margin-bottom: 0.85rem; }
.contact-hub-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}
.contact-hub-form__news-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: stretch;
}
.contact-hub-form__news-row input {
    flex: 1 1 12rem;
    min-width: 0;
    margin-top: 0;
}
.contact-hub-form__news-row .btn {
    flex: 0 0 auto;
    align-self: stretch;
    white-space: nowrap;
}
.contact-hub-form__news-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-hub-form__fine {
    margin: 0.75rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}
.contact-hub__social .fdc-social-icons a:not(.fdc-social-icons__link) {
    background: rgba(30, 107, 82, 0.1);
    color: var(--green-accent);
}
.contact-hub__social .fdc-social-icons a:not(.fdc-social-icons__link):hover {
    background: var(--green-accent);
    color: #fff;
}

@media (max-width: 960px) {
    .contact-hub__grid {
        grid-template-columns: 1fr;
    }
    .contact-hub-form__row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 520px) {
    .contact-hub__panel { padding: 1.35rem 1.15rem 1.5rem; }
    .contact-hub-form__news-row .btn { width: 100%; }
    .home-testimonials-carousel { padding: 0 2.25rem; }
}

/* Admin staff login */
.admin-login-page {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(160deg, var(--green-deep) 0%, #0d3d2e 55%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.admin-login {
    width: 100%;
    max-width: 26rem;
}
.admin-login__card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.admin-login__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}
.admin-login h1 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: var(--green-deep);
}
.admin-login__lead {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}
.admin-login__error { margin-bottom: 1rem; }
.admin-login__form { margin-bottom: 1rem; }
.admin-login__back {
    margin: 0;
    font-size: 0.88rem;
    text-align: center;
}
.admin-login__back a { color: var(--green-accent); }

/* —— Registration page —— */
.reg-hero__inner { max-width: 42rem; }
.reg-trust-line {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
}
.reg-steps-visual__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 900px) {
    .reg-steps-visual__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .reg-steps-visual__grid { grid-template-columns: 1fr; }
}
.reg-step-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.15rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.reg-step-card__icon { font-size: 1.75rem; display: block; margin-bottom: 0.35rem; }
.reg-step-card__num {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
}
.reg-step-card h3 { margin: 0 0 0.35rem; font-size: 1rem; color: var(--green-deep); }
.reg-step-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.reg-form-section { padding-top: 0.5rem; }
.reg-form-error {
    background: #fceeed;
    color: #7a2e2e;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.reg-wizard {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem 1.35rem 1.75rem;
    box-shadow: 0 8px 32px rgba(10, 31, 24, 0.08);
}
.reg-wizard__progress { margin-bottom: 1.5rem; }
.reg-wizard__progress-track {
    height: 6px;
    background: #e8eeeb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.85rem;
}
.reg-wizard__progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green-accent), var(--gold));
    border-radius: 999px;
    transition: width 0.35s ease;
}
.reg-wizard__steps-labels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}
.reg-wizard__steps-labels li.is-active { color: var(--green-deep); }
.reg-wizard__steps-labels li.is-done { color: var(--green-accent); }

.reg-wizard fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}
.reg-wizard legend {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 0.85rem;
    padding: 0;
}
.reg-panel { display: none; }
.reg-panel.is-active { display: block; }
.reg-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.reg-card label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-deep);
}
.reg-card input,
.reg-card select,
.reg-card textarea {
    font: inherit;
    font-weight: 400;
    padding: 0.55rem 0.7rem;
    border: 1px solid #c5d4cc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}
.reg-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}
@media (max-width: 560px) {
    .reg-form__row { grid-template-columns: 1fr; }
}
.reg-licence-only-note {
    margin: 0;
    padding: 0.75rem;
    background: #f4f8f6;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}
.reg-installment-box {
    padding: 1rem;
    background: linear-gradient(135deg, #fff9e8 0%, #f4f8f6 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
}
.reg-installment-box h4 { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--green-deep); }
.reg-installment-box__fine { margin: 0.5rem 0 0; font-size: 0.82rem; color: var(--muted); }

.reg-wizard__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
    align-items: center;
}
.reg-wizard__nav .btn-lg { padding: 0.85rem 1.75rem; font-size: 1.05rem; }
.reg-wizard__alt-cta {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--line);
    text-align: center;
}
.reg-wizard__alt-cta p { margin: 0 0 0.5rem; color: var(--muted); font-size: 0.9rem; }

.reg-success-card {
    text-align: center;
    background: linear-gradient(160deg, #e8f5ee 0%, #fff 55%);
    border: 2px solid var(--green-accent);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
}
.reg-success-card h2 { margin: 0 0 0.5rem; color: var(--green-deep); }
.reg-wa-btn { margin-top: 1rem; }
.reg-success-card__note { margin: 1rem 0 0; font-size: 0.9rem; color: var(--muted); }

.reg-trust-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    max-width: 28rem;
}
.reg-trust-list li { font-size: 1rem; }
.reg-payment-ref { font-size: 0.9rem; color: var(--muted); margin: 0; }

.reg-faq__list { display: flex; flex-direction: column; gap: 0.65rem; }
.reg-faq__item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.65rem 1rem;
}
.reg-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--green-deep);
}
.reg-faq__item p { margin: 0.65rem 0 0; color: var(--muted); font-size: 0.95rem; }

.reg-review-dl {
    display: grid;
    grid-template-columns: minmax(6rem, 9rem) 1fr;
    gap: 0.35rem 1rem;
    margin: 1rem 0 0;
    font-size: 0.92rem;
}
.reg-review-dl dt { font-weight: 600; color: var(--muted); margin: 0; }
.reg-review-dl dd { margin: 0; color: var(--ink); }

.reg-form-intro { margin: 0.5rem 0 1rem; max-width: 42rem; color: var(--muted); font-size: 0.98rem; }
.reg-section-note { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--muted); }
.reg-subheading { margin: 1.25rem 0 0.65rem; font-size: 1rem; color: var(--green-deep); }
.reg-form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 720px) {
    .reg-form__row--3 { grid-template-columns: 1fr; }
}
.reg-checkgroup {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.reg-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}
.reg-check input { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--green-deep); }
.reg-check--block { padding: 0.65rem 0.75rem; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
.reg-course-other { margin-bottom: 1rem; }
.reg-bank-box {
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff9e8 0%, #f4f8f6 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
    font-size: 0.92rem;
}
.reg-bank-box__fee { margin: 0 0 0.35rem; color: var(--green-deep); }
.reg-bank-box__fine { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.85rem; }
.reg-health-notice {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--green-surface);
    border-left: 4px solid var(--green-accent);
    border-radius: 0 8px 8px 0;
}
.reg-health-notice h4 { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--green-deep); }
.reg-health-notice p { margin: 0 0 0.75rem; font-size: 0.88rem; color: var(--muted); }

.footer-credits a { color: inherit; text-decoration: none; }
.footer-credits a:hover { color: var(--gold); text-decoration: underline; }

/* Home — police trust & Geita */
.hero-police-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.35rem 0 0.5rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 999px;
    font-size: 0.88rem;
    color: var(--green-deep);
    box-shadow: 0 4px 16px rgba(10, 31, 24, 0.08);
}
.hero-police-trust__badge { color: var(--gold); display: flex; }
.hero-geita-line {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Courses — police callout & installments */
.courses-police-callout__card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(135deg, #fff9e8 0%, #f4f8f6 100%);
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 14px;
}
.courses-police-callout__icon { font-size: 2rem; flex-shrink: 0; }
.courses-police-callout__title { margin: 0 0 0.35rem; font-size: 1.2rem; }
.courses-police-callout__highlight {
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: var(--green-deep);
}
.courses-installments {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    border: 1px dashed rgba(30, 107, 82, 0.35);
}
.courses-installments__title {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--green-deep);
}
.courses-installments__row {
    display: grid;
    gap: 0.15rem;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
}
.courses-installments__row:last-child { margin-bottom: 0; }
.courses-installments__row em { font-style: normal; color: var(--muted); font-size: 0.82rem; }

/* Registration — step counter */
.reg-wizard__step-counter {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green-deep);
    text-align: center;
}

/* Traffic quiz */
.traffic-quiz__intro { margin: 0 0 1.25rem; color: var(--muted); }
.traffic-quiz__question {
    margin: 0 0 1.25rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
}
.traffic-quiz__question legend {
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.65rem;
}
.traffic-quiz__options { display: grid; gap: 0.4rem; }
.traffic-quiz__option {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}
.traffic-quiz__result {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(160deg, #e8f5ee 0%, #fff 55%);
    border: 2px solid var(--green-accent);
    border-radius: 12px;
}
.traffic-quiz__result h3 { margin: 0 0 0.5rem; color: var(--green-deep); }
.traffic-quiz__score { font-weight: 700; margin: 0.5rem 0; }
.traffic-quiz__cta { margin-right: 0.5rem; }

/* Downloads — featured cards */
.downloads-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.download-card {
    display: flex;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--paper);
}
.download-card--main {
    border-color: rgba(201, 162, 39, 0.45);
    background: linear-gradient(160deg, #fff9e8 0%, #fff 60%);
}
.download-card--freebie {
    border-color: rgba(30, 107, 82, 0.35);
    background: linear-gradient(160deg, #e8f5ee 0%, #fff 60%);
}
.download-card__icon { font-size: 2.25rem; flex-shrink: 0; }
.download-card__badge {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--gold);
}
.download-card__badge--gift { color: var(--green-accent); }
.download-card__title { margin: 0 0 0.5rem; font-size: 1.15rem; }
.download-card__pending { font-size: 0.88rem; color: var(--muted); margin: 0.5rem 0 0; }
.download-list--styled { list-style: none; padding: 0; margin: 0; }
.download-list--styled li { margin-bottom: 0.5rem; }
.download-list--styled a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
}
.downloads-suggested { margin: 0.5rem 0 0; padding-left: 1.25rem; font-size: 0.88rem; color: var(--muted); }
.downloads-admin-note { font-size: 0.9rem; color: var(--muted); }

/* Read more — shorter pages, optional full text */
.read-more { margin: 0.5rem 0 0; }
.read-more__preview { margin-bottom: 0.65rem; }
.read-more__extra p,
.read-more__extra .founder-welcome__pillar { margin: 0 0 1rem; }
.read-more__toggle.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.25rem 0 0.75rem;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green-accent);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.read-more__toggle.btn-text:hover { color: var(--green-deep); }
.read-more__toggle.btn-gold {
    display: inline-block;
    margin: 0;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}
.read-more__toggle.btn-gold:hover {
    filter: brightness(1.05);
    color: var(--green-deep);
}
.page-courses .read-more__toggle.btn-text {
    display: inline-block;
    margin: 0.35rem 0 0;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    border: 2px solid #a8861a;
    cursor: pointer;
}
.page-courses .read-more__toggle.btn-text:hover {
    filter: brightness(1.05);
    color: var(--green-deep);
}
.page-courses .courses-section-head .read-more__toggle.btn-text {
    margin-inline: auto;
}
.page-courses .courses-service-card__desc-wrap .read-more__toggle.btn-text {
    margin-top: 0;
}
.page-courses .courses-hero .read-more__toggle.btn-text {
    margin-top: 0.5rem;
}
.read-more--director .read-more__extra { margin-top: 0.75rem; }
.home-safety-readmore { margin: 0.75rem 0 0; max-width: 40rem; }
.courses-section-head .read-more { max-width: 42rem; margin-inline: auto; text-align: center; }
.courses-section-head .read-more__preview { text-align: center; }
.courses-service-card__desc-wrap .read-more__preview {
    font-size: clamp(0.98rem, 1.6vw, 1.05rem);
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
/* Content carousel — tips, steps, short cards */
.content-carousel { margin: 1rem 0 0; }
.content-carousel__heading {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-deep);
    text-align: center;
}
.content-carousel__viewport { overflow: hidden; outline: none; }
.content-carousel__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.15rem;
    box-sizing: border-box;
}
.content-carousel__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 8px 24px rgba(10, 24, 20, 0.07);
    text-align: center;
    max-width: 28rem;
    margin: 0 auto;
}
.content-carousel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 800;
    margin-bottom: 0.65rem;
}
.content-carousel__card-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--green-deep);
}
.content-carousel__card-body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--ink);
}
.content-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.content-carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(10, 31, 24, 0.2);
    cursor: pointer;
}
.content-carousel__dot.is-active {
    background: var(--green-accent);
    transform: scale(1.15);
}
.home-how__copy .content-carousel { max-width: 26rem; }
.home-safety .content-carousel { max-width: 32rem; margin-bottom: 0.5rem; }
.read-more--expand-only { margin-top: 0.35rem; }
.read-more--expand-only .read-more__toggle { margin-top: 0; }
.about-ps-card__solution .read-more { margin-top: 0.25rem; }
.courses-package-card__includes-list { margin: 0; padding-left: 1.15rem; }
.courses-package-card__includes .read-more__preview { margin-bottom: 0.35rem; }
.road-safety-banner__lead .read-more__preview,
.road-safety-lead .read-more__preview { color: rgba(255, 255, 255, 0.92); }
.road-safety-banner__lead .read-more__toggle,
.road-safety-lead .read-more__toggle { color: var(--gold-light); }
.sign-pictorial-detail.read-more__preview,
.sign-category-intro.read-more__preview { margin-bottom: 0; }
.reg-steps-visual .content-carousel,
.courses-process .content-carousel { max-width: 28rem; margin-inline: auto; }
.founder-luxury--dark .content-carousel { max-width: 36rem; margin-inline: auto; }
.founder-luxury--dark .content-carousel__card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.28);
    color: rgba(245, 240, 230, 0.92);
}
.founder-luxury--dark .content-carousel__card-body { color: rgba(245, 240, 230, 0.88); }
.founder-luxury--dark .content-carousel__icon { color: var(--luxury-gold); }
.founder-luxury--dark .content-carousel__dot { border-color: rgba(212, 175, 55, 0.45); }
.founder-luxury--dark .content-carousel__dot.is-active { background: var(--luxury-gold); }
.reg-trust .content-carousel { max-width: 32rem; margin: 0.5rem auto 1rem; }
.reg-faq__answer .read-more { margin-top: 0.35rem; }
.about-classic--goals .content-carousel,
.founder-luxury--values .content-carousel { max-width: 40rem; margin: 0 auto; }
.about-why-feature__desc .read-more__preview { font-size: 0.92rem; line-height: 1.5; margin: 0; }
.contact-hub__panel-intro .read-more { margin-top: 0.25rem; }

/* Course showcase — enforce Farmcart palette (green / gold / white / black) */
.courses-showcase .course-showcase-card__corner-icon {
    background: linear-gradient(145deg, var(--green-accent), var(--green-mid)) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(30, 107, 82, 0.45) !important;
}
.courses-showcase .course-showcase-card--licence .course-showcase-card__corner-icon {
    background: linear-gradient(145deg, var(--gold-light), var(--gold)) !important;
    color: var(--green-deep) !important;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.45) !important;
}
.courses-showcase .course-showcase-card__price-value,
.courses-showcase .course-showcase-card__price--solo .course-showcase-card__price-value,
.courses-showcase .course-showcase-card__price--ordinary .course-showcase-card__price-value,
.courses-showcase .course-showcase-card__price--private .course-showcase-card__price-value {
    color: var(--green-deep) !important;
}
.courses-showcase .course-showcase-card__price--ordinary .course-showcase-card__price-value {
    color: var(--green-accent) !important;
}
.courses-showcase .course-showcase-card__price--private {
    background: linear-gradient(180deg, #fffef8 0%, rgba(232, 212, 139, 0.22) 100%) !important;
    border-color: rgba(201, 162, 39, 0.45) !important;
}
.courses-showcase .course-showcase-card__price-note {
    color: var(--green-mid) !important;
    background: rgba(232, 212, 139, 0.25) !important;
    border-color: rgba(201, 162, 39, 0.35) !important;
}
.courses-showcase .course-showcase-card__btn--details {
    background: var(--paper) !important;
    border: 2px solid var(--green-accent) !important;
    color: var(--green-accent) !important;
}
.courses-showcase .course-showcase-card__btn--details:hover {
    background: rgba(30, 107, 82, 0.08) !important;
    border-color: var(--green-deep) !important;
    color: var(--green-deep) !important;
}
.courses-showcase .course-showcase-card__btn--enroll {
    background: var(--gradient-gold) !important;
    color: var(--green-deep) !important;
    border: 2px solid #a8861a !important;
}
.courses-showcase .course-showcase-card__btn--enroll:hover {
    filter: brightness(1.05);
    color: var(--green-deep) !important;
}
.courses-showcase .course-showcase-card__media img[src$=".svg"] {
    object-fit: cover;
}
.courses-showcase .course-showcase-card__vehicle-img[src$=".svg"] {
    object-fit: contain;
    padding: 0.5rem 1rem 0.75rem;
}

/* ========= Classical bright theme — white · green · shining gold · black ========= */
body.fdc-site {
    background: #ffffff;
    color: var(--ink);
}

/* Inner pages — transparent header over hero (solid bar after scroll) */
body.fdc-site.has-hero-header .site-masthead--glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: transparent !important;
    border: none;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body.fdc-site.has-hero-header .site-header--fdc,
body.fdc-site.has-hero-header .site-header--fdc .header-inner {
    background: transparent !important;
    box-shadow: none !important;
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-masthead--glass .fdc-topbar {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-masthead--glass .fdc-topbar,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-masthead--glass .fdc-topbar a {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-masthead--glass .fdc-topbar a:hover {
    color: var(--gold-light);
}
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass .fdc-topbar {
    background: var(--green-band);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass .fdc-topbar,
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass .fdc-topbar a {
    color: #ffffff;
    text-shadow: none;
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .brand-name,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger span,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-chevron {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .brand-sub {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a:hover,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger:hover,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger:hover span {
    color: var(--gold-light) !important;
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-toggle {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}
body.fdc-site.has-hero-header .page-hero--inner.fdc-inner-hero,
body.fdc-site.has-hero-header .founder-hero {
    padding-top: 6.75rem;
}
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass {
    position: fixed;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
}
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass .fdc-topbar {
    background: var(--green-band);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass .fdc-topbar,
body.fdc-site.has-hero-header.is-header-solid .site-masthead--glass .fdc-topbar a {
    color: #ffffff;
}
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .brand-name,
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .nav-dropdown-trigger,
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .nav-dropdown-trigger span,
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .nav-dropdown-chevron {
    color: var(--black) !important;
}
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .brand-sub {
    color: var(--muted) !important;
}
body.fdc-site.has-hero-header .site-header--fdc .nav-dropdown-menu {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}
body.fdc-site.has-hero-header .site-header--fdc .nav-dropdown-menu a {
    color: var(--ink) !important;
}
body.fdc-site.has-hero-header .site-header--fdc .nav-dropdown-menu a:hover,
body.fdc-site.has-hero-header .site-header--fdc .nav-dropdown-menu a[aria-current="page"] {
    color: var(--green-accent) !important;
    background: var(--green-surface);
}
@media (max-width: 1100px) {
    body.fdc-site .site-masthead .primary-nav.is-open {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }
    body.fdc-site .site-masthead .primary-nav.is-open a,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger span {
        color: var(--ink) !important;
        text-shadow: none;
    }
}

/* Home hero: brighter, airier overlay */
body.page-home .hero--premium .hero-overlay,
body.page-home .hero--fullscreen .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(45, 154, 110, 0.28) 38%,
        rgba(15, 61, 46, 0.52) 72%,
        rgba(15, 61, 46, 0.78) 100%
    );
}
body.page-home .hero-headline__accent {
    color: var(--gold-light);
    text-shadow: 0 0 24px rgba(245, 230, 168, 0.45);
}
body.page-home.is-header-solid .site-masthead--over-hero {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
}
body.page-home.is-header-solid .primary-nav > ul > li > a,
body.page-home.is-header-solid .brand-name,
body.page-home.is-header-solid .nav-dropdown-trigger,
body.page-home.is-header-solid .nav-dropdown-trigger span,
body.page-home.is-header-solid .nav-dropdown-chevron {
    color: var(--black) !important;
    text-shadow: none;
}
body.page-home.is-header-solid .brand-sub {
    color: var(--muted) !important;
    text-shadow: none;
}
body.page-home.is-header-solid .fdc-topbar {
    color: var(--green-deep);
    text-shadow: none;
    border-bottom-color: var(--line);
}

/* Why choose — white gallery with gold accents */
.about-why-showcase,
.home-why-showcase.about-why-showcase {
    background: linear-gradient(180deg, #ffffff 0%, var(--green-surface) 45%, rgba(30, 107, 82, 0.28) 100%);
    color: var(--ink);
}
.about-why-showcase::before {
    background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(245, 230, 168, 0.28), transparent 60%);
}
.about-why-showcase__title,
.home-why-showcase .about-why-showcase__title {
    color: var(--black);
}
.about-why-feature__title {
    color: var(--black);
}
.about-why-feature__desc,
.about-why-feature__desc .read-more__preview {
    color: var(--muted);
}
.about-why-dots__btn {
    background: rgba(15, 61, 46, 0.18);
}
.about-why-dots__btn.is-active {
    background: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
}

/* About & founder — classical green sections */
.about-promise {
    background: linear-gradient(180deg, #ffffff 0%, var(--green-surface) 55%, rgba(30, 107, 82, 0.24) 100%);
    color: var(--ink);
}
.about-section-title--light { color: var(--black); }
.about-promise__text { color: var(--muted); }
.founder-luxury--dark {
    background: linear-gradient(180deg, #ffffff 0%, var(--green-surface) 100%);
    color: var(--ink);
}
.founder-luxury--dark .founder-pillar {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-soft);
}
.founder-luxury--dark .founder-pillar p {
    color: var(--muted);
}
.founder-luxury--dark .founder-pillar__icon {
    color: var(--gold-deep);
}
.founder-luxury--quote {
    background: linear-gradient(135deg, rgba(30, 107, 82, 0.22) 0%, #ffffff 50%, var(--green-surface) 100%);
}
.founder-luxury--quote .founder-quote p {
    color: var(--black);
}
.founder-vm-card--accent {
    background: linear-gradient(145deg, #ffffff 0%, var(--green-surface) 100%);
    color: var(--ink);
    border-color: rgba(212, 175, 55, 0.4);
}
.founder-vm-card--accent .founder-vm-card__text,
.founder-vm-card--accent .founder-vm-card__label {
    color: var(--green-deep);
}
.founder-luxury--dark .content-carousel__card {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}
.founder-luxury--dark .content-carousel__card-body { color: var(--muted); }
.founder-luxury--dark .content-carousel__icon { color: var(--gold-deep); }
.director-welcome__teaser-aside {
    background: linear-gradient(145deg, #ffffff 0%, rgba(30, 107, 82, 0.18) 100%);
    color: var(--ink);
    border-color: rgba(212, 175, 55, 0.45);
}
.director-welcome__aside-signoff { color: var(--gold-deep); }

/* Pro footer — shining black · gold · white */
body.fdc-site .site-footer--pro {
    color: rgba(255, 255, 255, 0.88);
    background: var(--black-shine);
    border-top: 4px solid var(--gold);
}
body.fdc-site .site-footer--pro a {
    color: rgba(255, 255, 255, 0.86);
}
body.fdc-site .site-footer--pro a:hover {
    color: var(--gold-light);
}
.footer-connect {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-band) 42%, rgba(30, 107, 82, 0.2) 100%);
    border-top: 4px solid var(--gold);
}
.footer-connect__title { color: #ffffff; }
.footer-connect__sub { color: rgba(255, 255, 255, 0.9); }
.footer-connect .fdc-social-icons a,
.footer-connect .fdc-social-icons__link {
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.footer-connect .fdc-social-icons__link--fb { background: #1877f2 !important; }
.footer-connect .fdc-social-icons__link--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}
.footer-connect .fdc-social-icons__link--wa { background: #25d366 !important; }
.footer-connect .fdc-social-icons__link--in { background: #0a66c2 !important; }
.footer-contact-bar {
    background: var(--green-band);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-contact-bar__label { color: rgba(255, 255, 255, 0.72); }
.footer-contact-bar__value { color: #ffffff; }
.footer-contact-bar__icon { color: var(--gold-light); }
.footer-contact-bar__item:hover { color: var(--gold-light); }
.footer-main {
    background: var(--black-shine) !important;
    color: rgba(255, 255, 255, 0.88);
}
.footer-brand__name { color: var(--green-deep); }
.footer-brand__reg,
.footer-brand__copy { color: rgba(255, 255, 255, 0.85); }
.footer-col__title { color: var(--gold-light); }
.footer-director {
    background: linear-gradient(180deg, #020202 0%, #080808 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-director__name,
.footer-director__contact { color: rgba(255, 255, 255, 0.78); }
.footer-director__contact a { color: var(--gold-light); }
.footer-credits {
    background: #020202;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.footer-credits__text strong { color: var(--gold-light); }
.footer-credits a { color: rgba(255, 255, 255, 0.82); }
.footer-credits a:hover { color: var(--gold-light); }

/* Gold buttons site-wide shine */
.btn-gold,
.page-courses .read-more__toggle.btn-text,
.read-more__toggle.btn-gold {
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    border: 2px solid var(--gold-deep) !important;
    box-shadow: var(--shadow-gold);
    text-decoration: none !important;
}
.btn-gold:hover,
.page-courses .read-more__toggle.btn-text:hover,
.read-more__toggle.btn-gold:hover {
    filter: brightness(1.06);
    color: var(--black) !important;
}

/* Sections breathe on white */
.section-alt { background: var(--green-surface); }
.courses-services { background: #ffffff; }
.courses-showcase { background: var(--green-surface); }
.courses-packages { background: #ffffff; }
.reg-form-section { background: var(--green-surface); }
body.fdc-site .site-footer {
    background: var(--black-shine) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-top: 4px solid var(--gold);
}
body.fdc-site .site-footer a {
    color: rgba(255, 255, 255, 0.86) !important;
}
body.fdc-site .site-footer a:hover {
    color: var(--gold-light) !important;
}
.fdc-inner-hero--safety {
    background: var(--gradient-hero);
    border-bottom: 3px solid var(--gold);
}
.fdc-inner-hero--safety h1 { color: var(--black); }
.fdc-inner-hero--safety .lead { color: var(--muted); }
.phone-widget svg { fill: currentColor; color: var(--black); }

/* ========= Readability & icon visibility (site-wide) ========= */
body.fdc-site {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: var(--ink);
}

body.fdc-site p,
body.fdc-site .lead:not(.page-hero .lead),
body.fdc-site .courses-service-card__desc,
body.fdc-site .courses-section-intro,
body.fdc-site .read-more__preview,
body.fdc-site .course-showcase-card__subtitle,
body.fdc-site .home-service-card p,
body.fdc-site .content-carousel__card-body,
body.fdc-site .prose-body {
    color: var(--ink);
    opacity: 1;
}

body.fdc-site .section-alt,
body.fdc-site .fdc-section-muted,
body.fdc-site .courses-showcase,
body.fdc-site .reg-form-section {
    color: var(--ink);
}

body.fdc-site h1,
body.fdc-site h2,
body.fdc-site h3,
body.fdc-site .section-title,
body.fdc-site .courses-section-title {
    color: var(--text-strong);
}

/* Icons — always inherit a visible colour from parent */
body.fdc-site svg {
    flex-shrink: 0;
}
body.fdc-site svg path,
body.fdc-site svg circle,
body.fdc-site svg line,
body.fdc-site svg rect,
body.fdc-site svg polyline {
    vector-effect: non-scaling-stroke;
}

.courses-service-card__icon-wrap {
    color: var(--green-deep);
}
.courses-service-card__icon-wrap svg {
    display: block;
    opacity: 1;
}
.page-courses .courses-service-card--blue .courses-service-card__icon-wrap,
.page-courses .courses-service-card--teal .courses-service-card__icon-wrap,
.page-courses .courses-service-card--orange .courses-service-card__icon-wrap {
    background: rgba(30, 107, 82, 0.14);
    color: var(--green-deep);
}
.page-courses .courses-service-card--gold .courses-service-card__icon-wrap {
    background: rgba(212, 175, 55, 0.2);
    color: #8a6f15;
}

.home-service-card__icon {
    color: var(--green-deep);
    opacity: 1;
}
.home-service-card--blue .home-service-card__icon,
.home-service-card--teal .home-service-card__icon,
.home-service-card--orange .home-service-card__icon {
    background: rgba(30, 107, 82, 0.14);
    color: var(--green-deep);
}
.home-service-card--gold .home-service-card__icon {
    background: rgba(212, 175, 55, 0.2);
    color: #8a6f15;
}

.about-why-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
    margin-bottom: 1.25rem;
    color: var(--green-deep);
}
.about-why-feature__icon svg,
.about-why-symbol {
    display: block;
    opacity: 1;
}

.course-showcase-card__meta {
    color: var(--ink);
}
.course-showcase-card__meta svg {
    color: var(--green-accent);
    opacity: 1;
}
.course-showcase-card__corner-icon svg {
    opacity: 1;
    color: inherit;
}
.course-showcase-card__btn svg {
    opacity: 1;
    color: inherit;
}

.course-modal__panel-title svg,
.course-modal__header-icon svg {
    opacity: 1;
    color: inherit;
}
.course-modal__overview,
.course-modal__details-list,
.course-modal__module-list {
    color: var(--ink);
}

.content-carousel__icon {
    color: var(--green-deep);
    opacity: 1;
}

.fdc-hub-icon {
    color: var(--green-deep);
    opacity: 1;
}

.fdc-contact-icon {
    opacity: 1;
}
.fdc-contact-icon svg {
    color: inherit;
}

.footer-contact-bar__icon svg,
.footer-follow__icon svg {
    opacity: 1;
    color: inherit;
}

.phone-widget,
.phone-widget svg {
    color: var(--black);
}
.wa-widget-icon {
    opacity: 1;
}

.read-more__toggle {
    opacity: 1;
}

.page-hero .lead,
.page-hero--inner.fdc-inner-hero .lead {
    color: var(--muted);
    opacity: 1;
    font-weight: 500;
}

body.page-home .hero-sub--premium,
body.page-home .hero-headline,
body.page-home .hero-trust-stats {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
body.page-home .hero-trust-stats {
    color: rgba(255, 255, 255, 0.95);
}

.site-footer--pro .footer-links a,
.site-footer--pro .footer-follow a {
    color: rgba(255, 255, 255, 0.92);
}
.footer-brand__reg,
.footer-brand__copy {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer — readable text on shining black (override global h3 colour) */
.site-footer--pro h3.footer-col__title,
.site-footer--pro .footer-col__title {
    color: var(--gold-light) !important;
}
.site-footer--pro .footer-brand__reg,
.site-footer--pro .footer-brand__copy {
    color: rgba(255, 255, 255, 0.85) !important;
}
.site-footer--pro .footer-links a,
.site-footer--pro .footer-follow a {
    color: rgba(255, 255, 255, 0.94) !important;
}
.site-footer--pro .footer-links a:hover,
.site-footer--pro .footer-follow a:hover {
    color: var(--gold-light) !important;
}
.site-footer--pro .footer-director__name,
.site-footer--pro .footer-director__contact,
.site-footer--pro .footer-director__contact a {
    color: rgba(255, 255, 255, 0.9) !important;
}
.site-footer--pro .footer-director__contact a:hover {
    color: var(--gold-light) !important;
}

/* Social icons — brand colours everywhere */
.fdc-social-icons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.fdc-social-icons__link--fb { background: #1877f2; color: #fff; }
.fdc-social-icons__link--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}
.fdc-social-icons__link--wa { background: #25d366; color: #fff; }
.fdc-social-icons__link--in { background: #0a66c2; color: #fff; }
.fdc-social-icons__link:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
body.fdc-site .fdc-contact-secondary .fdc-social-icons__link--fb { background: #1877f2; }
body.fdc-site .fdc-contact-secondary .fdc-social-icons__link--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
body.fdc-site .fdc-contact-secondary .fdc-social-icons__link--wa { background: #25d366; }
body.fdc-site .fdc-contact-secondary .fdc-social-icons__link--in { background: #0a66c2; }
.contact-hub__social .fdc-social-icons__link--fb { background: #1877f2; }
.contact-hub__social .fdc-social-icons__link--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-hub__social .fdc-social-icons__link--wa { background: #25d366; }
.contact-hub__social .fdc-social-icons__link--in { background: #0a66c2; }

.fdc-topbar-item svg {
    opacity: 1;
}

.nav-dropdown-menu a {
    font-weight: 500;
}

/* Stronger contrast on green-tinted panels */
.course-showcase-card {
    color: var(--ink);
}
.course-showcase-card__title {
    color: var(--text-strong);
}
.course-showcase-card__brand-ref {
    color: var(--muted);
    font-weight: 600;
}

/* Header navigation — visible menu links & mobile toggle */
@media (max-width: 1100px) {
    .header-inner {
        padding-right: 5.5rem;
    }
    body.fdc-site .site-header--fdc .nav-toggle {
        display: inline-flex !important;
        z-index: 510;
    }
}
@media (min-width: 1101px) {
    body.page-home .primary-nav--home-float {
        display: block !important;
    }
    body.fdc-site .site-header--fdc .nav-toggle {
        display: none !important;
    }
}
body.fdc-site.is-header-solid .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site.is-header-solid .site-header--fdc .nav-dropdown-trigger,
body.fdc-site.is-header-solid .site-header--fdc .nav-dropdown-trigger span,
body.fdc-site.is-header-solid .site-header--fdc .nav-dropdown-chevron,
body.page-home.is-header-solid .primary-nav--home-float > ul > li > a,
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-trigger,
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-trigger span,
body.page-home.is-header-solid .primary-nav--home-float .nav-dropdown-chevron {
    color: var(--black) !important;
    text-shadow: none;
}
body.fdc-site:not(.page-home) .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site:not(.page-home) .site-header--fdc .nav-dropdown-trigger,
body.fdc-site:not(.page-home) .site-header--fdc .nav-dropdown-trigger span {
    color: var(--ink) !important;
}
body.fdc-site .nav-toggle[aria-expanded="true"] {
    background: var(--green-band);
    border-color: var(--green-deep);
    color: #ffffff;
}
body.fdc-site .nav-toggle[aria-expanded="true"] .nav-toggle__bars span {
    background: #ffffff;
}

/* Brand text — dark on light header, light on dark hero */
body.fdc-site:not(.has-hero-header) .brand--fdc .brand-name,
body.fdc-site:not(.has-hero-header) .brand--fdc .brand-sub,
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .brand-name,
body.fdc-site.has-hero-header.is-header-solid .site-header--fdc .brand-sub,
body.page-home.is-header-solid .brand-name,
body.page-home.is-header-solid .brand-sub {
    color: var(--green-deep) !important;
    text-shadow: none;
}
body.page-home:not(.is-header-solid) .brand--fdc-float .brand-name,
body.page-home:not(.is-header-solid) .brand--fdc-float .brand-sub {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.site-footer--pro .footer-brand__name {
    color: var(--green-deep) !important;
}
.site-footer--pro .footer-brand__logo {
    background: transparent;
    border: none;
    box-shadow: none;
}
body.fdc-site .site-header--fdc .brand-logo-frame {
    width: clamp(100px, 14vw, 132px);
    height: clamp(100px, 14vw, 132px);
    border-radius: 0;
    background: transparent;
}
body.page-home .site-header--home .brand--fdc-float .brand-logo-frame {
    width: clamp(92px, 16vw, 124px);
    height: clamp(92px, 16vw, 124px);
    border-radius: 0;
    background: transparent;
}
.site-footer--pro .footer-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-footer--pro .footer-brand__logo .brand-logo-frame {
    width: clamp(112px, 28vw, 152px);
    height: clamp(112px, 28vw, 152px);
    border-radius: 0;
    background: transparent;
}
.site-footer--pro .footer-brand__logo .brand-logo-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Brand sizing lock — ensures live site picks up logo + title scale */
body.fdc-site .site-header--fdc .brand--fdc .brand-logo-frame {
    width: clamp(100px, 14vw, 132px) !important;
    height: clamp(100px, 14vw, 132px) !important;
    flex-shrink: 0;
}
body.page-home .site-header--fdc .brand--fdc-float .brand-logo-frame {
    width: clamp(92px, 16vw, 124px) !important;
    height: clamp(92px, 16vw, 124px) !important;
}
body.fdc-site .site-header--fdc .brand-logo-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}
body.fdc-site .site-header--fdc .brand--fdc .brand-name {
    font-size: clamp(1.5rem, 4.2vw, 2.25rem) !important;
    line-height: 1.1;
}
body.fdc-site .site-header--fdc .brand--fdc .brand-sub {
    font-size: clamp(0.9rem, 2.6vw, 1.12rem) !important;
}
body.page-home .site-header--fdc .brand--fdc-float .brand-name {
    font-size: clamp(1.45rem, 4.5vw, 1.75rem) !important;
}
body.page-home .site-header--fdc .brand--fdc-float .brand-sub {
    font-size: clamp(0.9rem, 2.8vw, 1.05rem) !important;
}
@media (max-width: 720px) {
    body.fdc-site .site-header--fdc .brand--fdc .brand-logo-frame,
    body.page-home .site-header--fdc .brand--fdc-float .brand-logo-frame {
        width: clamp(88px, 22vw, 112px) !important;
        height: clamp(88px, 22vw, 112px) !important;
    }
}

/* Header visibility over dark heroes — wins over older color locks */
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .brand--fdc .brand-name,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .brand--fdc .brand-sub {
    color: #ffffff !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65) !important;
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav > ul > li > a,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger,
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-trigger span {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55) !important;
}
body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .nav-dropdown-chevron {
    color: #ffffff !important;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
}
body.page-home:not(.is-header-solid) .site-header--fdc .brand--fdc-float .brand-name,
body.page-home:not(.is-header-solid) .site-header--fdc .brand--fdc-float .brand-sub {
    color: #ffffff !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65) !important;
}

/* Mobile open menu — dark text on light panel (overrides hero white nav locks) */
@media (max-width: 1100px) {
    body.fdc-site .site-masthead .primary-nav.is-open {
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
    }
    body.fdc-site .site-masthead .primary-nav.is-open > ul > li > a,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger span,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-chevron,
    body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav.is-open > ul > li > a,
    body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav.is-open .nav-dropdown-trigger,
    body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav.is-open .nav-dropdown-trigger span,
    body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav.is-open .nav-dropdown-chevron,
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open > ul > li > a,
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open .nav-dropdown-trigger,
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open .nav-dropdown-trigger span,
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open .nav-dropdown-chevron,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-has-dropdown.is-open > .nav-dropdown-trigger {
        color: var(--green-deep) !important;
        text-shadow: none !important;
        filter: none !important;
        font-weight: 600;
    }
    body.fdc-site .site-masthead .primary-nav.is-open > ul > li > a:hover,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger:hover,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-trigger:hover span,
    body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav.is-open > ul > li > a:hover,
    body.fdc-site.has-hero-header:not(.is-header-solid) .site-header--fdc .primary-nav.is-open .nav-dropdown-trigger:hover,
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open > ul > li > a:hover,
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open .nav-dropdown-trigger:hover {
        color: var(--green-accent) !important;
    }
    body.fdc-site .site-masthead .primary-nav.is-open > ul > li > a[aria-current="page"],
    body.page-home:not(.is-header-solid) .site-header--fdc .primary-nav--home-float.is-open > ul > li > a[aria-current="page"] {
        color: var(--green-mid) !important;
        font-weight: 700;
    }
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-menu {
        background: var(--green-surface);
        border: 1px solid rgba(15, 61, 46, 0.12);
        border-left: 3px solid var(--green-accent);
        box-shadow: none;
    }
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-menu a {
        color: var(--green-deep) !important;
        text-shadow: none !important;
    }
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-menu a:hover,
    body.fdc-site .site-masthead .primary-nav.is-open .nav-dropdown-menu a[aria-current="page"] {
        color: var(--green-accent) !important;
        background: rgba(255, 255, 255, 0.7);
    }
}

/* Gallery — events & photos */
.fdc-inner-hero--gallery { background: linear-gradient(135deg, rgba(10, 31, 24, 0.92), rgba(26, 92, 68, 0.88)); }
.fdc-gallery-events__list {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
}
.fdc-gallery-event {
    display: grid;
    gap: 1.5rem;
    align-items: start;
    background: #fff;
    border-radius: 18px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 12px 40px rgba(10, 31, 24, 0.08);
    border: 1px solid rgba(10, 31, 24, 0.06);
}
.fdc-gallery-event__featured,
.fdc-gallery-event__thumb,
.fdc-gallery-grid__btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: 14px;
    overflow: hidden;
}
.fdc-gallery-event__featured img,
.fdc-gallery-event__thumb img,
.fdc-gallery-grid__btn img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.fdc-gallery-event__featured:hover img,
.fdc-gallery-event__thumb:hover img,
.fdc-gallery-grid__btn:hover img {
    transform: scale(1.03);
}
.fdc-gallery-event__featured img {
    aspect-ratio: 16 / 10;
    min-height: 220px;
}
.fdc-gallery-event__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.65rem;
    margin-top: 0.75rem;
}
.fdc-gallery-event__thumb img {
    aspect-ratio: 4 / 3;
    height: 88px;
}
.fdc-gallery-event__date {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-deep, #b8860b);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.fdc-gallery-event__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--green-deep);
}
.fdc-gallery-event__desc { color: var(--muted); }
.fdc-gallery-event--no-image .fdc-gallery-event__media { min-height: 200px; }
.fdc-gallery-event__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 220px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(26, 92, 68, 0.08), rgba(184, 134, 11, 0.12));
    border: 2px dashed rgba(26, 92, 68, 0.25);
    color: var(--muted);
    text-align: center;
    padding: 1.5rem;
}
.fdc-gallery-event__placeholder-icon { font-size: 2.5rem; line-height: 1; }
.fdc-gallery-event__placeholder p { margin: 0; font-size: 0.95rem; }
.fdc-gallery-grid__item--caption-only {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(10, 31, 24, 0.06);
}
.fdc-gallery-grid__item--caption-only figcaption { margin: 0; }
.fdc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.fdc-gallery-grid__item {
    margin: 0;
}
.fdc-gallery-grid__btn img {
    aspect-ratio: 4 / 3;
    min-height: 180px;
}
.fdc-gallery-grid figcaption {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
}
.fdc-gallery-empty {
    text-align: center;
    color: var(--muted);
    padding: 2rem 0;
}
.fdc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.fdc-lightbox[hidden] { display: none !important; }
body.fdc-lightbox-open { overflow: hidden; }
.fdc-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 16, 0.88);
    cursor: pointer;
}
.fdc-lightbox__dialog {
    position: relative;
    z-index: 1;
    max-width: min(960px, 96vw);
    max-height: 92vh;
    width: 100%;
}
.fdc-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.fdc-lightbox__caption {
    margin: 0.75rem 0 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
}
.fdc-lightbox__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}
@media (min-width: 900px) {
    .fdc-gallery-event {
        grid-template-columns: 1.15fr 1fr;
        gap: 2rem;
    }
    .fdc-gallery-event:nth-child(even) .fdc-gallery-event__media { order: 2; }
    .fdc-gallery-event:nth-child(even) .fdc-gallery-event__body { order: 1; }
}
