:root {
    --bg: #f7f8fb;
    --surface: #ffffff;
    --surface-2: #f1f3f7;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    --brand: #6b8e00;
    --brand-rgb: 107 142 0;
    --brand-2: #3a5f00;
    --brand-2-rgb: 58 95 0;
    --danger: #dc2626;
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(1200px 800px at 20% -10%, rgba(var(--brand-rgb), 0.14), transparent 60%),
        radial-gradient(900px 600px at 90% 0%, rgba(var(--brand-2-rgb), 0.12), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    animation: pageIn 520ms cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.topbar {
    padding: 14px 0;
    transform: translateY(0);
    opacity: 1;
    max-height: 120px;
    transition: transform 220ms ease, opacity 220ms ease, max-height 220ms ease, padding 220ms ease;
}

header.topbar-hidden .topbar {
    transform: translateY(-110%);
    opacity: 0;
    max-height: 0;
    padding: 0;
    pointer-events: none;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.22), rgba(var(--brand-2-rgb), 0.24));
    border: 1px solid rgba(var(--brand-rgb), 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-title {
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.15;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(2, 6, 23, 0.10));
    transform: translateY(0);
    transition: transform 180ms ease;
}

.topbar-logo:hover {
    transform: translateY(-1px);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--muted);
    font-size: 0.9rem;
}

nav {
    border-top: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    transition: all 0.18s ease;
    border-radius: 12px;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-link-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--text);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    border-radius: 12px;
    transition: all 0.18s ease;
    user-select: none;
    cursor: default;
}

.brand {
    animation: fadeDown 420ms ease both;
}

.nav-menu {
    animation: fadeDown 520ms ease both;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: var(--brand);
    color: #fff;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(0);
    opacity: 0;
}

.nav-menu > li > .nav-link-text:hover,
.nav-menu > li > .nav-link-text.active {
    background: var(--brand);
    color: #fff;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    min-width: 250px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    z-index: 1000;
}

.nav-menu > li:hover > .dropdown {
    will-change: transform, opacity;
}

.nav-menu > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.18s ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.dropdown .nav-link-text {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
}

.dropdown .nav-link-text:hover,
.dropdown .nav-link-text.active {
    background: var(--brand);
    color: #fff;
}

/* Nested dropdown (3rd level) */
.dropdown .dropdown {
    top: 0;
    left: 100%;
    transform: translateY(0) translateX(-10px);
}

.dropdown li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}

.carousel {
    position: relative;
    width: 100%;
    height: min(560px, 72vh);
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.10), rgba(var(--brand-2-rgb), 0.08));
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 680ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 680ms ease;
    will-change: transform, opacity;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.carousel-item.enter-from-right {
    transform: translateX(100%);
}

.carousel-item.enter-from-left {
    transform: translateX(-100%);
}

.carousel-item.leave-to-left {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-item.leave-to-right {
    transform: translateX(100%);
    opacity: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.carousel-placeholder {
    opacity: 1;
    display: grid;
    place-items: center;
}

.carousel-placeholder-inner {
    width: min(820px, 92%);
    padding: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: center;
}

.carousel-placeholder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--brand-rgb), 0.12);
    color: var(--brand);
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.carousel-placeholder-title {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
}

.carousel-placeholder-subtitle {
    color: var(--muted);
    font-weight: 600;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
}

.carousel-content {
    display: none;
}

.carousel-content h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
}

.carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.88);
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--brand);
    transform: scale(1.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--surface);
    box-shadow: var(--shadow);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.section-title {
    text-align: left;
    padding: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.2px;
    color: var(--text);
    margin-bottom: 10px;
}

.section-lead {
    color: var(--muted);
    max-width: 72ch;
}

.content-section {
    padding: 64px 0;
}

.page-shell {
    display: grid;
    gap: 18px;
}

.page-hero {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.18), rgba(var(--brand-2-rgb), 0.14));
    border: 1px solid rgba(var(--brand-rgb), 0.26);
    border-radius: var(--radius);
    padding: 22px 22px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 240px at 20% 0%, rgba(var(--brand-rgb), 0.22), transparent 60%),
        radial-gradient(900px 240px at 90% 0%, rgba(var(--brand-2-rgb), 0.20), transparent 60%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    pointer-events: none;
}

.page-hero .page-title {
    position: relative;
}

.page-title {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 950;
    letter-spacing: 0.2px;
    color: var(--text);
}

.page-body {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.page-body p {
    margin: 0 0 12px;
    color: var(--text);
}

.page-body h2,
.page-body h3 {
    margin: 0 0 10px;
    color: var(--text);
}

.page-lead-block {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(var(--brand-rgb), 0.16);
    background: radial-gradient(900px 260px at 12% 0%, rgba(var(--brand-rgb), 0.10), transparent 60%),
        radial-gradient(820px 260px at 92% 0%, rgba(var(--brand-2-rgb), 0.10), transparent 60%),
        rgba(255, 255, 255, 0.72);
}

.page-lead-block h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.page-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 18px;
    align-items: start;
}

.team-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    align-items: start;
}

.team-visual {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.10), rgba(var(--brand-2-rgb), 0.06));
    border: 1px solid rgba(var(--brand-rgb), 0.20);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.team-visual .panel-media {
    height: 320px;
    margin: 0;
}

.team-roles {
    display: grid;
    gap: 18px;
}

.facilities-wrapper {
    max-width: 1150px;
    margin: 0 auto;
}

.facilities-heading {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 950;
    margin: 0 0 18px;
    position: relative;
    padding-left: 14px;
}

.facilities-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 5px;
    height: 0.9em;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    border-radius: 3px;
}

.facility-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.06), rgba(var(--brand-2-rgb), 0.04));
    box-shadow: var(--shadow);
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(241, 245, 249, 0.8);
}

.facility-name {
    font-size: 1.15rem;
    font-weight: 950;
    margin: 0 0 10px;
    color: var(--text);
}

.facility-name a {
    color: var(--brand);
    text-decoration: none;
}

.facility-name a:hover {
    text-decoration: underline;
}

.facility-desc {
    margin: 0;
    color: rgba(15, 23, 42, 0.84);
    line-height: 1.8;
}

.services-box {
    margin-top: 22px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.08), rgba(var(--brand-2-rgb), 0.06));
    box-shadow: var(--shadow);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.service-pill {
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
}

.lt-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.lt-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.lt-tab-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 700;
    background: #e6e6e6;
    color: #333;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.lt-tab-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
}

.lt-tab-btn.active {
    background: var(--brand);
    color: #fff;
}

.lt-pane {
    display: none;
}

.lt-pane.active {
    display: block;
}

.lt-heading {
    font-size: 1.6rem;
    font-weight: 950;
    color: var(--brand);
    display: flex;
    justify-content: center;
    margin: 4px 0 12px;
}

.lt-category {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text);
}

.lt-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin: 18px 0;
    align-items: center;
}

.lt-card img {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(241, 245, 249, 0.8);
}

.lt-card-title {
    font-size: 1.05rem;
    font-weight: 950;
    margin: 0 0 10px;
    color: rgba(26, 61, 47, 0.98);
}

.lt-subhead {
    margin-top: 12px;
    font-weight: 900;
}

.lt-card-stack {
    grid-template-columns: 1fr;
    align-items: start;
}

.lt-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.lt-gallery img {
    height: 140px;
    object-fit: contain;
    background: rgba(241, 245, 249, 0.85);
}

.ct-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.ct-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: start;
}

.ct-nav {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.ct-nav-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
    margin-bottom: 14px;
}

.ct-nav-title {
    font-size: 1.25rem;
    font-weight: 950;
    margin: 0 0 12px;
    color: rgba(26, 61, 47, 0.98);
}

.ct-icon-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.ct-icon-row img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.ct-group {
    padding: 14px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.ct-group:first-child {
    border-top: none;
    padding-top: 0;
}

.ct-group-title {
    font-weight: 950;
    text-align: center;
    margin: 4px 0 10px;
}

.ct-group-title a {
    color: var(--brand);
    text-decoration: none;
}

.ct-group-title a:hover {
    text-decoration: underline;
}

.ct-links {
    display: grid;
    gap: 8px;
}

.ct-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(15, 23, 42, 0.92);
    background: rgba(241, 245, 249, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
    font-weight: 700;
}

.ct-links a:hover {
    background: rgba(var(--brand-rgb), 0.10);
    border-color: rgba(var(--brand-rgb), 0.28);
}

.ct-bullets {
    margin: 8px 0 0;
    padding-left: 20px;
}

.ct-bullets li {
    margin-bottom: 10px;
    font-weight: 750;
}

.ct-bullets a {
    color: rgba(15, 23, 42, 0.92);
}

.ct-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.ct-sections {
    display: grid;
    gap: 14px;
}

.ct-section {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.75), rgba(255, 255, 255, 0.92));
}

.ct-section:first-child {
    padding-top: 16px;
}

.ct-section-title {
    font-size: 1.1rem;
    font-weight: 950;
    margin: 0 0 12px;
    padding-left: 12px;
    border-left: 4px solid var(--brand);
    color: rgba(26, 61, 47, 0.98);
}

.ct-item {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.22);
    margin-bottom: 10px;
    font-weight: 700;
}

.ct-item a {
    color: rgba(15, 23, 42, 0.92);
    text-decoration: none;
}

.ct-item a:hover {
    text-decoration: underline;
}

.contact-shell {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero {
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.10), rgba(var(--brand-2-rgb), 0.06));
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.contact-hero-title {
    font-size: 1.35rem;
    font-weight: 950;
    color: rgba(26, 61, 47, 0.98);
    margin: 0 0 6px;
}

.contact-hero-subtitle {
    font-weight: 800;
    color: rgba(15, 23, 42, 0.82);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-card {
    border-radius: 18px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-card-wide {
    grid-column: 1 / -1;
}

.contact-card-kicker {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(15, 23, 42, 0.62);
    margin-bottom: 8px;
}

.contact-card-value {
    font-size: 1.05rem;
    font-weight: 850;
    color: rgba(15, 23, 42, 0.92);
    line-height: 1.55;
}

.contact-card-value a {
    color: var(--brand);
    text-decoration: none;
}

.contact-card-value a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(241, 245, 249, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.22);
    font-weight: 750;
    color: rgba(15, 23, 42, 0.80);
}

.cr-shell {
    max-width: 1000px;
    margin: 0 auto;
}

.service-switch {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 14px;
}

.service-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-rgb), 0.22);
    background: rgba(var(--brand-rgb), 0.08);
    color: var(--brand);
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.service-switch-btn:hover {
    transform: translateY(-1px);
    background: rgba(var(--brand-rgb), 0.14);
    border-color: rgba(var(--brand-rgb), 0.34);
}

.service-switch-btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.cr-intro {
    max-width: 900px;
    color: rgba(15, 23, 42, 0.78);
    font-weight: 650;
}

.cr-divider {
    width: 80px;
    height: 4px;
    background: var(--brand);
    border-radius: 2px;
    margin: 15px 0 30px 0;
}

.cr-title {
    color: var(--brand);
    font-weight: 950;
    margin: 10px 0 16px;
}

.cr-box {
    position: relative;
    background: rgba(241, 245, 249, 0.70);
    padding: 24px 28px 24px 40px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: var(--shadow);
}

.cr-box::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 20px;
    bottom: 20px;
    width: 6px;
    background: var(--brand);
    border-radius: 4px;
}

.cr-box-spaced {
    margin-bottom: 22px;
}

.cr-lead {
    margin: 0 0 12px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.86);
}

.cr-list {
    padding-left: 18px;
    margin: 0;
}

.cr-list li {
    margin-bottom: 12px;
}

.cs-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.cs-subtitle {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.70);
    max-width: 900px;
    margin-bottom: 18px;
    font-weight: 650;
}

.cs-divider {
    height: 4px;
    width: 80px;
    background: var(--brand);
    margin: 20px 0 30px 0;
    border-radius: 2px;
}

.cs-block {
    background: rgba(241, 245, 249, 0.70);
    border-left: 6px solid var(--brand);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: var(--shadow);
}

.cs-block p {
    margin-bottom: 18px;
    text-align: justify;
}

.cs-list {
    margin-top: 16px;
    padding-left: 20px;
}

.cs-list li {
    margin-bottom: 14px;
    padding-left: 10px;
}

.cs-note {
    margin-top: 22px;
    padding: 16px;
    background: rgba(var(--brand-rgb), 0.10);
    border-radius: 16px;
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.82);
}

.page-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.panel-media {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
    margin: 0 0 14px;
}

.page-panel h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.page-panel-accent {
    border-color: rgba(var(--brand-rgb), 0.28);
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.10), rgba(var(--brand-2-rgb), 0.06));
}

.feature-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.feature-list li {
    padding-left: 14px;
    position: relative;
    color: var(--text);
}

.feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
    position: absolute;
    left: 0;
    top: 0.6em;
}

.text-light-green {
    color: var(--brand);
}

.fw-bold {
    font-weight: 900;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.w-100 {
    width: 100%;
}

.my-2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-3 {
    margin-top: 14px;
    margin-bottom: 14px;
}

.my-4 {
    margin-top: 18px;
    margin-bottom: 18px;
}

.mt-3 {
    margin-top: 14px;
}

.mt-4 {
    margin-top: 18px;
}

.section-hed h2 {
    font-size: 1.5rem;
    font-weight: 950;
    margin: 0;
}

.content-stack {
    display: grid;
    gap: 14px;
}

ul.list,
ol.list {
    margin: 10px 0 0;
    padding-left: 22px;
    list-style-position: outside;
}

ul.list li,
ol.list li {
    margin: 0 0 10px;
    padding-left: 4px;
}

ul.list ul,
ul.list ol,
ol.list ul,
ol.list ol {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 22px;
}

.section-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.section-card h3 {
    margin-top: 0;
}

.landmark-heading {
    font-size: 28px;
    font-weight: 600;
    color: #679700;
    display: flex;
}

.card-pepper {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", sans-serif;
    align-items: flex-start;
    max-width: 100%;
    margin: 32px auto;
}

.card-pepper img {
    width: 25%;
    min-width: 180px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
}

.card-pepper-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a3d2f;
}

.card-pepper p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.card-pepper--stack {
    flex-direction: column;
}

.card-pepper-images {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.card-pepper-images img {
    width: 180px;
    min-width: 180px;
    height: 180px;
}

@media (max-width: 768px) {
    .card-pepper {
        flex-direction: column;
        text-align: left;
    }

    .card-pepper img {
        width: 100%;
        min-width: 0;
        height: auto;
    }

    .card-pepper-images img {
        width: 100%;
        min-width: 0;
        height: auto;
    }
}

.accordion {
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.06), rgba(255, 255, 255, 0.92));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 16px;
    font-weight: 950;
    color: rgba(26, 61, 47, 0.98);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: '▾';
    font-weight: 900;
    color: rgba(15, 23, 42, 0.65);
    transition: transform 160ms ease;
}

.accordion[open] summary::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.tech-image img {
    width: min(780px, 100%);
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(241, 245, 249, 0.85);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
}

.ipr-shell {
    margin-top: 16px;
}

.ipr-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.ipr-tab-btn {
    appearance: none;
    border: none;
    background: #e6e6e6;
    color: #333;
    padding: 8px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.ipr-tab-btn:hover {
    transform: translateY(-1px);
    background: rgba(var(--brand-rgb), 0.12);
}

.ipr-tab-btn.active {
    background: var(--brand);
    color: #fff;
}

.ipr-pane {
    display: none;
    margin-top: 14px;
}

.ipr-pane.active {
    display: block;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.table th,
.table td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    text-align: left;
}

.table thead th {
    background: rgba(var(--brand-rgb), 0.08);
    font-weight: 900;
    text-align: center;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(241, 245, 249, 0.72);
}

.table-bordered th,
.table-bordered td {
    border-right: 1px solid var(--border);
}

.table-bordered th:last-child,
.table-bordered td:last-child {
    border-right: none;
}

@media (max-width: 900px) {
    .page-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-visual .panel-media {
        height: 220px;
    }

    .facility-card {
        grid-template-columns: 1fr;
    }

    .facility-img img {
        height: 200px;
    }

    .lt-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .lt-card img {
        height: 220px;
    }

    .lt-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-icon-row {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 901px) {
    .ct-nav {
        position: sticky;
        top: 96px;
    }
}

.section-surface {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.news-panel {
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.news-header {
    margin-bottom: 10px;
}

.news-ticker {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(241, 245, 249, 0.75));
    padding: 10px;
    flex: 1;
}

.news-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: newsScroll 18s linear infinite;
}

.news-ticker:hover .news-track {
    animation-play-state: paused;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-item {
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.news-item.has-thumb {
    grid-template-columns: 54px 1fr;
}

.news-item.no-thumb {
    grid-template-columns: 1fr;
}

.news-thumb {
    width: 54px;
    height: 36px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(241, 245, 249, 0.8);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.35;
    font-size: 0.98rem;
}

.news-item a:hover {
    color: var(--brand);
}

.news-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
}

.news-scroll-viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(241, 245, 249, 0.55);
    padding: 12px;
    max-height: 360px;
    flex: 1;
}

.news-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: newsScrollCards 22s linear infinite;
    will-change: transform;
}

.news-scroll-viewport:hover .news-scroll-track {
    animation-play-state: paused;
}

.news-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
}

.news-card-img {
    width: 100%;
    height: 100%;
    max-height: 140px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(241, 245, 249, 0.8);
}

.news-card-title {
    font-weight: 950;
    color: rgba(26, 61, 47, 0.98);
    margin: 0 0 8px;
}

.news-card-text {
    font-size: 0.92rem;
    color: rgba(15, 23, 42, 0.80);
    margin: 0 0 10px;
    text-align: justify;
}

.news-card-subhead {
    font-size: 0.92rem;
    margin: 6px 0 6px;
    color: rgba(15, 23, 42, 0.84);
}

.news-card-list {
    margin: 6px 0 10px;
    padding-left: 18px;
    font-size: 0.92rem;
    color: rgba(15, 23, 42, 0.80);
}

.news-card-list li {
    margin-bottom: 6px;
}

.news-card-link {
    display: inline-block;
    margin-top: 4px;
    font-weight: 800;
    text-decoration: none;
    color: var(--brand);
}

.news-card-link:hover {
    text-decoration: underline;
}

@keyframes newsScrollCards {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@keyframes newsScroll {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .news-panel {
        min-height: 260px;
    }

    .news-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .news-card-img {
        height: auto;
        max-height: none;
        aspect-ratio: 16 / 9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-track {
        animation: none;
    }

    .news-scroll-track {
        animation: none;
    }

    main {
        animation: none;
    }

    .nav-menu > li > a::after {
        transition: none;
    }

    .btn,
    .card,
    .reveal {
        transition: none;
    }

    .carousel-item {
        transition: none;
        transform: none;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.14);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(0.2px);
    transition: opacity 560ms cubic-bezier(0.2, 0.9, 0.25, 1), transform 560ms cubic-bezier(0.2, 0.9, 0.25, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.card-text {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--brand);
    transform: translateY(0);
}

.btn:hover {
    background: transparent;
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--brand-2);
    border-color: var(--brand-2);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--brand-2);
}

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 26px 0 14px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-bottom: 18px;
}

.footer-section h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand);
}

.footer-bottom {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.geometric-bg {
    position: relative;
    overflow: hidden;
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(11, 95, 255, 0.10) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
    }

    .brand-subtitle {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .topbar-actions {
        width: 100%;
        justify-content: flex-end;
        align-self: flex-end;
    }

    .topbar-logo {
        display: block;
        height: 36px;
        margin-left: auto;
    }

    .nav-container {
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        justify-content: space-between;
        width: 100%;
        text-align: left;
        padding: 12px 10px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 10px;
    }
    
    .nav-menu > li:hover .dropdown {
        display: block;
    }
    
    .carousel-content {
        padding: 22px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        grid-template-columns: 1fr;
    }

    .news-item.has-thumb {
        grid-template-columns: 46px 1fr;
    }

    .news-thumb {
        width: 46px;
        height: 32px;
        border-radius: 9px;
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 95, 255, 0.08);
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: stretch;
}

.split > .section-surface {
    height: 100%;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.stat b {
    display: block;
    font-size: 1.25rem;
}

.stat span {
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}
