/* Prime Central — stylesheet split from legacy markup */

/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
    font-family:'Open Sans', sans-serif;
    color:#1a1a1a;
    background:#ffffff;
    line-height:1.7;
    overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-thumb { background:#B8232A; }

/* ================================================
   CSS VARIABLES
================================================ */
:root {
    --red: #B8232A;
    --logo-red: #A3262A;
    --red-dark: #8B1A1E;
    --red-light: #fdf2f2;
    --teal: #1A6B8A;
    --teal-dark: #124e67;
    --teal-light: #e8f4f8;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light: #f2f5f7;
    --border: #dde3e8;
    --text: #1c2b35;
    --text-mid: #3a5060;
    --text-grey: #738fa0;
    --heading: 'Montserrat', sans-serif;
    --body: 'Open Sans', sans-serif;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.16);
    --radius: 0px;
    --transition: all 0.25s ease;
    --hero-sky: #b9c9e1;
    --hero-sky-deep: #a8bbd6;
}

/* ================================================
   TOP INFO BAR
================================================ */
.topbar {
    background: var(--teal-dark);
    padding: 9px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-contacts {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-contacts a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-family: var(--body);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.topbar-contacts a:hover { color: #fff; }
.topbar-contacts a svg {
    width: 14px; height: 14px;
    fill: rgba(255,255,255,0.6);
    flex-shrink: 0;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.topbar-cert {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    font-family: var(--body);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 10px;
    text-transform: uppercase;
}

/* ================================================
   NAVIGATION
================================================ */
nav {
    background: #fff;
    border-bottom: 3px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}
nav.scrolled {
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4% 0 6%;
    height: 96px;
    transition: height 0.3s;
}
nav.scrolled .nav-inner { height: 84px; }
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    min-width: 0;
    max-width: min(52vw, 600px);
    text-decoration: none;
    color: inherit;
}
.nav-brand__logo {
    height: 62px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
    transition: height 0.3s;
}
nav.scrolled .nav-brand__logo {
    height: 52px;
}
.nav-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.15;
    min-width: 0;
}
.nav-brand__title {
    font-family: var(--heading);
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 800;
    letter-spacing: 0.35px;
    color: var(--logo-red);
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-brand__tagline {
    font-family: var(--heading);
    font-size: clamp(9px, 0.88vw, 11.5px);
    font-weight: 500;
    letter-spacing: 0.15px;
    color: var(--teal);
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-brand__services-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
}
.nav-brand__rule {
    display: block;
    height: 1px;
    background: var(--logo-red);
    width: 100%;
}
.nav-brand__services {
    font-family: var(--heading);
    font-size: clamp(8.5px, 0.82vw, 10.5px);
    font-weight: 800;
    letter-spacing: 0.45px;
    color: var(--logo-red);
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-brand__sep {
    font-weight: 700;
    padding: 0 2px;
}
.mobile-nav-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.mobile-nav-brand img {
    height: 54px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    flex-shrink: 0;
}
.nav-brand__copy--mobile {
    display: flex;
    padding-right: 8px;
}
.nav-brand__copy--mobile .nav-brand__title {
    font-size: 12px;
    color: var(--logo-red);
    white-space: normal;
    line-height: 1.25;
}
.nav-brand__copy--mobile .nav-brand__tagline {
    font-size: 10.5px;
    color: var(--teal);
    white-space: normal;
    line-height: 1.3;
}
.nav-brand__copy--mobile .nav-brand__services {
    font-size: 9.5px;
    color: var(--logo-red);
    white-space: normal;
    line-height: 1.35;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    padding: 8px 10px;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    margin-left: 8px;
    transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 25px; height: 2px;
    background: var(--text);
    transition: all 0.3s;
}
#mobile-drawer.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
#mobile-drawer.mobile-nav:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav-panel {
    position: absolute;
    top: 0; right: 0;
    width: 280px; height: 100%;
    background: #fff;
    padding: 24px 0;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}
.mobile-nav-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}
.mobile-close {
    background: none; border: none;
    font-size: 24px; cursor: pointer; color: var(--text-mid);
}
.mobile-nav-panel a {
    display: block;
    padding: 13px 24px;
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}
.mobile-nav-panel a:hover {
    color: var(--red);
    background: var(--red-light);
    padding-left: 30px;
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
    background: #ffffff;
    padding: 0;
    border-bottom: 1px solid var(--border);
}
.hero-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 560px;
}
.hero-left {
    background:
        radial-gradient(ellipse 75% 55% at 88% 18%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
        linear-gradient(145deg, #c5d4eb 0%, var(--hero-sky) 42%, var(--hero-sky-deep) 100%);
    padding: 60px 6% 60px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-left::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -30px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}
.hero-left::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(26, 107, 138, 0.08);
    pointer-events: none;
}
.hero-anniversary {
    position: absolute;
    right: 3%;
    top: 18%;
    transform: translateY(-50%);
    width: clamp(180px, 20vw, 280px);
    height: auto;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}
.hero-logo-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}
.hero-logo-wrap img {
    height: 135px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    display: block;
    filter: none;
}
.hero-company-name {
    font-family: var(--heading);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--teal-dark);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.hero-tagline {
    font-family: var(--heading);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-tagline::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}
.hero-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-desc strong {
    color: var(--red);
    font-weight: 700;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.hero-badge {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 107, 138, 0.22);
    color: var(--teal-dark);
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    letter-spacing: 0.5px;
    border-radius: 999px;
}
.hero-stats-row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(26, 107, 138, 0.2);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    backdrop-filter: blur(4px);
}
.hero-stat {
    padding: 14px 22px;
    border-right: 1px solid rgba(26, 107, 138, 0.15);
    text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
    font-family: var(--heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--teal-dark);
    line-height: 1;
}
.hero-stat-n span { color: var(--red); }
.hero-stat-l {
    font-size: 10px;
    font-family: var(--heading);
    font-weight: 600;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}
/* Hero Right - Quote Form */
.hero-right {
    background: #fff;
    border-left: 4px solid var(--red);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-form-title {
    font-family: var(--heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.hero-form-sub {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: var(--body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,107,138,0.07);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group select { cursor: pointer; }
/* Honeypot field — hidden from real users, catches bots */
.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.enquiry-form button[disabled] { opacity: 0.7; cursor: progress; }
.form-status {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    font-family: var(--body);
    padding: 10px 14px;
    border-radius: 8px;
}
.form-status--ok {
    color: #12633f;
    background: #e6f6ed;
    border: 1px solid #b7e4c7;
}
.form-status--error {
    color: #8B1A1E;
    background: var(--red-light);
    border: 1px solid #f3c2c4;
}
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--red);
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border: 2px solid var(--red);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    text-align: center;
}
.btn-secondary:hover { background: var(--red); color: #fff; }

/* ================================================
   SECTION COMMONS
================================================ */
.section {
    padding: 75px 6%;
}
.section-alt { background: var(--off-white); }
.section-dark { background: var(--teal-dark); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 44px; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.section-eyebrow::before {
    content: '';
    width: 28px; height: 3px;
    background: var(--red);
}
.section-eyebrow span {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title {
    font-family: var(--heading);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title .accent { color: var(--teal); }
.section-title .red { color: var(--red); }
.section-sub {
    font-size: 15px;
    color: var(--text-mid);
    max-width: none;
    line-height: 1.5;
    white-space: nowrap;
}
/* Dark section overrides */
.section-dark .section-eyebrow::before { background: rgba(255,200,150,0.8); }
.section-dark .section-eyebrow span { color: rgba(255,200,150,0.9); }
.section-dark .section-title { color: #fff; }
.section-dark .section-title .section-title__warm { color: #ffc947; }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ================================================
   ABOUT SECTION
================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}
.about-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}
.about-text p strong { color: var(--text); font-weight: 700; }
.about-quote {
    border-left: 4px solid var(--red);
    padding: 14px 18px;
    background: var(--red-light);
    margin: 24px 0;
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--red-dark);
    font-style: italic;
}
.about-right {}

.about-blocks {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}
.about-feature__header {
    margin-bottom: 32px;
}

/* Director's Message */
.director-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 40px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.director-showcase__portrait {
    margin: 0;
    position: relative;
    background: linear-gradient(180deg, var(--teal-light) 0%, #fff 100%);
    border-right: 1px solid var(--border);
}
.director-showcase__portrait img {
    display: block;
    width: 100%;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
}
.director-showcase__caption {
    padding: 18px 22px 22px;
    text-align: center;
    border-top: 1px solid var(--border);
    background: #fff;
}
.director-showcase__name {
    display: block;
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}
.director-showcase__role {
    display: block;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.director-showcase__content {
    position: relative;
    padding: 36px 36px 32px 8px;
}
.director-showcase__content:not(.is-message-expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 88px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 85%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.director-showcase__content.is-message-expanded::after {
    opacity: 0;
}
.director-lead {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin: 0 0 18px;
    font-weight: 600;
}
.director-message-more {
    position: relative;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
    margin-bottom: 0;
}
.director-message-more.is-expanded {
    max-height: 1200px;
    opacity: 1;
    margin-bottom: 8px;
}
.director-message-more::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}
.director-message-more.is-expanded::before {
    opacity: 0;
}
.director-message-more p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9;
    margin: 0 0 16px;
}
.director-message-more p:last-child {
    margin-bottom: 0;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 20px;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: color 0.2s ease, gap 0.2s ease;
}
.btn-read-more::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.2s ease;
}
.btn-read-more:hover {
    color: var(--red);
}
.btn-read-more[aria-expanded="true"]::after {
    transform: rotate(90deg);
}
.director-sign {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}
.director-sign__name {
    display: block;
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}
.director-sign__company {
    display: block;
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.3px;
}

/* People & Infrastructure */
.people-infra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--teal);
    border-radius: 14px;
    padding: 28px 26px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--red);
}
.feature-card:nth-child(2n) {
    border-left-color: var(--red);
}
.feature-card:nth-child(2n):hover {
    border-left-color: var(--teal);
}
.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: var(--teal-light);
    border-radius: 12px;
    margin-bottom: 18px;
}
.feature-card:nth-child(2n) .feature-card__icon {
    background: var(--red-light);
}
.feature-card__title {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.3;
}
.feature-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9;
    margin: 0;
}

/* ================================================
   CAREERS SECTION
================================================ */
.careers-section {
    background: linear-gradient(180deg, #fff 0%, #f6fafc 100%);
}
.careers-section__header {
    margin-bottom: 44px;
}
.careers-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) 1.08fr;
    gap: 28px;
    align-items: start;
}
.careers-aside {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.careers-aside__body {
    padding: 28px 26px 30px;
}
.careers-aside__title {
    font-family: var(--heading);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.3;
}
.careers-aside__lead {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0 0 18px;
}
.careers-perks {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.careers-perks li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
}
.careers-perks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-light);
}
.careers-cv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--red) 0%, #d64f33 100%);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(184, 35, 42, 0.22);
    transition: var(--transition);
}
.careers-cv-btn:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, #b83d28 100%);
    transform: translateY(-1px);
}
.careers-cv-btn--outline {
    background: transparent;
    color: var(--teal);
    border: 1px solid var(--teal);
    box-shadow: none;
}
.careers-cv-btn--outline:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
    transform: translateY(-1px);
}
.careers-aside__note {
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.65;
}
.careers-aside__note a {
    color: var(--teal);
    font-weight: 600;
}
.careers-openings {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 26px 26px 28px;
}
.careers-openings__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.careers-openings__title {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
}
.careers-openings__sub {
    font-size: 14px;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.5;
}
.careers-openings__count {
    flex-shrink: 0;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 8px 12px;
    border-radius: 999px;
}
.careers-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.careers-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 14px 20px;
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    border: 1px solid rgba(26, 107, 138, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.careers-view-more:hover {
    background: #dceef5;
    border-color: var(--teal);
    color: var(--teal-dark);
}
.careers-view-more::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.25s ease;
}
.careers-view-more[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}
.careers-jobs-list--expanded .careers-job--extra {
    animation: careersJobReveal 0.35s ease forwards;
}
@keyframes careersJobReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.careers-job {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    background: #fff;
    transition: var(--transition);
}
.careers-job:hover {
    border-color: rgba(26, 107, 138, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.careers-job__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}
.careers-job__title {
    font-family: var(--heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.35;
}
.careers-job__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.careers-job__tag {
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 4px 10px;
    border-radius: 999px;
}
.careers-job__tag--dept {
    color: var(--red-dark);
    background: var(--red-light);
}
.careers-job__date {
    flex-shrink: 0;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-grey);
    white-space: nowrap;
    padding-top: 2px;
}
.careers-job__summary {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.5;
}
.careers-job__desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0 0 12px;
}
.careers-job__reqs-title {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-grey);
    margin: 0 0 8px;
}
.careers-job__reqs {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.careers-job__reqs li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
}
.careers-job__reqs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
}
.careers-job__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.btn-careers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 18px;
    background: var(--teal);
    color: #fff;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-careers:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}
.btn-careers::after {
    content: "→";
    font-size: 14px;
}
.careers-empty {
    padding: 36px 24px;
    text-align: center;
    background: linear-gradient(180deg, #f8fcff 0%, #f1f6fb 100%);
    border: 1px dashed rgba(26, 107, 138, 0.25);
    border-radius: 12px;
}
.careers-empty__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.careers-empty__icon svg {
    width: 26px;
    height: 26px;
}
.careers-empty__title {
    font-family: var(--heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}
.careers-empty__text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
.kpi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--teal);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.kpi-card:nth-child(2n) { border-top-color: var(--red); }
.kpi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kpi-number {
    font-family: var(--heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.kpi-number span { color: var(--red); }
.kpi-label {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.mv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--teal);
    padding: 18px 16px;
    box-shadow: var(--shadow);
}
.mv-card.vision { border-left-color: var(--red); }
.mv-card h4 {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.mv-card.vision h4 { color: var(--red); }
.mv-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ================================================
   SERVICES SECTION
================================================ */
.services-section__header {
    margin-bottom: 36px;
}
.services-section__header .section-sub {
    margin-bottom: 0;
}
.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.service-category--unified {
    margin-top: 4px;
}
.service-category__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.service-category__title {
    font-family: var(--heading);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}
.service-category__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.service-category__arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-mid);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}
.service-category__arrow:hover:not(:disabled) {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-light);
}
.service-category__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.service-category__track {
    --service-gap: 16px;
    --service-visible: 4;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(
        (100% - (var(--service-visible) - 1) * var(--service-gap)) / var(--service-visible)
    );
    gap: var(--service-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.service-category--carousel .service-category__track {
    overflow-x: hidden;
    scrollbar-width: none;
}
.service-category--carousel .service-category__track::-webkit-scrollbar {
    display: none;
}
.service-category__track::-webkit-scrollbar {
    height: 6px;
}
.service-category__track::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px;
}
.service-category__nav[hidden] {
    display: none;
}
.service-offer-card {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: var(--transition);
}
.service-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-offer-card--clone {
    pointer-events: none;
    user-select: none;
}
.service-offer-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--teal-light);
}
.service-offer-card__media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--red) 100%);
}
.service-offer-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-offer-card:hover .service-offer-card__media img {
    transform: scale(1.04);
}
.service-offer-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}
.service-offer-card__body::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 14px;
}
.service-offer-card__title {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.35;
    margin: 0 0 10px;
}
.service-offer-card__desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0 0 12px;
    flex: 1;
}
.service-offer-card__note {
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    margin: 0;
}

/* Legacy icon grid (unused after catalog layout) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.service-card {
    background: #fff;
    padding: 32px 26px;
    transition: var(--transition);
    cursor: default;
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.service-card:hover {
    background: var(--off-white);
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
    width: 52px; height: 52px;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: background 0.25s;
}
.service-card:hover .service-icon-wrap { background: var(--red); }
.service-name {
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px;
    line-height: 1.3;
}
.service-desc {
    font-size: 13.5px;
    color: var(--text-grey);
    line-height: 1.7;
}

/* ================================================
   GALLERY SECTION
================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 10px;
}
.gal-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--border);
}
.gal-item:first-child { grid-row: span 2; }
.gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(18,78,103,0.88) 0%, transparent 100%);
    padding: 18px 16px 14px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.93);
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lb-inner {
    position: relative;
    max-width: 90vw; max-height: 88vh;
}
.lb-inner img {
    max-width: 100%; max-height: 84vh;
    object-fit: contain; display: block;
}
.lb-cap {
    position: absolute; bottom: -34px; left: 0; right: 0;
    text-align: center;
    font-family: var(--heading);
    font-size: 12px; color: rgba(255,255,255,0.65);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.lb-close {
    position: absolute; top: -42px; right: 0;
    font-size: 30px; color: #fff;
    cursor: pointer; background: none; border: none;
    opacity: 0.7; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none; color: #fff;
    font-size: 30px; padding: 14px 18px;
    cursor: pointer; transition: background 0.2s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: var(--red); }

/* ================================================
   INDUSTRIES SECTION
================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.industry-card {
    --industry-accent: var(--teal);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--industry-accent);
    border-radius: 14px;
    padding: 28px 24px 26px;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
    cursor: default;
}
.industry-card--teal { --industry-accent: #5ec4e8; }
.industry-card--red { --industry-accent: #f06b72; }
.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 55%
    );
    pointer-events: none;
}
.industry-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.industry-card--teal:hover {
    border-left-color: #5ec4e8;
    box-shadow: 0 12px 32px rgba(26, 107, 138, 0.25);
}
.industry-card--red:hover {
    border-left-color: #f06b72;
    box-shadow: 0 12px 32px rgba(184, 35, 42, 0.28);
}
.industry-card__index {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--heading);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: -2px;
    pointer-events: none;
    user-select: none;
}
.industry-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--industry-accent);
    margin-bottom: auto;
    transition: var(--transition);
}
.industry-card__icon svg {
    width: 28px;
    height: 28px;
}
.industry-card:hover .industry-card__icon {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.06);
}
.industry-card__label {
    position: relative;
    display: block;
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--industry-accent);
    margin-top: 18px;
    margin-bottom: 10px;
}
.industry-card__title {
    position: relative;
    font-family: var(--heading);
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

/* ================================================
   PROCESS SECTION
================================================ */
.process-section {
    background: linear-gradient(180deg, #f8fcff 0%, #eef4f9 100%);
}
.process-section__header {
    text-align: center;
    margin-bottom: 48px;
}
.process-section__header .section-eyebrow {
    justify-content: center;
}
.process-section__header .section-sub {
    margin-left: auto;
    margin-right: auto;
}
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.process-phase {
    margin-bottom: 8px;
}
.process-phase__head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.process-phase__tag {
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    padding: 6px 12px;
    background: var(--teal-light);
    border-radius: 999px;
}
.process-phase--reverse .process-phase__tag {
    color: var(--red);
    background: var(--red-light);
}
.process-phase__name {
    font-family: var(--heading);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 800;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.2px;
}
.process-phase__track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
    padding-top: 18px;
}
.process-phase__track::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(26, 107, 138, 0.35) 0%,
        rgba(184, 35, 42, 0.35) 100%
    );
    z-index: 0;
    pointer-events: none;
}
.process-phase--reverse .process-phase__track {
    direction: rtl;
}
.process-phase--reverse .process-card {
    direction: ltr;
}
.process-flow__bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 32px;
    padding: 0 6%;
}
.process-flow__bridge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(26, 107, 138, 0.35) 20%,
        rgba(184, 35, 42, 0.35) 80%,
        transparent
    );
}
.process-flow__bridge-label {
    flex-shrink: 0;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-mid);
    padding: 8px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow);
}
.process-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 20px 18px 22px;
    text-align: left;
    transition: var(--transition);
    overflow: hidden;
}
.process-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--step-color);
}
.process-card--teal {
    --step-color: var(--teal);
    --step-soft: var(--teal-light);
}
.process-card--red {
    --step-color: var(--red);
    --step-soft: var(--red-light);
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 107, 138, 0.2);
}
.process-card--red:hover {
    border-color: rgba(184, 35, 42, 0.25);
}
.process-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}
.process-card__num {
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: var(--step-color);
    letter-spacing: -1px;
    opacity: 0.9;
}
.process-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--step-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--step-color);
}
.process-card__icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.process-card__title {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.process-card__desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Legacy process grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.process-step {
    padding: 30px 22px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.25s;
    cursor: default;
}
.process-step:last-child { border-right: none; }
.process-step:nth-child(n+5) { border-top: 1px solid var(--border); }
.process-step:hover { background: var(--off-white); }
.process-num {
    font-family: var(--heading);
    font-size: 46px; font-weight: 900;
    color: var(--border);
    line-height: 1; margin-bottom: 10px;
}
.process-icon { font-size: 26px; margin-bottom: 9px; }
.process-name {
    font-family: var(--heading);
    font-size: 14px; font-weight: 700;
    color: var(--text);
}
.process-arrow {
    position: absolute;
    top: 50%; right: -11px;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--red); z-index: 2;
}
.process-step:nth-child(4) .process-arrow,
.process-step:last-child .process-arrow { display: none; }

/* ================================================
   CLIENTS SECTION
================================================ */
.clients-marquee { margin-top: 32px; overflow: hidden; position: relative; }
.clients-marquee::before, .clients-marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.clients-marquee::before { left: 0; background: linear-gradient(to right, #f8fcff, transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(to left, #f1f6fb, transparent); }
.clients-track {
    display: flex;
    gap: 14px;
    animation: marquee 45s linear infinite;
    width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-chip {
    flex-shrink: 0;
    height: 88px;
    min-width: 180px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    transition: var(--transition);
    box-shadow: none;
}
.client-chip:hover {
    border-color: rgba(26, 107, 138, 0.35);
    box-shadow: none;
    transform: translateY(-2px);
}
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.client-logo img {
    display: block;
    max-width: 150px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(15%);
    opacity: 0.9;
    transition: var(--transition);
}
.client-chip:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ================================================
   CERTIFICATIONS SECTION
================================================ */
.cert-grid {
    display: flex; flex-wrap: wrap;
    gap: 16px; justify-content: center;
    margin-bottom: 40px;
}
.cert-card {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--teal);
    box-shadow: var(--shadow);
    flex: 1; min-width: 190px; max-width: 215px;
    transition: var(--transition);
}
.cert-card:nth-child(even) { border-top-color: var(--red); }
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-icon { font-size: 30px; flex-shrink: 0; }
.cert-name {
    font-family: var(--heading);
    font-size: 18px; font-weight: 800;
    color: var(--text); line-height: 1;
}
.cert-sub {
    font-size: 10px; color: var(--text-grey);
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 2px;
}
.stats-bar {
    display: flex;
    background: var(--teal-dark);
    border: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 26px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--heading);
    font-size: 40px; font-weight: 800;
    color: #fff; line-height: 1;
}
.stat-num span { color: #ffc947; }
.stat-label {
    font-family: var(--heading);
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 2px;
    margin-top: 5px;
}

/* ================================================
   CONTACT SECTION
================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 52px;
}
.contact-logo { margin-bottom: 24px; }
.contact-logo img { height: 56px; width: auto; max-width: 220px; object-fit: contain; }
.contact-info-block { margin-bottom: 22px; }
.info-label {
    font-family: var(--heading);
    font-size: 10px; font-weight: 700;
    color: var(--teal); text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 5px;
}
.info-value {
    font-family: var(--heading);
    font-size: 15px; font-weight: 600;
    color: var(--text); line-height: 1.55;
}
.info-value a { color: var(--text); transition: color 0.2s; }
.info-value a:hover { color: var(--red); }
.social-links { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.social-btn {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    font-family: var(--heading);
    font-size: 12px; font-weight: 700;
    color: var(--text-mid);
    transition: var(--transition);
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.contact-form-wrap {
    background: #fff;
    border-top: 4px solid var(--red);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ================================================
   FOOTER
================================================ */
footer {
    background:
        radial-gradient(ellipse 70% 50% at 12% 100%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
        linear-gradient(180deg, #c5d4eb 0%, var(--hero-sky) 45%, var(--hero-sky-deep) 100%);
    border-top: none;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding: 52px 6% 40px;
    border-bottom: 1px solid rgba(26, 107, 138, 0.18);
}
footer .footer-brand img {
    height: 72px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
    filter: none;
    opacity: 1;
}
.footer-brand p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 16px;
}
.footer-iso { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-iso span {
    padding: 3px 10px;
    border: 1px solid rgba(26, 107, 138, 0.22);
    background: rgba(255, 255, 255, 0.45);
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--teal-dark);
    text-transform: uppercase;
    border-radius: 4px;
}
.footer-col h4 {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 9px;
    transition: color 0.2s;
    font-family: var(--body);
}
.footer-col a:hover {
    color: var(--red);
}
.footer-col p {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 8px;
    font-family: var(--body);
}
.footer-bottom {
    padding: 16px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(26, 107, 138, 0.12);
}
.footer-copy {
    font-size: 12px;
    color: var(--text-grey);
    font-family: var(--body);
}
.footer-copy strong {
    color: var(--teal-dark);
}
.footer-web {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
}

/* ================================================
   ANIMATIONS (minimal)
================================================ */
.fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: 0s; }
.fade-in.d2 { transition-delay: 0s; }
.fade-in.d3 { transition-delay: 0s; }
.fade-in.d4 { transition-delay: 0s; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1200px) {
    .process-phase__track {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-phase__track::before {
        display: none;
    }
}
@media (max-width: 900px) {
    .process-phase__track {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1400px) {
    .nav-brand__tagline {
        display: none;
    }
}
/* Hide the long company-name text next to the logo until the viewport is wide
   enough to fit it AND the full menu without crowding the Contact button. */
@media (max-width: 1399px) {
    .nav-brand__copy {
        display: none;
    }
    .nav-brand {
        max-width: none;
    }
}
/* Mid-range desktop / small laptop: keep the horizontal menu but tighten
   spacing so all 9 items + the Contact button always fit on one line. */
@media (min-width: 1101px) and (max-width: 1400px) {
    .nav-menu { gap: 2px; }
    .nav-menu a { padding: 8px 8px; font-size: 11.5px; }
    .nav-cta { padding: 9px 16px !important; margin-left: 6px; }
    .nav-brand__logo { max-width: 150px; }
}
/* Collapse the menu into the hamburger before it can overflow and cut off
   the Contact button on tablets and narrow laptops. */
@media (max-width: 1100px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .nav-brand__logo {
        max-width: 170px;
        height: 56px;
    }
}
@media (max-width: 1024px) {
    .service-category__track {
        --service-visible: 2;
    }
    .hero-main { grid-template-columns: 1fr; }
    .hero-anniversary {
        top: 8%;
        right: 4%;
        width: clamp(130px, 22vw, 200px);
    }
    .hero-right { border-left: none; border-top: 4px solid var(--red); max-width: 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .director-showcase { grid-template-columns: 1fr; }
    .director-showcase__portrait { border-right: none; border-bottom: 1px solid var(--border); }
    .director-showcase__portrait img { min-height: 360px; max-height: 440px; }
    .director-showcase__content { padding: 28px 24px 24px; }
    .people-infra-grid { grid-template-columns: 1fr; }
    .careers-layout { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 55px 5%; }
    .service-category__track,
    .service-category--carousel .service-category__track {
        display: flex;
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        padding-bottom: 14px;
        scrollbar-width: none;
    }
    .service-category__track::-webkit-scrollbar {
        display: none;
    }
    .service-offer-card {
        flex: 0 0 86%;
        width: 86%;
        max-width: 360px;
        min-height: auto;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    .service-offer-card__media {
        aspect-ratio: 16 / 9;
    }
    .service-offer-card__body {
        padding: 20px 20px 22px;
    }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .process-phase__track {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 0;
        padding-left: 20px;
        border-left: 2px solid var(--border);
        margin-left: 8px;
    }
    .process-phase--reverse .process-phase__track {
        direction: ltr;
    }
    .process-phase__track::before {
        display: none;
    }
    .process-flow__bridge {
        margin: 20px 0 24px;
        flex-direction: column;
        gap: 10px;
    }
    .process-flow__bridge-line {
        width: 2px;
        height: 24px;
        flex: none;
        background: linear-gradient(180deg, var(--teal), var(--red));
    }
    .process-card::before {
        content: "";
        position: absolute;
        left: -29px;
        top: 28px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--step-color);
        border: 2px solid #fff;
        box-shadow: 0 0 0 2px var(--step-color);
    }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-rows: 200px 200px; }
    .stats-bar { flex-wrap: wrap; }
    .stat-item { min-width: 140px; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .director-showcase { grid-template-columns: 1fr; }
    .director-showcase__portrait { border-right: none; border-bottom: 1px solid var(--border); }
    .director-showcase__portrait img { min-height: 320px; max-height: 400px; }
    .director-showcase__content { padding: 24px 20px 22px; }
    .people-infra-grid { grid-template-columns: 1fr; }
    .careers-layout { grid-template-columns: 1fr; gap: 24px; }
    .careers-openings { padding: 20px 18px 22px; }
    .careers-aside__body { padding: 20px 18px 22px; }
}
@media (max-width: 520px) {
    .services-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .gal-item { height: 210px; }
    .gal-item:first-child { grid-row: span 1; }
    .hero-stats-row { flex-wrap: wrap; }
    .hero-anniversary {
        top: 6%;
        right: 3%;
        width: clamp(105px, 30vw, 150px);
    }
    .hero-logo-wrap img { height: 96px; max-width: 290px; }
    .cert-card { max-width: 100%; flex: 1 1 calc(50% - 8px); }
    .mv-grid { grid-template-columns: 1fr; }
    .kpi-grid { grid-template-columns: 1fr 1fr; }
    .topbar { display: none; }
}

/* ================================================
   DESIGN REFRESH OVERRIDES (2026)
================================================ */
:root {
    --red: #e14b36;
    --red-dark: #b33427;
    --teal: #0e5d7b;
    --teal-dark: #083e56;
    --teal-light: #e8f5fb;
    --off-white: #f4f7fb;
    --border: #d8e3ec;
    --text: #14212b;
    --text-mid: #2f4657;
    --text-grey: #678194;
    --shadow: 0 10px 28px rgba(8, 28, 43, 0.08);
    --shadow-md: 0 16px 42px rgba(8, 28, 43, 0.14);
    --shadow-lg: 0 26px 60px rgba(8, 28, 43, 0.2);
    --radius: 14px;
}

body {
    background:
        radial-gradient(circle at 0% 0%, rgba(14, 93, 123, 0.08), transparent 35%),
        radial-gradient(circle at 100% 0%, rgba(225, 75, 54, 0.08), transparent 32%),
        #f7fbff;
    color: var(--text);
}

.topbar { background: linear-gradient(90deg, #083e56 0%, #0c617f 100%); padding: 10px 6%; }
nav { background: rgba(255,255,255,0.94); border-bottom: 1px solid var(--border); backdrop-filter: blur(8px); }
.nav-inner { height: 96px; }
nav.scrolled .nav-inner { height: 84px; }
.nav-menu a { border-radius: 999px; }
.nav-menu a:hover { background: #f2f8fc; }
.nav-cta { border-radius: 999px; box-shadow: 0 10px 20px rgba(225,75,54,0.25); }

.hero { border-bottom: none; padding: 24px 6% 0; }
.hero-main { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 610px; }
.hero-left { padding: 70px 7%; }
.hero-badge, .topbar-cert { border-radius: 999px; }
.hero-stats-row { border-radius: 12px; overflow: hidden; }
.hero-right { background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%); border-left: none; }

.form-group input, .form-group select, .form-group textarea, .btn-primary, .btn-secondary, .social-btn, .client-chip, .industry-card, .service-card, .kpi-card, .mv-card, .cert-card, .contact-form-wrap { border-radius: var(--radius); }
.btn-primary { background: linear-gradient(135deg, var(--red) 0%, #f05f41 100%); box-shadow: 0 12px 22px rgba(225,75,54,0.25); }
.btn-primary:hover { background: linear-gradient(135deg, var(--red-dark) 0%, #d64f33 100%); transform: translateY(-1px); }

.section { padding: 85px 6%; }
.section-alt { background: linear-gradient(180deg, #f8fcff 0%, #f1f6fb 100%); }
.section-title { letter-spacing: -0.4px; }
.section-eyebrow span { letter-spacing: 2.4px; }

.services-grid { gap: 16px; border: none; background: transparent; }
.service-offer-card { border-radius: 14px; }
.service-card { border: 1px solid var(--border); box-shadow: var(--shadow); }
.service-card::after { left: 20px; right: 20px; border-radius: 3px; }
.service-icon-wrap { border-radius: 12px; background: #e9f4fb; }

.gallery-grid { gap: 14px; }
.gal-item { border-radius: 14px; }

.kpi-card { border-top: 0; border-left: 4px solid var(--teal); }
.kpi-card:nth-child(2n) { border-left-color: var(--red); }
.mv-card { border-left-width: 5px; }

.section-dark { background: linear-gradient(145deg, #083e56 0%, #0b5b77 100%); }
.industries-grid { gap: 18px; }
.industry-card { border-radius: 14px; }

.process-grid { gap: 14px; border: none; }
.process-flow { gap: 0; }
.process-card { border-radius: 14px; box-shadow: var(--shadow); }
.process-step { border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); }

.stats-bar { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.contact-form-wrap { border-top: 0; border-left: 5px solid var(--red); }
footer { border-top: none; }

@media (max-width: 1024px) {
    .hero { padding: 10px 4% 0; }
    .hero-right { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
    .section { padding: 62px 5%; }
    .services-grid, .process-grid { gap: 12px; }
    .hero { padding: 10px 3% 0; }
    .hero-left { padding: 46px 24px 44px; }
    .hero-main { min-height: 0; }
    .hero-company-name { font-size: clamp(22px, 6vw, 28px); }
    .contact-form-wrap { border-left-width: 4px; }
}
@media (max-width: 480px) {
    .section { padding: 48px 18px; }
    .hero { padding: 8px 12px 0; }
    .hero-left { padding: 34px 18px 32px; }
    .hero-main { border-radius: 16px; }
    .hero-badges { gap: 6px; }
    .hero-badge { font-size: 11px; padding: 4px 11px; }
    .hero-stat { padding: 12px 16px; }
    .hero-right { padding: 28px 20px; }
    .section-title { font-size: clamp(22px, 7vw, 28px); }
    .kpi-grid { grid-template-columns: 1fr; }
    .cert-card { flex: 1 1 100%; max-width: 100%; }
    .footer-main { padding: 40px 6% 32px; }
    .social-links { flex-wrap: wrap; }
}


/* --- No-JS: mobile drawer backdrop --- */
.mobile-nav__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
#mobile-drawer .mobile-nav-panel {
    z-index: 1;
}

/* --- No-JS: gallery thumbnails as links --- */
.gal-item__link {
    display: block;
    height: 100%;
    color: inherit;
    position: relative;
}
.gal-item__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gal-item__link .gal-overlay {
    pointer-events: none;
}

/* --- No-JS: gallery lightboxes (:target) --- */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.93);
    align-items: center;
    justify-content: center;
    padding: 48px 16px 40px;
    box-sizing: border-box;
}
.gallery-lightbox:target {
    display: flex;
}
.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: default;
}
.gallery-lightbox__inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    z-index: 1;
}
.gallery-lightbox__inner img {
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    display: block;
}
.gallery-lightbox__cap {
    position: absolute;
    bottom: -34px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--heading);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.gallery-lightbox__close {
    position: absolute;
    top: -42px;
    right: 0;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    opacity: 0.85;
    z-index: 2;
}
.gallery-lightbox__close:hover {
    opacity: 1;
}
.gallery-lightbox__prev,
.gallery-lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 30px;
    padding: 14px 18px;
    text-decoration: none;
    line-height: 1;
    z-index: 2;
    transition: background 0.2s;
}
.gallery-lightbox__prev {
    left: 16px;
}
.gallery-lightbox__next {
    right: 16px;
}
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
    background: var(--red);
}

.skip-target {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a.hamburger,
a.mobile-close {
    text-decoration: none;
    color: inherit;
}

/* ================================================
   JUSTIFIED BODY COPY (readable paragraphs)
================================================ */
.hero-desc,
.about-grid > .fade-in:first-child p,
.director-lead,
.director-message-more p,
.feature-card p,
.service-offer-card__desc,
.process-card__desc,
.service-desc,
.careers-aside__lead,
.careers-aside__note,
.careers-job__summary,
.careers-job__desc,
.careers-job__reqs li,
.mv-card p,
.footer-brand p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    text-wrap: pretty;
}

/* Short labels, quotes, and UI text stay naturally aligned */
.about-quote,
.director-sign,
.hero-form-sub,
.director-showcase__caption,
.careers-openings__title,
.careers-openings__sub,
.careers-empty__title,
.careers-empty__text,
.careers-job__reqs-title,
.kpi-label,
.stat-label,
.process-card__title,
.industry-card__title,
.service-offer-card__title,
.service-name,
.cert-name,
.cert-sub,
.nav-brand__title,
.nav-brand__tagline,
.nav-brand__services,
.nav-menu a,
.footer-col a,
.footer-copy,
.footer-web {
    text-align: left;
}
.section-header,
.section-header .section-sub,
.hero-stats-row,
.kpi-card,
.stat-item,
.gallery-lightbox__cap,
.clients-track {
    text-align: inherit;
}
.section-header .section-sub {
    text-align: inherit;
}
@media (max-width: 900px) {
    .section-sub {
        white-space: normal;
        max-width: 100%;
    }
}
