:root {
    --primary: #1f7a3d;
    --primary-dark: #15542a;
    --primary-soft: #e6f5eb;
    --secondary: #5f6872;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #d9e1e7;
    --surface: #ffffff;
    --surface-soft: #f6f8f9;
    --layout-max: 1220px;
    --layout-gap: 18px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right, #e8f7ed 0%, #f8fafb 42%, #eef2f4 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.mark {
    color: var(--primary);
    background: transparent;
}

.container {
    width: min(var(--layout-max), 92%);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(10px);
}

.top-strip {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.24s ease, opacity 0.24s ease, max-height 0.24s ease, padding 0.24s ease;
    max-height: 80px;
    overflow: hidden;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.top-contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
}

.top-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.95;
}

.top-contact-item i { font-size: 13px; }

.top-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: all 0.2s ease;
}

.top-cta:hover {
    background: #fff;
    color: var(--primary-dark);
}

.nav-shell {
    margin-top: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.1);
    border-radius: 18px;
    padding: 10px var(--layout-gap);
    display: flex;
    align-items: center;
    gap: 18px;
    position: sticky;
    top: 8px;
    z-index: 121;
}

.brand-logo img {
    width: 200px;
    height: auto;
    display: block;
}

.desktop-nav {
    display: none;
    flex: 1;
}

.desktop-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.menu-item {
    position: relative;
}

.has-mega {
    position: static;
}

.menu-link {
    border: 0;
    background: transparent;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--secondary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    transition: all 0.18s ease;
}

.menu-link i {
    font-size: 11px;
    opacity: 0.7;
}

.menu-link:hover,
.menu-link.active,
.has-mega:hover > .menu-link {
    background: var(--primary-soft);
    color: var(--primary);
}

.mega-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: min(980px, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 22px 45px rgba(17, 24, 39, 0.16);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

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

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.mega-title {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.mega-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.mega-links a {
    color: var(--secondary);
    font-size: 13px;
}

.mega-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    width: 42px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-left: auto;
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.mobile-nav.open {
    max-height: 84vh;
}

.mobile-nav-head {
    display: none;
}

.mobile-menu-list {
    width: min(var(--layout-max), 92%);
    margin: 0 auto;
    padding: 10px 0 14px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mobile-menu-item > a,
.mobile-parent {
    width: 100%;
    border: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    color: var(--text);
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    line-height: 1.25;
}

.mobile-parent i,
.mobile-menu-item > a i {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.7;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    background: #fff;
    border-radius: 12px;
}

.mobile-submenu.open {
    max-height: 4000px;
    border: 1px solid var(--line);
    margin-top: 8px;
    padding: 10px;
}

.mobile-submenu-title {
    margin: 8px 0 4px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
}

.mobile-submenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-submenu li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: var(--secondary);
}

.hero-slider {
    position: relative;
    min-height: clamp(480px, 72vh, 680px);
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    margin-top: -92px;
    padding-top: 92px;
    touch-action: pan-y;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active { opacity: 1; }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(7, 39, 20, 0.84) 10%, rgba(17, 24, 39, 0.28) 58%, rgba(15, 23, 42, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: clamp(480px, 72vh, 680px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 24px;
    color: #fff;
}

.hero-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    color: #9be7b2;
}

.hero-copy {
    display: none;
}

.hero-copy.is-active {
    display: block;
}

.hero-text h1 {
    margin: 8px 0 14px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.04;
    max-width: 760px;
}

.hero-text p {
    margin: 0;
    max-width: 560px;
    font-size: clamp(15px, 1.8vw, 17px);
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    padding: 18px;
    display: grid;
    gap: 10px;
}

.hero-panel-set {
    display: none;
    gap: 10px;
}

.hero-panel-set.is-active {
    display: grid;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
    font-size: 28px;
    line-height: 1;
}

.hero-stat span {
    font-size: 13px;
    opacity: 0.95;
}

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    width: 26px;
    background: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 20px;
    border: 1px solid transparent;
    font-weight: 800;
}

.btn-primary {
    color: #fff;
    background: var(--primary);
}

.btn-primary:hover {
    color: #fff;
    background: var(--primary-dark);
}

.btn-muted {
    color: var(--text);
    background: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.page-main {
    width: min(var(--layout-max), 92%);
    margin: 0 auto;
}

.page-main > .page-banner,
.page-main > .section-block {
    padding-left: var(--layout-gap);
    padding-right: var(--layout-gap);
}

.section-block {
    padding: 56px 0;
}

.section-head {
    margin-bottom: 16px;
}

.section-label {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
}

.who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.who-copy {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(20px, 3vw, 34px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.who-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(27px, 4vw, 44px);
    line-height: 1.08;
}

.who-image img {
    width: 100%;
    height: clamp(340px, 46vw, 510px);
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.about-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(16px, 2.4vw, 26px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.about-top {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: flex-start;
}

.about-left-image {
    height: 100%;
}

.about-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    /* border: 1px solid var(--line); */
}

.about-right-content h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
}

.about-right-content p {
    margin: 0 0 12px;
    color: var(--muted);
}

.sector-content-wrap {
    width: 100%;
}

.sector-box {
    padding: clamp(16px, 2.2vw, 28px);
}

.sector-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
}

.sector-copy {
    display: flex;
    flex-direction: column;
}

.sector-copy h2 {
    margin-bottom: 12px;
}

.sector-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
}

.sector-card {
    background: linear-gradient(160deg, #ffffff 0%, #f6fbf8 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.sector-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--primary-dark);
}

.sector-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sector-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--secondary);
    line-height: 1.45;
    font-size: 14px;
}

.sector-list li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.sector-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.cert-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cert-group-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.cert-group-card h4 {
    margin: 0 0 10px;
    color: var(--primary-dark);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cert-grid img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 4px;
}

.page-banner {
    display: block;
    margin-top: 28px;
}

.page-banner-body {
    background: linear-gradient(140deg, #ffffff 0%, #f2f7f4 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(18px, 2.2vw, 26px);
}

.page-banner-body h1 {
    margin: 4px 0 8px;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.08;
}

.page-banner-body p {
    margin: 0;
    color: var(--muted);
}

.page-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}

.page-breadcrumbs a {
    color: var(--primary);
    font-weight: 700;
}

.crumb-sep {
    opacity: 0.6;
}

.modern-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.modern-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px rgba(15, 23, 42, 0.14);
}

.modern-card-media {
    position: relative;
}

.modern-card-media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.modern-card-tag {
    display: none;
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 44, 24, 0.8);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 700;
}

.slider-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-nav {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-dark);
    display: grid;
    place-items: center;
}

.slider-nav:hover {
    background: var(--primary-soft);
}

.card-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    cursor: grab;
}

.card-slider::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.card-slider:active {
    cursor: grabbing;
}

.card-slider > * {
    scroll-snap-align: start;
}

.modern-card-body {
    padding: 16px;
}

.modern-card-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.modern-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.modern-card-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.principle-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.principle-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-grid;
    place-items: center;
    margin-bottom: 10px;
}

.principle-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.principle-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.legacy-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.legacy-content .serviceContainer,
.legacy-content .content-bar,
.legacy-content .bg-white {
    background: transparent !important;
}

.legacy-content section,
.legacy-content .serviceContainer,
.legacy-content .content-bar,
.legacy-content .md\:p-12,
.legacy-content .p-8,
.legacy-content .p-6 {
    padding: 0 !important;
    margin: 0 !important;
}

.legacy-content .gap-8 {
    gap: 1rem !important;
}

.legacy-content .items-center {
    align-items: flex-start !important;
}

.legacy-content h2 {
    font-size: clamp(1.6rem, 2.4vw, 2rem) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2;
}

.legacy-content h3,
.legacy-content h4 {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legacy-content p,
.legacy-content li {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.legacy-content img,
.services img,
main img {
    border-radius: 12px;
}

.service-detail-content {
    padding-top: 0;
}

.service-detail-content > * + * {
    margin-top: 16px;
}

.service-detail-content .serviceContainer,
.service-detail-content .content-bar {
    background: #fff !important;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(16px, 2.2vw, 26px) !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.service-detail-content .serviceContainer > section,
.service-detail-content .content-bar > section {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.service-detail-content .flex.flex-col.md\:flex-row {
    align-items: flex-start !important;
    gap: clamp(14px, 2vw, 22px) !important;
}

.service-detail-content h2 {
    margin-bottom: 0.75rem !important;
    line-height: 1.18;
}

.service-detail-content h3,
.service-detail-content h4 {
    color: var(--primary-dark);
}

.service-detail-content p {
    margin: 0 0 0.9rem !important;
    color: var(--secondary) !important;
    line-height: 1.72 !important;
    font-size: clamp(0.98rem, 1.45vw, 1.05rem) !important;
}

.service-detail-content p.text-3xl,
.service-detail-content p.font-bold {
    margin-bottom: 0.6rem !important;
    color: var(--primary-dark) !important;
    line-height: 1.25 !important;
}

.service-detail-content br + br {
    display: none;
}

.service-detail-content [style*="top:"] {
    top: auto !important;
    position: static !important;
}

.service-detail-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 22px;
    color: var(--secondary);
    line-height: 1.45;
}

.service-detail-content ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 14px;
}

.modern-icon-list {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.modern-icon-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
    color: var(--secondary);
}

.modern-icon-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
    font-size: 14px;
}

.service-detail-content .services .grid {
    background: transparent;
    padding: 0 !important;
}

.service-detail-content .services .card {
    border-radius: 14px;
    border-color: var(--line) !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-detail-content .services .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.12);
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding-top: 48px;
}

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

.site-footer h4 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 18px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 3px;
}

.site-footer ul a {
    font-size: 13px;
}

.site-footer a { color: #9ca3af; }
.site-footer a:hover { color: #fff; }

.footer-col p {
    margin: 0 0 10px;
    color: #c9d0da;
}

.footer-logo {
    width: 190px;
    height: auto;
    margin-bottom: 14px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.footer-certificates img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    color: #d1d5db;
}

.footer-subhead {
    margin-top: 18px !important;
}

.footer-whatsapp {
    max-width: 90px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-whatsapp-link {
    display: inline-block;
    margin-top: 8px;
}

.footer-bottom {
    margin-top: 24px;
    border-top: 1px solid #293242;
    padding: 14px 0 18px;
    text-align: center;
    font-size: 12px;
    color: #8b95a7;
}

.footer-bottom a {
    color: #a6b0c0;
    font-weight: 600;
}

.footer-addresses {
    display: grid;
    gap: 8px;
    margin: 8px 0 4px;
}

.footer-address-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-address-item img {
    width: 29px;
    height: 29px;
    object-fit: cover;
    border-radius: 3px;
    margin-top: 2px;
}

.footer-address-item strong,
.footer-address-item span {
    display: block;
    line-height: 1.25;
}

.footer-address-item strong {
    font-size: 13px;
    color: #e6ecf5;
}

.footer-address-item span {
    font-size: 12px;
    color: #b9c3d1;
}

.main-address strong {
    color: #86efac;
}

.contact-section {
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
}

.contact-shell {
    width: min(var(--layout-max), 92%);
    margin-inline: auto;
    padding-left: var(--layout-gap);
    padding-right: var(--layout-gap);
}

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

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.contact-card h3 {
    margin: 0;
    color: var(--primary);
}

.contact-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.contact-flag {
    width: 56px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: auto;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 34%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 34%, #000 100%);
}

.contact-card p {
    margin: 0 0 4px;
}

.contact-address {
    color: var(--muted);
    line-height: 1.35;
}

.contact-phone {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
}

.contact-email {
    font-weight: 600;
    color: var(--secondary);
}

.contact-intro-box p {
    margin-bottom: 0;
}

.honeypot-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.standard-cta {
    padding: 36px 0;
    background: linear-gradient(130deg, #dbf1e2, #eff3f5);
    border-top: 1px solid var(--line);
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-kicker {
    margin: 0 0 6px;
    font-weight: 800;
    color: var(--primary);
}

.cta-wrap h3 {
    margin: 0;
    font-size: clamp(24px, 4vw, 34px);
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.address .col {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
}

.form-container {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 20px;
}

.txt,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.contactbtn {
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
}

.banner-contact {
    background: linear-gradient(120deg, #ecfdf3, #eff2f4);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin: 20px auto 0;
    width: min(var(--layout-max), 92%);
    padding: 26px;
}

.banner-contact h4 {
    margin: 0;
    font-size: 32px;
    color: var(--primary-dark);
}

@media (min-width: 992px) {
    .desktop-nav { display: block; }
    .desktop-nav,
    .desktop-menu {
        position: static;
    }
    .nav-shell {
        overflow: visible;
    }
    .mega-panel {
        left: var(--layout-gap);
        right: var(--layout-gap);
        width: auto;
        max-width: none;
    }
    .menu-toggle,
    .mobile-nav { display: none; }
}

@media (max-width: 991px) {
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-cta {
        display: none;
    }

    .brand-logo img { width: 170px; }

    .nav-shell {
        padding: 10px;
        gap: 10px;
        position: relative;
        z-index: 130;
    }

    .page-main > .page-banner,
    .page-main > .section-block {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 14px;
    }

    .hero-panel {
        max-width: 420px;
    }

    .hero-slider,
    .hero-content { min-height: 500px; }

    .hero-slider {
        margin-top: -76px;
        padding-top: 76px;
    }

    .who-layout,
    .about-top,
    .cert-groups,
    .page-banner,
    .modern-card-grid,
    .principles-grid,
    .footer-grid,
    .contact-grid,
    .address,
    .mega-grid {
        grid-template-columns: 1fr;
    }

    .about-left-image,
    .about-left-image img {
        height: auto;
    }

    .card-slider {
        grid-auto-columns: calc((100% - 18px) / 2);
        touch-action: pan-x;
    }

    .sector-cards {
        grid-template-columns: 1fr;
    }

    .sector-media img {
        min-height: 220px;
        height: auto;
    }

    .modern-card-media img {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .card-slider {
        grid-auto-columns: 100%;
    }
}

body.scrolled .top-strip {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
}

body.scrolled .nav-shell {
    top: 0;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 9999;
        max-height: none;
        height: 100dvh;
        background: linear-gradient(180deg, #f7fbf8 0%, #eef4f1 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav.open {
        max-height: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(var(--layout-max), 92%);
        margin: 14px auto 2px;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        position: sticky;
        top: 0;
        background: linear-gradient(180deg, #f7fbf8 0%, #eef4f1 100%);
        z-index: 2;
    }

    .mobile-menu-list {
        overflow: visible;
        display: block;
        padding-bottom: 28px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-item {
        margin-bottom: 10px;
    }

    .mobile-menu-close {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: #fff;
        display: grid;
        place-items: center;
    }
}

/* compatibility utility layer for legacy markup */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-3 { gap: 0.75rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }

.w-full { width: 100%; }
.h-auto { height: auto; }
.h-48 { height: 12rem; }
.object-cover { object-fit: cover; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-gray-600 { color: #4b5563; }
.text-gray-800 { color: #1f2937; }
.text-indigo-500 { color: var(--primary); }
.border { border: 1px solid var(--line); }
.border-gray-200 { border-color: #e5e7eb; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.shadow-md { box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08); }

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:w-1\/2 { width: 50%; }
    .md\:p-12 { padding: 3rem; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
