/* =========================================================
   Slovakia Advanced Material - Main Stylesheet
   ========================================================= */
:root {
    --primary: #c42230;
    --primary-dark: #b8050f;
    --dark: #0b0b0f;
    --dark-2: #151820;
    --text: #222831;
    --muted: #6b7280;
    --bg-soft: #f5f6f8;
    --border: #e6e8ec;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #fff;
    margin: 0;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== Buttons ========== */
.btn-danger {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-danger:hover,
.btn-danger:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-hero {
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: .5px;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(227,6,19,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(227,6,19,.5);
}
.btn-outline-pill {
    padding: 8px 22px;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 2px;
}
.btn-outline-pill i { margin-left: 6px; }

/* ========== Navbar ========== */
.site-nav {
    padding: 13px 0;
    background: rgba(0,0,0,.35);
    /* backdrop-filter: blur(4px); */
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-nav.scrolled {
    background: rgba(11,11,15,.92);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.site-nav .brand-img {
    /* height: 40px; */
    display: block;
    width: auto;
    max-width: 210px;
}
/* .site-nav.scrolled .brand-img { height: 34px; } */

.site-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    font-size: .92rem;
    padding: 6px 16px !important;
    position: relative;
    transition: color .25s ease;
}
.site-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: #fff !important; }
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler {
    border: none;
    box-shadow: none;
    outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 680px;
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('../images/index/h1.jpg');
    background-size: cover;
    background-position: center;
    animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
    0%   { transform: scale(1.15); }
    100% { transform: scale(1);    }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(5,6,10,.85) 0%, rgba(5,6,10,.55) 60%, rgba(5,6,10,.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { padding-top: 40px; }
.hero-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    max-width: 560px;
}
.hero-more { display: inline-flex; text-decoration: none; }
.hero-more span { padding: 10px 28px; font-size: .92rem; }
.hero-scroll {
    position: absolute;
    left: 12px; bottom: 30px;
    color: rgba(255,255,255,.7);
    font-size: .72rem;
    letter-spacing: 3px;
    text-align: center;
}
.hero-scroll span {
    display: block;
    width: 2px; height: 48px;
    margin: 0 auto 8px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== Section common ========== */
.section {
    padding: 90px 0;
    position: relative;
}
.section-eyebrow {
    color: var(--primary);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 3px;
    padding-left: 26px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}
.section-eyebrow::before {
    content: '';
    position: absolute; left: 0; top: 70%;
    width: 20px; height: 1px; background: var(--primary);
    transform: translateY(-50%);
}
.section-eyebrow.center { padding-left: 0; }
.section-eyebrow.center::before { display: none; }
.section-eyebrow.light { color: #ff5a63; }
.section-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25;
    margin-bottom:30px;
}
.section-title.light { color: #fff; }
.section-desc {
    color: var(--muted);
    line-height: 1.85;
    font-size: .98rem;
}
.section-desc.light { color: rgba(255,255,255,.75); }
#u49_text{
    margin-bottom: 30px;
}
/* ========== Intro pillars ========== */
.section-intro { background: rgba(245,246,248,1); padding-bottom: 0; }
.intro-head { margin-bottom: 20px; }
.intro-title { margin-top: 18px; }
.intro-desc { max-width: 760px; margin-top: 10px; }

/* red filled badge eyebrow */
.badge-eyebrow {
    display: inline-block; 
    color: var(--primary);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 4px 10px;
    position: relative;
    margin-bottom: 6px;
    padding-left: 26px;
}
.badge-eyebrow::before {
    content: '';
    position: absolute;
    left: 0px; top:70%;
    width: 20px; height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

/* inline View More button (reuse btn-send pattern) */
.intro-more {
    display: inline-flex;
    text-decoration: none;
}
.pillarsbg { background: rgba(37, 40, 42, 1); padding: 0; }
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
    padding: 0;
    width: 100%;
}
.pillar {
    position: relative;
    height: 640px;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
}
.pillar-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease;
}
.pillar::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1;
    transition: background .4s ease;
}
.pillar:hover .pillar-bg { transform: scale(1.08); }
.pillar-inner {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 0 20px 40px;
    text-align: center;
}
.pillar-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    transition: transform .4s ease;
}
.pillar:hover .pillar-icon { transform: translateY(-6px); }
.pillar h5 {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: .5px;
    margin: 0;
    color: #fff;
}
@media (max-width: 767px) {
    .pillars { grid-template-columns: 1fr; }
    .pillar { height: 260px; }
}

/* ========== Capabilities ========== */
.section-capabilities { background: rgba(250,250,250,1); }
.cap-top { margin-bottom: 60px; }

/* top hero image with red offset decoration */
.cap-hero {
    position: relative;
    padding: 0 16px 16px 0;
}
.cap-hero img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .6s ease;
}
.cap-hero:hover img { transform: translate(-4px, -4px); }
.cap-hero-deco {
    position: absolute;
    right: 0; bottom: 0;
    width: 42%; height: 60%;
    background: var(--primary);
    z-index: 1;
}

/* cards grid */
.cap-cards { margin-top: 10px; }
.cap-card {
    background: #fff;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    transition: transform .4s ease, box-shadow .4s ease;
}
.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0,0,0,.1);
}
.cap-card-img {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f3f4f6;
}
.cap-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.cap-card:hover .cap-card-img img { transform: scale(1.06); }
.cap-card-body {
    flex: 1;
    padding: 26px 28px;
    display: flex; flex-direction: column; justify-content: center;
}
.cap-card-body h5 {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text);
}
.cap-card-body p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.cap-more {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color .25s ease, padding-right .25s ease;
}
.cap-more:hover {
    border-bottom-color: var(--primary);
    padding-right: 6px;
}

/* divider between two left stacked cards */
.cap-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, #e6e8ec 50%, #e6e8ec 100%);
    margin: 24px 0;
    flex-shrink: 0;
}
/* stretch left stacked cards so total height matches right tall card */
.cap-cards .col-lg-7 .cap-card { flex: 1; }

/* tall card: vertical layout (image top, text below) */
.cap-card-tall {
    flex-direction: column;
    height: 100%;
}
.cap-card-tall .cap-card-img {
    width: 100%;
    height: 260px;
}
.cap-card-tall .cap-card-img.tall { height: 260px; }
.cap-card-tall .cap-card-body { padding: 30px 34px 34px; }

@media (max-width: 767px) {
    .cap-hero img { height: 240px; }
    .cap-card { flex-direction: column; }
    .cap-card-img { width: 100%; height: 180px; }
}

/* ========== Qualification Swiper ========== */
.section-quality { background: #fff; }
.quality-head { margin-bottom: 50px; }
.quality-head .section-desc { line-height: 1.85; }
.q-link {
    color: #2b6fd6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.q-link:hover { border-bottom-color: #2b6fd6; }

.quality-slider-wrap {
    position: relative;
    padding: 0 70px;
}
.qualitySwiper {
    padding: 10px 0 10px;
    overflow: hidden;
}
.cert-card {
    background: #fff;
    padding: 10px;
    text-align: center;
    transition: transform .4s ease, box-shadow .4s ease;
}
.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,.1);
}
.cert-img {
    border: 1px solid #ececec;
    padding: 12px;
    background: #fff;
    overflow: hidden;
}
.cert-img img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    display: block;
}
.cert-title {
    margin-top: 22px;
    color: #666;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .5px;
}
.cert-desc {
    margin-top: 8px;
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.55;
    padding: 0 10px;
}

/* custom nav buttons */
.cert-nav {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.cert-prev {
    left: 0;
    background: #e8e9ec;
    color: #4a4f57;
}
.cert-prev:hover { background: #d6d7db; transform: translateY(-50%) scale(1.06); }
.cert-next {
    right: 0;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(227,6,19,.35);
}
.cert-next:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.06); }
.cert-nav i { font-size: 1rem; font-weight: 700; }
.cert-nav.active { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(227,6,19,.35); }
.cert-nav:not(.active) { background: #e8e9ec; color: #4a4f57; box-shadow: none; }

/* hide default swiper pagination */
.qualitySwiper .swiper-pagination { display: none; }

@media (max-width: 575px) {
    .quality-slider-wrap { padding: 0 50px; }
    .cert-img img { height: 320px; }
}

/* ========== Innovation ========== */
.section-innovation {
    position: relative;
    color: #fff;
    overflow: hidden;
}
.innovation-bg {
    position: absolute; inset: 0;
    background-image: url('../images/index/rd.png');
    background-size: cover;
    background-position: center;
}
.innovation-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,18,36,.55) 0%, rgba(10,18,36,.25) 100%);
}
.section-innovation {
    padding: 100px 0;
    height: 800px;
}
.section-innovation .container { position: relative; z-index: 2; height: 100%; }
.section-innovation .row { height: 100%; }
.section-innovation .col-lg-5 { padding-top: 0; }
.section-innovation .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.innovation-list {
    list-style: none;
    padding: 0; margin: 0;
    width: 100%;
    margin-top: 250px;
}
.innovation-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 22px;
    background: rgba(255,255,255,.05);
    border-top: 1px solid rgba(255,255,255,.28);
    color: #fff;
    cursor: pointer;
    transition: background .3s ease, padding-left .3s ease;
}
.innovation-list li:last-child {
    border-bottom: 1px solid rgba(255,255,255,.28);
}
.innovation-list li:hover {
    background: rgba(227,6,19,.75);
    padding-left: 30px;
}
.innovation-list li span {
    font-size: .92rem;
    line-height: 1.5;
    color: rgba(255,255,255,.95);
    flex: 1;
}
.innovation-list li i {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform .3s ease;
}
.innovation-list li:hover i { transform: translateX(5px); color: #fff; }

.section-innovation .section-title.light {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section-innovation { height: auto; padding: 70px 0; }
    .section-innovation .row { min-height: auto; }
    .section-innovation .col-lg-7 { justify-content: flex-start; margin-top: 30px; }
}

/* ========== Brief / About Us ========== */
.section-brief { background: rgba(250, 250, 250, 1); }
.brief-head { margin-bottom: 40px; }
.brief-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.25;
    margin: 6px 0 0;
    color: var(--text);
}
.brief-body { margin-top: 10px; }
.brief-text p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.9;
    margin-bottom: 6px;
}
.brief-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--primary);
    font-weight: 700;
    font-size: .95rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 3px;
    transition: color .25s ease, padding-right .25s ease;
}
.brief-link:hover {
    color: var(--primary-dark);
    padding-right: 10px;
}
.brief-img {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.brief-img img {
    width: 100%;  
    object-fit: cover;
    transition: transform .8s ease;
}
.brief-img:hover img { transform: scale(1.06); }

/* ========== Trusted ========== */
.section-trusted { background: #fff; padding: 90px 0 70px; }
.trusted-head { margin-bottom: 50px; }
.trusted-title {
    font-weight: 800;
    letter-spacing: 3px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text);
    margin: 6px 0 0;
}
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.logo-box {
    height: 150px;
    display: flex; align-items: center; justify-content: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f1f3;
    border-right: 1px solid #f0f1f3;
    transition: transform .35s ease, filter .35s ease;
}
/* remove right border on last column (every 3rd item) */
.trusted-grid .logo-box:nth-child(3n) { border-right: none; }
/* remove bottom border on last row (last 3 items) */
.trusted-grid .logo-box:nth-last-child(-n+3) { border-bottom: none; }

.logo-box img {
    width: 290px;
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(15%);
    opacity: .9;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.logo-box:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}
.logo-empty { background: transparent; }
.trusted-note {
    margin-top: 30px;
    text-align: center;
    font-size: .82rem;
    color: var(--muted);
}
@media (max-width: 767px) {
    .trusted-grid { grid-template-columns: repeat(3, 1fr); }
    .logo-box { height: 90px; padding: 10px 12px; }
    .logo-box img { width: auto; height: 30px; }
}

/* ========== Footer ========== */
.site-footer {
    background: #000;
    color: rgba(255,255,255,.7);
    padding: 50px 0 16px;
}
/* top: brand + menu */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.footer-brand .fb-mark {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #c3c7cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.footer-brand .fb-mark::after {
    content: '';
    display: inline-block;
    width: 3px; height: 30px;
    background: var(--primary);
    margin-left: 4px;
    transform: skewX(-20deg);
    vertical-align: middle;
}
.footer-brand .fb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-style: italic;
    font-weight: 700;
}
.footer-brand .fb-t1 { font-size: .88rem; letter-spacing: 1px; color: #fff; }
.footer-brand .fb-t2 { font-size: .88rem; letter-spacing: 1px; color: #fff; }

.footer-menu {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.footer-menu a {
    color: rgba(255,255,255,.85);
    font-size: .92rem;
    font-weight: 500;
    transition: color .25s ease;
    position: relative;
}
.footer-menu a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px; background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.footer-menu a:hover { color: #fff; }
.footer-menu a:hover::after { transform: scaleX(1); }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 0 0 46px;
}

/* main: contact + form */
.footer-main { margin-bottom: 40px; }

.contact-grid .ci-label {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
    font-weight: 400;
}
.contact-grid .ci-value {
    font-size: .95rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: .3px;
}

.footer-main .contact-form {
    max-width: 500px;
    margin-left: auto;
}
.footer-main .btn-send  i{
    padding: 0 13px;
    /* border-left: 1px solid #cfcfcf; */
    margin-left: 0px;
}
.contact-form .cf-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 10px 2px;
    font-size: .95rem;
    outline: none;
    transition: border-color .3s ease;
}
.contact-form .cf-input::placeholder {
    color: rgba(255,255,255,.55);
}
.contact-form .cf-input:focus {
    border-bottom-color: var(--primary);
}

.btn-send {
    display: inline-flex;
    align-items: stretch;
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 18px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
}
.btn-send span {
    background: var(--primary);
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    transition: background .25s ease, padding .25s ease;
}
.btn-send i {
    background: var(--primary); 
    display: inline-flex;
    align-items: center; 
    margin-left: 3px;
    transition: transform .25s ease, background .25s ease;
}
.section-intro .btn-send i {
    padding: 5px 14px;
    margin-left:1px;
}
.btn-send:hover span { background: var(--primary-dark); padding-right: 40px; }
.btn-send:hover i { background: var(--primary-dark); transform: translateX(4px); }

/* bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.footer-legal { display: inline-flex; gap: 24px; }
.footer-legal a {
    color: rgba(255,255,255,.5);
    transition: color .25s ease;
}
.footer-legal a:hover { color: #fff; }

@media (max-width: 767px) {
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-menu { display: none; }
    .footer-bottom { justify-content: center; text-align: center; }
    .contact-grid .col-12 { flex: 0 0 50%; max-width: 50%; }
}

/* ========== Responsive tweaks ========== */
@media (max-width: 991px) {
    .site-nav { background: rgba(11,11,15,.92); }
    .site-nav .brand-img {     max-width: 210px; }
    .navbar-collapse { margin-top: 14px; }
    .site-nav .nav-item { margin-top: 10px; margin-bottom: 10px; }
    .site-nav .nav-link { padding-left: 0!important; }
    .section { padding: 70px 0; }
    .hero-content { padding-top: 40px; }
    .capability-hero img { height: 260px; }
    .site-nav .nav-link::after {
        left: 0px;
    }
}
@media (max-width: 575px) {
    .section { padding: 56px 0; }
    .hero-title { font-size: 1.4rem; }
    .hero-desc br { display: none; }
    .section-title { font-size: 1.2rem; }
    .intro-title { font-size: 1.2rem; }
    .innovation-list { margin-top: 30px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* page banner */
.page-banner {
    position: relative;
    height: 500px;
    color: #fff;
    overflow: hidden;
    margin-top: 0;
}
.page-banner-bg {
    position: absolute; inset: 0;
    background-size: cover;
    /* background-position: center; */
    z-index: 0;
}
.page-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 100%);
    z-index: 1;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}
.page-banner-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

/* About info */
.section-about-info { background: #fff; padding: 90px 0; }
.about-title {
    font-weight: 800;
    font-size: clamp(3.6rem, 3.6vw, 3.2rem);
    line-height: 1.25;
    margin-bottom: 80px;
    color: var(--text);
}
.about-subtitle {
    font-weight: 700;
    font-size: clamp(3rem, 2.6vw, 3rem);
    line-height: 1.35;
    color: #c9ccd1;
    margin: 0;
}
.about-text p {
    color: var(--muted);
    line-height: 1.85;
    font-size: .95rem;
    margin-bottom: 12px;
}

/* right column narrower by ~60px */
.about-right { max-width: calc(50% - 60px); }
@media (max-width: 991px) { .about-right { max-width: 100%; } }
@media (max-width: 575px) {
    .about-title { font-size: 1.2rem; margin-bottom: 30px; }
    .about-subtitle { font-size: 1rem; }
    .section-about-info { padding: 50px 0; }
}

/* Stats grid */
.stats-grid { margin-top: 15px; --bs-gutter-y: 10px; row-gap: 10px; }
.stat-card {
    background: #fff;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.stat-card .stat-inner-top {
    background: #f5f6f8;
    padding: 18px 22px 0;
    height: 110px;
}
.stat-card .stat-inner-bottom {
    background: #fff;
    padding: 0 22px 16px;
}
.stat-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 6px;
}
.stat-index {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
}
.stat-icon {
    color: var(--primary);
    font-size: 1.25rem;
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.stat-num {
    font-weight: 800;
    font-size:3.8rem;
    line-height: 1;
    color: var(--text);
    text-align: right;
    margin:30px 0 -.55em;
    position: relative;
    z-index: 2;
}
.stat-num span {
    color: var(--text);
    font-size: 1.9rem;
    font-weight: 700;
    margin-left: 2px;
    vertical-align: top;
    position: relative;
    top: .75em;
}
.stat-label {
    margin-top: 32px;
    font-size: .78rem;
    color: var(--text);
    letter-spacing: .3px;
    text-align: right;
}

/* Video banner */
.about-video { padding: 20px 0 60px; background: #fff; }
.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.about-video-player {
    width: 100%;
    display: block;
    border-radius: 8px;
}
.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.85);
    color: #333;
    font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform .3s ease, background .3s ease;
}
.video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    color: var(--primary);
}

/* Contact / map */
.section-about-contact { background: #fff; padding: 0 0 80px; }
.contact-map-wrap {
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    background: #fff;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: stretch;
}
.contact-map {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.contact-map img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.contact-card {
    position: relative;
    z-index: 2;
    padding: 44px 40px;
    width: 55%;
    max-width: 620px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #f5f6f8 0%, #f5f6f8 55%, rgba(245,246,248,0) 100%);
}
.contact-card h3 {
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text);
}
.cc-addr {
    color: #9aa0a6;
    font-size: .88rem;
    margin-bottom: 24px;
}
.cc-list { list-style: none; padding: 0; margin: 0; }
.cc-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 8px 0;
    font-size: .9rem;
}
.cc-list i {
    color: var(--primary);
    width: 18px;
    font-size: 1rem;
    flex-shrink: 0;
}
.cc-k { color: var(--text); font-weight: 700; min-width: 60px; }
.cc-v { color: #9aa0a6; }

@media (max-width: 767px) {
    .contact-card { width: 100%; max-width: none; background: #f5f6f8; }
    .contact-map-wrap { min-height: 0; }
    .contact-map { position: relative; }
    .contact-map img { min-height: 240px; }
    .page-banner { height: 280px; }
}

/* footer logo image (reuse on about page) */
.footer-brand .fb-img {   width: auto; display: block; max-width: 210px;}

/* =========================================================
   CAPABILITIES PAGE
   ========================================================= */
.capabilities-banner { height: 500px; }
.cap-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.cap-banner-inner .pb-crumb { margin-bottom: 18px; }
.cap-banner-title {
    font-weight: 800;
    letter-spacing: 3px;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 0 0 20px;
}
.cap-banner-desc {
    color: rgba(255,255,255,.85);
    font-size: .92rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0;
}

/* Capability intro list + image */
.section-cap-intro { background: #fff; padding: 80px 0 90px; }
.cap-intro-row { --bs-gutter-x: 6rem; }
.cap-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cap-item {
    background: #f5f6f8;
    padding: 28px 32px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
    cursor: pointer;
}
.cap-item h4 {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--text);
    margin: 0 0 12px;
    transition: color .3s ease;
}
.cap-item p {
    color: #9aa0a6;
    font-size: .85rem;
    line-height: 1.75;
    margin: 0;
    transition: color .3s ease;
}
.cap-item.active,
.cap-item:hover {
    background: var(--primary);
}
.cap-item.active h4,
.cap-item.active p,
.cap-item:hover h4,
.cap-item:hover p { color: #fff; }

/* Right image with red deco at top-right */
.cap-hero-img {
    position: relative;
    padding: 0 0 14px 14px;
    max-width: 560px;
    margin-left: auto;
}
.cap-hero-img::before {
    content: '';
    position: absolute;
    top: -13px; left: 0;
    width: 78%;
    height: 98%;
    background: var(--primary);
    z-index: 1;
}
.cap-hero-img::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 14px;
    height: 78%;
    background: var(--primary);
    z-index: 1;
}
.cap-hero-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 505px;
    /* height: 360px; */
    object-fit: cover;
    display: block;
}
.cap-hero-dots {
    position: absolute;
    bottom: 14px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.cap-hero-dots span {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,.55);
    transition: background .25s ease, width .25s ease;
}
.cap-hero-dots span.active {
    background: #fff;
    width: 30px;
}

/* Materials tables */
.section-materials { background: #f5f6f8; padding: 80px 0; }
.materials-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text);
}
.materials-desc {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 960px;
}
.mat-row { margin-top: 0; margin-bottom: 16px; }
.mat-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    font-size: .82rem;
}
.mat-table thead th {
    background: #234487;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 14px 10px;
    letter-spacing: .5px;
}
.mat-table tbody td {
    padding: 15px 10px;
    text-align: center;
    color: var(--text);
    /* border: 1px solid #ececec; */
}
.mat-table tbody tr:nth-child(even) td { background: #fbf3f3; }

/* ============ Equipment Capacity banner ============ */
.equip-capacity {
    position: relative;
    padding: 120px 0 230px;
    overflow: hidden;
    color: #fff;
}
.equip-capacity .ec-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.equip-capacity .ec-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,12,18,.72) 0%, rgba(10,12,18,.45) 60%, rgba(10,12,18,.2) 100%);
    z-index: 1;
}
.equip-capacity .ec-inner { position: relative; z-index: 2; }
.ec-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #fff;
}
.ec-desc {
    font-size: .92rem;
    line-height: 1.85;
    max-width: 820px;
    color: rgba(255,255,255,.88);
    margin-bottom: 28px;
}
.ec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 14px;
    max-width: 860px;
}
.ec-tag {
    display: inline-block;
    background: rgba(20,22,28,.78);
    color: #fff;
    padding: 11px 20px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .3px;
    white-space: nowrap;
}

/* ============ Equipment cards grid ============ */
.equip-grid-section {
    background: #f5f6f8;
    padding: 60px 0 40px;
    margin-top: -180px;
    position: relative;
    z-index: 3;
    background: transparent;
}
.equip-grid-section::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 180px;
    bottom: 0;
    background: #f5f6f8;
    z-index: -1;
}
.equip-card {
    background: #fff;
    padding: 30px 20px 26px;
    text-align: center;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}
.equip-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.equip-card .eq-img {
    height: 260px;
    display: flex;
    align-items: center;
    /* padding: 0 20px; */
    justify-content: center;
    margin-bottom: 22px;
    overflow: hidden;
}
.equip-card .eq-img img {
    /* height: 100%; */
    max-width: 100%;
    object-fit: contain;
}
.equip-card .eq-name {
    font-size: .92rem;
    color: #666;
    font-weight: 500;
    letter-spacing: .3px;
    margin: 0;
}

/* Pagination */
.equip-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 0 20px;
}
.equip-pager .pg-num,
.equip-pager .pg-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: .88rem;
    color: #6b7280;
    background: transparent;
    border: none;
    transition: background .2s ease, color .2s ease;
}
.equip-pager .pg-num:hover,
.equip-pager .pg-arrow:hover { color: var(--primary); }
.equip-pager .pg-num.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

/* Contact CTA */
.cap-cta { padding: 20px 0 80px; background: #f5f6f8; }
.cta-box {
    position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cta-box::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(13, 16, 22, .72);
}
.cta-inner {
    position: relative; z-index: 2;
    text-align: center;
    padding: 40px 20px;
}
.cta-inner p {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 34px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: background .25s ease, transform .25s ease;
}
.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 991px) {
    .cap-hero-img { min-height: 300px; margin-top: 20px; }
}
@media (max-width: 767px) {
    .capabilities-banner { height: 340px; }
    .mat-table { font-size: .75rem; }
    .mat-table thead th,
    .mat-table tbody td { padding: 10px 6px; }
}


/* =========================================================
   PRODUCTS PAGE
   ========================================================= */

/* ----- Banner ----- */
.products-banner { height: 500px; }
.products-banner::after {
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 100%);
}
.products-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.pb-crumb {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.pb-crumb a {
    color: rgba(255,255,255,.8);
    transition: color .2s ease;
}
.pb-crumb a:hover { color: #fff; }
.pb-crumb span { color: rgba(255,255,255,.6); }
.pb-crumb .current { color: #fff; }
.products-banner-title {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin: 0 0 18px;
}
.products-banner-desc {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0;
}

/* ----- Category tabs ----- */
.product-tabs-wrap {
    background: #fff;
    /* border-bottom: 1px solid var(--border); */
}
@media (max-width: 991px) {
    .product-tabs-wrap > .container {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
.product-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.product-tabs a{
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}
.pt-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    color: var(--muted);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
    border-right: 1px solid var(--border);
}
.pt-item:last-child { border-right: none; }
.pt-item span { white-space: nowrap; }
.pt-item i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color .3s ease;
}
.pt-item:hover { color: var(--primary); background: #fafafa; }
.pt-item.active {
    background: var(--primary);
    color: #fff;
}
.pt-item.active i { color: #fff; }

/* ----- Overview dark section ----- */
.product-overview-section {
    position: relative;
    padding: 90px 0 200px;
    color: #fff;
    overflow: hidden;
}
.po-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.product-overview-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.55) 100%);
    z-index: 1;
}
.product-overview-section .container { position: relative; z-index: 2; padding: 0; }
.po-card {
    padding: 50px;
    height: 100%;
    backdrop-filter: blur(2px);
    transition: transform .4s ease;
}
.po-card-light {
    background: rgba(245, 246, 248, .92);
    color: var(--text);
}
.po-card-light .po-title { color: var(--text); }
.po-card-light .po-text { color: var(--muted); }
.po-card-dark {
    background: rgba(15, 17, 22, .82);
    color: #fff;
}
.po-card-dark .po-title { color: #fff; }
.po-card-dark .po-text { color: rgba(255,255,255,.78); }
.po-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 30px;
}
.po-text {
    font-size: .9rem;
    line-height: 1.85;
    margin: 0;
}

/* ----- Product grid ----- */
.product-grid-section {
    background: transparent;
    padding: 0 0 90px;
    margin-top: -150px;
    position: relative;
    z-index: 3;
}
.product-grid-section .container {
    background: #fff;
    padding: 40px 28px 30px;
}
.product-grid > [class*="col-"] {
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}
/* remove right border on last column (every 4th), bottom border on last row */
.product-grid > [class*="col-"]:nth-child(4n) { border-right: none; }
.product-grid > [class*="col-"]:nth-last-child(-n+4) { border-bottom: none; }
/* md: 3 per row */
@media (max-width: 991.98px) {
    .product-grid > [class*="col-"] { border-right: 1px solid #ececec; border-bottom: 1px solid #ececec; }
    .product-grid > [class*="col-"]:nth-child(3n) { border-right: none; }
}
/* sm and below: 2 per row */
@media (max-width: 767.98px) {
    .product-grid > [class*="col-"] { border-right: 1px solid #ececec; }
    .product-grid > [class*="col-"]:nth-child(3n) { border-right: 1px solid #ececec; }
    .product-grid > [class*="col-"]:nth-child(2n) { border-right: none; }
}
.product-card {
    text-align: center;
    padding: 30px 18px 34px;
    background: transparent;
    transition: transform .35s ease;
}
.product-card:hover { transform: translateY(-4px); }
.pc-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
    background: transparent;
}
.pc-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}
.product-card:hover .pc-img img { transform: scale(1.06); }
.pc-name {
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.4;
    margin: 0 0 6px;
}
.pc-sub {
    color: #b8bcc2;
    font-size: .8rem;
    letter-spacing: .3px;
}

@media (max-width: 767px) {
    .product-tabs { grid-template-columns: repeat(4, 1fr); }
    .pt-item span { display: none; }
    .products-banner { height: 340px; }
    .pc-img { height: 140px; }
}


/* =========================================================
   R&D PAGE
   ========================================================= */

/* ----- Banner ----- */
.rd-banner { height: 500px; }
.rd-banner::after {
    background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.35) 100%);
}
.rd-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.rd-banner-title {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin: 0 0 18px;
}
.rd-banner-desc {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    line-height: 1.9;
    max-width: 720px;
    margin: 0;
}

/* ----- White statement section ----- */
.rd-statement-section { background: #fff; padding: 90px 0 80px; }
.rd-statement { max-width: 820px; }
.rd-statement-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text);
    margin: 0 0 22px;
}
.rd-statement-desc {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.9;
    margin: 0;
}

/* ----- Platform grid section ----- */
.rd-platforms {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 460px;
    padding: 40px 0;
}
.rd-platforms > .container { position: relative; z-index: 2; }
.rd-platforms-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.rd-platforms::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 14, .55);
    z-index: 1;
}
.rd-platforms-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 0;
    row-gap: 40px;
    min-height: 460px;
}
/* 20px horizontal gap between the 4 platform tiles only (not between intro & tiles) */
.rd-cell-platform[data-rd-index="2"],
.rd-cell-platform[data-rd-index="4"] { margin-left: 20px; }
.rd-cell {
    position: relative;
    padding: 36px 36px 34px;
    display: flex;
    align-items: center;
    min-height: 230px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.rd-cell:nth-child(1) {
    /* intro cell spans both rows */
    grid-row: 1 / span 2;
}
.rd-cell-intro {
    background: transparent;
    align-items: center;
}
.rd-cell-intro p {
    color: rgba(255,255,255,.82);
    font-size: .86rem;
    line-height: 1.95;
    margin: 0;
    transition: opacity .3s ease;
}
.rd-cell-platform {
    background: rgba(10, 12, 18, .55);
    cursor: pointer;
    transition: background .35s ease;
}
.rd-cell-platform:hover { background: rgba(10, 12, 18, .75); }
.rd-cell-platform.active {
    background: var(--primary);
    border-color: transparent;
}
.rd-cell-platform .rd-cell-body {
    align-self: stretch;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: justify-content .35s ease, align-items .35s ease;
}
.rd-cell-platform.active .rd-cell-body {
    justify-content: space-between;
    align-items: stretch;
    text-align: right;
}
.rd-cell-intro .rd-cell-body {
    align-self: center;
    display: block;
    height: auto;
    text-align: left;
}
.rd-cell-num {
    display: block;
    font-size: 0;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
    text-align: left;
    transition: font-size .35s ease;
}
.rd-cell-platform.active .rd-cell-num {
    font-size: 3.4rem;
}
.rd-cell-title {
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.55;
    margin: 0;
    color: #fff;
}

/* ----- Research Achievements ----- */
.rd-achievements { background: #fff; padding: 90px 0 100px; }
.ra-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
    color: var(--text);
    margin: 0 0 56px;
}
.ra-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ra-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 4px;
}
.ra-list li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9ccd1 0%, #ffffff 100%);
}
.ra-list li:last-child::after { display: none; }
.ra-label {
    color: var(--text);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.5;
}
.ra-num {
    color: #2b6ee8;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: .5px;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
}
.ra-cert {
    background: #f5f6f8;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ra-cert img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .rd-platforms-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .rd-cell:nth-child(1) { grid-row: auto; grid-column: 1 / span 2; }
    .rd-cell { min-height: 180px; }
}
@media (max-width: 575px) {
    .rd-platforms-grid { grid-template-columns: 1fr; }
    .rd-cell:nth-child(1) { grid-column: auto; }
    .rd-cell-platform[data-rd-index="2"],
    .rd-cell-platform[data-rd-index="4"] { margin-left: 0; }
    .rd-banner { height: 380px; }
    .ra-list li { flex-direction: row; }
}

/* =========================================================
   CONTACT US PAGE
   ========================================================= */
.contact-banner { height: 500px; }
.contact-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.contact-banner-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin: 0 0 16px;
    letter-spacing: 1px;
}
.contact-banner-desc {
    color: rgba(255,255,255,.85);
    font-size: .92rem;
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
}

.section-contact-main { background: #f5f6f8; padding: 80px 0; }
.contact-lede {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 20px;
}

/* Left Form */
.contact-page-form .cp-field {
    position: relative;
    background: #fff;
    padding: 12px 18px 10px;
    min-height: 62px;
}
.contact-page-form .cp-field label {
    display: block;
    color: var(--text);
    font-size: .78rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.contact-page-form .cp-field input,
.contact-page-form .cp-field textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: .92rem;
    color: var(--text);
    padding: 0;
    resize: vertical;
    font-family: inherit;
}
.contact-page-form .cp-field-area { min-height: 140px; }
.contact-page-form .cp-field-area textarea { min-height: 100px; }

.btn-send-dark {
    display: inline-flex;
    align-items: stretch;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-top: 10px;
}
.btn-send-dark span {
    background: #1a1a1a;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 12px 26px;
    display: flex;
    align-items: center;
}
.btn-send-dark i {
    background: var(--primary);
    color: #fff;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background .25s ease;
}
.btn-send-dark:hover i { background: var(--primary-dark); }

.cp-privacy {
    color: #9aa0a6;
    font-size: .78rem;
    margin: 14px 0 0;
}
.cp-privacy a { color: var(--primary); text-decoration: underline; }

/* Right contact info card + map */
.contact-info-card {
    background: #fff;
    padding: 26px 28px; 
    margin-top: 40px;
}
.ci-list-inline li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.ci-list-inline li:last-child { border-bottom: none; }
.ci-list-inline li > i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.ci-list-inline .ci-k {
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    min-width: 70px;
}
.ci-list-inline .ci-v {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
}

.ci-list { list-style: none; padding: 0; margin: 0; }
.ci-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.ci-list li:last-child { border-bottom: none; }
.ci-list > li > i {
    color: var(--primary);
    font-size: 1rem;
    width: 18px;
    flex-shrink: 0;
    margin-top: 4px;
}
.ci-list .ci-k {
    color: var(--text);
    font-weight: 600;
    font-size: .88rem; 
    margin-top: 5px;
}
.ci-list .ci-v {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
    margin-top: 5px;
}

.contact-map-img {
    overflow: hidden;
}
.contact-map-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .contact-banner { height: 340px; }
}

/* =========================================================
   DIGITAL MANAGEMENT PAGE
   ========================================================= */
.dm-section { padding: 0 0 80px; background: #fff; }
.dm-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 70px 0 60px;
    color: #fff;
    margin-bottom: 60px;
}
.dm-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,12,18,.7) 0%, rgba(10,12,18,.25) 100%);
}
.dm-banner > .container { position: relative; z-index: 2; }
.dm-banner-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    letter-spacing: 1.5px;
    margin: 0 0 18px;
}
.dm-banner-desc {
    color: rgba(255,255,255,.88);
    font-size: .88rem;
    line-height: 1.85;
    max-width: 880px;
    margin: 0;
}

.dm-group {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, transparent 0%, #cfd4db 50%, transparent 100%) 1;
}
.dm-group:last-child { border-bottom: none; }
.dm-label {
    display: inline-block;
    background: #f5f5f2;
    padding: 12px 64px 12px 20px;
    margin-bottom: 22px;
    position: relative;
    min-width: 430px;
    clip-path: polygon(0 0, calc(100% - 1px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
}
.dm-label span {
    color: #234487;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .3px;
}

.dm-list { list-style: none; padding: 0; margin: 0; }
.dm-list li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    align-items: flex-start;
}
.dm-list li > i {
    color: #234487;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.dm-list .dm-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 0;
}
.dm-list h6 {
    color: var(--text);
    font-weight: 700;
    font-size: .9rem;
    margin: 0 0 4px;
}
.dm-list h6 .dm-sub {
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
}
.dm-list p {
    color: #8a8f96;
    font-size: .82rem;
    line-height: 1.7;
    margin: 0;
}

.dm-imgs {
    display: grid;
    gap: 30px;
}
.dm-imgs-2 { grid-template-columns: 1fr 1fr; }
.dm-imgs-4 { grid-template-columns: 1fr 1fr; }
.dm-imgs img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.dm-imgs-4 img { height: 220px; }

@media (max-width: 767px) {
    .dm-imgs img, .dm-imgs-4 img { height: 220px; }
    .dm-list { margin-left: 10px; }
}
