/* ═══════════════════════════════════════════════════════════
   MEOFS — Main Stylesheet
   Palette: Teal #2CBFAC · White #FFFFFF · Off-white #F7FAFA
   Font: Inter (Google Fonts)
═══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
────────────────────────────────────────────── */
:root {
    --teal:           #2CBFAC;
    --teal-dark:      #1E9E8E;
    --teal-darker:    #157A6E;
    --teal-light:     #E4F7F5;
    --teal-pale:      #F0FAF9;
    --white:          #FFFFFF;
    --off-white:      #F7FAFA;
    --grey-100:       #EEF4F3;
    --grey-200:       #D8E8E6;
    --grey-400:       #8AACAA;
    --grey-600:       #4A6E6C;
    --text:           #1A2E2C;
    --text-muted:     #5A7A78;
    --border:         #DDE9E8;

    --font:           'Inter', system-ui, -apple-system, sans-serif;
    --radius-sm:      6px;
    --radius:         12px;
    --radius-lg:      20px;
    --radius-xl:      28px;

    --shadow-sm:      0 1px 3px rgba(44,191,172,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow:         0 4px 16px rgba(44,191,172,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg:      0 12px 40px rgba(44,191,172,.14), 0 4px 12px rgba(0,0,0,.08);

    --transition:     0.22s cubic-bezier(.4,0,.2,1);
    --container:      1200px;
    --header-h:       72px;
}

/* ──────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ──────────────────────────────────────────────
   LAYOUT UTILS
────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.section-alt {
    background: var(--off-white);
}

/* ──────────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .65rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header-flex .section-subtitle {
    margin-inline: 0;
}

/* ──────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-size: .9375rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(44,191,172,.35);
}
.btn-primary:hover {
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(44,191,172,.45);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}
.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    margin-top: 1rem;
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--teal-pale);
    color: var(--teal-darker);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ──────────────────────────────────────────────
   HEADER
────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-logo { display: flex; align-items: center; text-decoration: none; }
.site-logo img { height: 66px; width: auto; }

.logo-text {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -.02em;
    line-height: 1;
}
.logo-dot { color: var(--teal); }

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-list li a {
    display: block;
    padding: .5rem .875rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-list li a:hover,
.nav-list li.current-menu-item > a {
    color: var(--teal);
    background: var(--teal-light);
}

.nav-list li:last-child a {
    background: var(--teal);
    color: var(--white);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
}
.nav-list li:last-child a:hover {
    background: var(--teal-dark);
    color: var(--white);
}

/* App icons */
.header-apps {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1rem;
}
.header-app-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity var(--transition), transform var(--transition);
}
.header-app-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.header-app-link img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}
.header-app-link img[src*="app-norma"] {
    border: 1.5px solid var(--teal);
}
.header-app-link span {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    line-height: 1;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #0d3330 0%, #1a4f4a 40%, #1f6860 70%, #2CBFAC 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(44,191,172,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44,191,172,.12) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232CBFAC' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,30,28,.85) 40%, rgba(10,30,28,.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: clamp(4rem, 10vw, 8rem);
}

.hero-text { max-width: 640px; }

.hero-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
    padding: .35rem .9rem;
    background: rgba(44,191,172,.15);
    border-radius: 50px;
    border: 1px solid rgba(44,191,172,.3);
}

.hero-title {
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.06;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
}

.hero-title-accent {
    color: var(--teal);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.175rem);
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: .4; transform: scaleY(.6); }
}

/* ──────────────────────────────────────────────
   STATS BAR
────────────────────────────────────────────── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-block: 1.75rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: clamp(1.5rem, 4vw, 3.5rem);
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    letter-spacing: -.02em;
}

.stat-plus {
    font-size: .75em;
    vertical-align: super;
}

.stat-label {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .35rem;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   ABOUT INTRO
────────────────────────────────────────────── */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-intro-image {
    position: relative;
}
.about-intro-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.about-intro-badge {
    position: absolute;
    bottom: -1.25rem;
    right: -1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: .875rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text);
    max-width: 220px;
    border: 1px solid var(--border);
}
.about-intro-badge svg {
    width: 28px;
    height: 28px;
    color: var(--teal);
    flex-shrink: 0;
}

.about-intro-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.0125rem;
    text-align: justify;
    hyphens: auto;
}

.value-list {
    margin-block: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.value-list li {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .9375rem;
    color: var(--text);
}
.value-list li svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   SERVICES OVERVIEW (homepage)
────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(44,191,172,.3);
}

.service-card-featured {
    background: linear-gradient(135deg, #0f3b38 0%, #1a5a55 100%);
    border-color: transparent;
    color: var(--white);
}
.service-card-featured h3,
.service-card-featured p,
.service-card-featured .service-features li {
    color: rgba(255,255,255,.9);
}
.service-card-featured .service-link {
    color: var(--teal);
}
.service-card-featured .service-link:hover {
    color: #7addd3;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    color: var(--teal);
}
.service-card-featured .service-card-icon {
    color: rgba(44,191,172,.85);
}

.service-card-body h3 {
    font-size: 1.3125rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.service-card-body p {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.service-card-featured .service-card-body p {
    color: rgba(255,255,255,.7);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-block: .75rem;
}
.service-features li {
    font-size: .875rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--teal);
    margin-top: auto;
    transition: gap var(--transition);
}
.service-link:hover { gap: .7rem; }
.service-link svg { width: 16px; height: 16px; }

/* ──────────────────────────────────────────────
   PRODUCTS OVERVIEW (homepage)
────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(44,191,172,.25);
}

.product-card-visual {
    width: 80px;
    height: 80px;
    color: var(--teal);
    opacity: .75;
    margin-bottom: 1.25rem;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.product-card p {
    font-size: .9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: 1.25rem;
}
.product-categories li {
    font-size: .875rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}
.product-categories li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
}

/* ──────────────────────────────────────────────
   PARTNERS CAROUSEL
────────────────────────────────────────────── */
.partners-track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scrollPartners 50s linear infinite;
    width: max-content;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes scrollPartners {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    width: 260px;
    height: 140px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    transition: all var(--transition);
}
.partner-logo:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: scale(1.04);
}
.partner-logo img {
    max-height: 138px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    filter: grayscale(60%);
    transition: filter var(--transition);
}
.partner-logo:hover img { filter: grayscale(0%); }

/* ──────────────────────────────────────────────
   CLIENTS
────────────────────────────────────────────── */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

.client-logo {
    flex-shrink: 0;
    width: 260px;
    height: 140px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    transition: all var(--transition);
}
.client-logo:hover {
    background: var(--white);
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: scale(1.04);
}
.client-logo img {
    max-height: 138px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
}
.client-logo--knpc img {
    max-height: 260px;
    max-width: 280px;
}
.client-logo--slb img {
    max-height: 125px;
    max-width: 210px;
}
.client-logo--nesr img {
    filter: brightness(0);
}


/* ──────────────────────────────────────────────
   NEWS CARDS
────────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(44,191,172,.25);
}

.news-card-large { flex-direction: row; }
.news-card-large .news-card-image {
    width: 42%;
    flex-shrink: 0;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.news-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.news-card-date {
    font-size: .8rem;
    font-weight: 500;
    color: var(--grey-400);
}

.news-card-cat {
    font-size: .75rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--teal-light);
    padding: .2rem .65rem;
    border-radius: 50px;
}

.news-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin-block: .25rem;
}
.news-card-title a { color: var(--text); }
.news-card-title a:hover { color: var(--teal); }

.news-card-excerpt {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--teal);
    margin-top: auto;
    transition: gap var(--transition);
}
.news-card-link:hover { gap: .6rem; }
.news-card-link svg { width: 15px; height: 15px; }

.news-empty, .news-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}
.news-empty-state svg {
    width: 60px;
    height: 60px;
    color: var(--grey-200);
    margin: 0 auto 1.5rem;
}
.news-empty-state h2 { margin-bottom: .75rem; }
.news-empty-state p { margin-bottom: 1.5rem; }

/* ──────────────────────────────────────────────
   CTA STRIP
────────────────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, #0f3b38 0%, var(--teal-dark) 60%, var(--teal) 100%);
    padding-block: clamp(3rem, 6vw, 5rem);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}
.cta-strip-text p {
    color: rgba(255,255,255,.75);
    font-size: 1.0125rem;
}

.cta-strip-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0d3330 0%, #1a4f4a 50%, #1f6860 100%);
    padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
    padding-bottom: clamp(3rem, 7vw, 6rem);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232CBFAC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero .section-eyebrow { color: var(--teal); }

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: clamp(.975rem, 2vw, 1.125rem);
    color: rgba(255,255,255,.72);
    max-width: 580px;
    line-height: 1.65;
}

.page-hero-short {
    padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
    padding-bottom: clamp(2rem, 5vw, 4rem);
}

.page-hero-post .post-hero-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .875rem;
}

/* ──────────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────────── */
.about-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.about-overview-images {
    position: relative;
}
.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.about-img-secondary {
    width: 55%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-overview-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.0125rem;
    text-align: justify;
    hyphens: auto;
}

/* ──────────────────────────────────────────────
   PROCESS / "HOW WE WORK" INFOGRAPHIC
────────────────────────────────────────────── */
.process-section .section-header { text-align: center; margin-bottom: 3.5rem; }

.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 2rem 1.25rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
}
.process-step:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.process-step-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.25rem;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.process-step-icon svg { width: 44px; height: 44px; }

.process-step-number {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--teal);
    background: var(--teal-light);
    padding: .25rem .7rem;
    border-radius: 50px;
    margin-bottom: .75rem;
}

.process-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: .6rem;
}

.process-step p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.process-step-connector {
    flex: 0 0 40px;
    align-self: center;
    height: 2px;
    background: linear-gradient(to right, var(--teal-light), var(--teal), var(--teal-light));
    position: relative;
    margin: 0 -2px;
}
.process-step-connector::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--teal);
    border-top: 2px solid var(--teal);
    rotate: 45deg;
}

@media (max-width: 900px) {
    .process-steps { flex-direction: column; gap: 1rem; }
    .process-step-connector {
        flex: 0 0 32px;
        width: 2px;
        height: 32px;
        background: linear-gradient(to bottom, var(--teal-light), var(--teal), var(--teal-light));
        margin: 0 auto;
    }
    .process-step-connector::after { right: 50%; top: auto; bottom: -2px; transform: translateX(50%); rotate: 135deg; }
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.pillar:hover {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .about-pillars { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
}
.pillar svg {
    width: 36px;
    height: 36px;
    color: var(--teal);
    flex-shrink: 0;
}
.pillar strong {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .25rem;
}
.pillar span {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ──────────────────────────────────────────────
   CEO MESSAGE
────────────────────────────────────────────── */
.ceo-message-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}
.ceo-message-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center 15%;
    aspect-ratio: 3/4;
}
.ceo-quote-mark {
    width: 48px;
    height: auto;
    margin-bottom: 1.25rem;
    display: block;
}
.ceo-message-text {
    margin: 0 0 2rem;
    border: none;
    padding: 0;
}
.ceo-message-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    text-align: justify;
}
.ceo-message-text p:last-child { margin-bottom: 0; }
.ceo-message-sig {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--teal);
    width: fit-content;
}
.ceo-message-sig strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.ceo-message-sig span {
    font-size: .85rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .ceo-message-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ceo-message-image img { aspect-ratio: 4/3; }
}

/* ──────────────────────────────────────────────
   CERTIFICATIONS
────────────────────────────────────────────── */
.certifications-section .section-header { text-align: center; margin-bottom: 3rem; }

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.cert-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.cert-card-badge {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1rem;
    border: 1px solid var(--border);
}
.cert-card-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-card-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.cert-card-info p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: .5rem;
}
.cert-ref {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: .06em;
    background: var(--teal-light);
    padding: .25rem .75rem;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .cert-grid { grid-template-columns: 1fr; }
    .cert-card { flex-direction: column; text-align: center; }
    .cert-card-badge { width: 100%; height: 120px; }
}

/* VMV – Vision / Mission / Values */
.vmv-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 1.5rem;
    align-items: start;
}
.vmv-left {
    background: linear-gradient(145deg, #0f3b38, #1a5a55);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
}
.vmv-right {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}
.vmv-section-label {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .5rem;
}
.vmv-left p {
    font-size: .9rem;
    color: rgba(255,255,255,.9);
    line-height: 1.7;
    margin: 0;
}
.vmv-vm-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 1.375rem 0;
}
.vmv-right .vmv-section-label { margin-bottom: .875rem; }
.vmv-val-row {
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    padding: .875rem 0;
    border-top: 1px solid var(--border);
}
.vmv-val-row:first-child { border-top: none; padding-top: 0; }
.vmv-val-row:last-child { padding-bottom: 0; }
.vmv-val-idx {
    font-size: .65rem;
    font-weight: 700;
    color: var(--teal);
    min-width: 22px;
    padding-top: 3px;
    letter-spacing: .04em;
    flex-shrink: 0;
}
.vmv-val-body strong {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem;
}
.vmv-val-body p {
    margin: 0;
    font-size: .8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.team-grid-senior {
    grid-template-columns: repeat(3, 1fr);
}
.team-grid-support {
    grid-template-columns: repeat(4, 1fr);
}

.team-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.team-card {
    aspect-ratio: 1;
    perspective: 1200px;
    cursor: pointer;
    border-radius: var(--radius-lg);
    text-align: center;
}
.team-card-large { aspect-ratio: 3/4; }

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(.4,0,.2,1);
}
.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid var(--border);
}

.team-card-front {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.team-card-front .team-card-image {
    position: absolute;
    inset: 0;
}
.team-card-front .team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.team-card-front-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,30,28,.9) 0%, rgba(10,30,28,.5) 60%, transparent 100%);
    padding: 1.25rem 1rem .9rem;
    text-align: center;
}
.team-card-front-info h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 .2rem;
    line-height: 1.2;
}
.team-card-front-info .team-role {
    font-size: .7rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: .07em;
    text-transform: uppercase;
    display: block;
}
.team-card-front-info .team-bio {
    font-size: .75rem;
    color: rgba(255,255,255,.65);
    margin-top: .2rem;
}

.team-card-back {
    background: var(--teal);
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-dark);
}
.team-card-back h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.team-statement {
    font-size: .88rem;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.team-role {
    font-size: .8rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: .04em;
    text-transform: uppercase;
    display: block;
}
.team-bio {
    font-size: .8125rem;
    color: var(--text-muted);
    margin-top: .35rem;
}

/* ──────────────────────────────────────────────
   SERVICES PAGE
────────────────────────────────────────────── */
.services-nav-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-h);
    z-index: 50;
}

.services-nav-strip .container {
    display: flex;
    gap: 0;
}

.services-nav-link {
    display: block;
    padding: 1rem 1.75rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
}
.services-nav-link:hover,
.services-nav-link.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.service-section-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}
.service-section-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    padding: 1rem;
    border-radius: var(--radius);
}
.service-icon-upstream { background: var(--teal-light); color: var(--teal); }
.service-icon-downstream { background: linear-gradient(135deg, #e8f4f3, #d4eeeb); color: var(--teal-dark); }

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.875rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(44,191,172,.25);
}

.sdc-icon {
    width: 44px;
    height: 44px;
    color: var(--teal);
    margin-bottom: 1rem;
}
.service-detail-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.service-detail-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Approach Steps */
.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: steps;
}

.approach-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.approach-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(44,191,172,.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}
.approach-step:hover .step-number {
    color: rgba(44,191,172,.2);
}
.approach-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--teal);
}
.approach-step p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ──────────────────────────────────────────────
   PRODUCTS PAGE
────────────────────────────────────────────── */
.product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(44,191,172,.25);
}

.pcc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pcc-icon {
    width: 48px;
    height: 48px;
    color: var(--teal);
    flex-shrink: 0;
}
.pcc-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.product-category-card > p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.product-item-list {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.product-item-list li {
    font-size: .875rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
    line-height: 1.45;
}
.product-item-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    opacity: .6;
}

/* Manufacturing */
.manufacturing-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.mfg-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.mfg-category-icon {
    width: 44px;
    height: 44px;
    color: var(--teal);
}
.mfg-category-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
}

.mfg-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.mfg-product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.mfg-product-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(44,191,172,.25);
    transform: translateY(-2px);
}

.mfg-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: .2rem .65rem;
    border-radius: 50px;
    margin-bottom: .75rem;
}
.mfg-product-card h4 {
    font-size: .975rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.mfg-product-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Custom Solutions */
.custom-solutions {
    background: var(--teal-pale);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}
.custom-solutions-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.custom-solutions-icon {
    width: 80px;
    height: 80px;
    color: var(--teal);
    flex-shrink: 0;
}
.custom-solutions-content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: .625rem;
}
.custom-solutions-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 580px;
}

/* ──────────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.form-notice {
    padding: .85rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: .9rem;
    font-weight: 500;
}
.form-notice--success {
    background: #edfaf7;
    border: 1px solid #2CBFAC;
    color: #1a6b5e;
}
.form-notice--error {
    background: #fef2f2;
    border: 1px solid #f87171;
    color: #991b1b;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}
.contact-detail-item strong {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .3rem;
}
.contact-detail-item p {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.contact-detail-item a { color: var(--teal); }

.contact-social h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .875rem;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}
.social-link:hover { color: var(--teal); }
.social-link svg { width: 18px; height: 18px; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
}
.form-group label span { color: var(--teal); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .9375rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(44,191,172,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }

/* Map */
.contact-map {
    border-top: 1px solid var(--border);
}

/* ──────────────────────────────────────────────
   BLOG / SINGLE POST
────────────────────────────────────────────── */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}
.post-featured-image img { width: 100%; }

.post-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
}
.post-body h2, .post-body h3 { color: var(--text); margin-block: 1.5rem .75rem; font-weight: 700; }
.post-body p { margin-bottom: 1.25rem; color: var(--text-muted); }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: .4rem; color: var(--text-muted); }
.post-body img { border-radius: var(--radius); margin-block: 1.5rem; }
.post-body a { color: var(--teal); text-decoration: underline; }

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.post-navigation a { font-size: .9rem; font-weight: 600; color: var(--teal); }

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--teal-light);
}

.sidebar-post-list {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}
.sidebar-post-list li {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.sidebar-post-list a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}
.sidebar-post-list a:hover { color: var(--teal); }
.sidebar-post-list span {
    font-size: .775rem;
    color: var(--grey-400);
}

.sidebar-cta {
    background: var(--teal-pale);
    border-color: var(--grey-200);
    text-align: center;
}
.sidebar-cta p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.pagination .nav-links {
    display: flex;
    gap: .5rem;
    align-items: center;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text);
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .current { background: var(--teal); color: var(--white); border-color: var(--teal); }
.pagination .next, .pagination .pagination-next {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    font-size: 1rem;
}
.pagination .next:hover, .pagination .pagination-next:hover {
    background: #27b09d;
    border-color: #27b09d;
    color: var(--white);
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.site-footer {
    background: #0d2220;
    color: rgba(255,255,255,.75);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-logo .logo-text { color: var(--teal); }
.footer-tagline {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-top: .25rem;
    margin-bottom: 1rem;
}
.footer-desc {
    font-size: .875rem;
    line-height: 1.65;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: .75rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    transition: all var(--transition);
}
.footer-social a:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(44,191,172,.1);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-links h4,
.footer-contact h4 {
    font-size: .825rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
}
.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: .1rem;
}
.footer-contact a { color: rgba(255,255,255,.5); }
.footer-contact a:hover { color: var(--teal); }

.footer-iso {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: 1rem;
}
.footer-iso-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-iso-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.footer-iso-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-iso-badges a img {
    height: 56px;
    width: auto;
    opacity: .8;
    transition: opacity var(--transition), transform var(--transition);
}
.footer-iso-badges a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}
.cert-card-badge--iso img {
    max-height: 100px;
    width: auto;
}
.cert-ref--link {
    display: inline-block;
    margin-top: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
}
.cert-ref--link:hover { text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: 1.25rem;
}
.footer-bottom p {
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    text-align: center;
}

/* ──────────────────────────────────────────────
   RESPONSIVE — tablet
────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid,
    .products-grid,
    .about-overview-grid,
    .about-intro-grid { grid-template-columns: 1fr; }

    .mfg-products-grid { grid-template-columns: repeat(3, 1fr); }
    .product-category-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-steps { grid-template-columns: repeat(2, 1fr); }
    .vmv-layout { grid-template-columns: 1fr; }
    .team-grid-senior { grid-template-columns: repeat(3, 1fr); }
    .team-grid-support { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-img-secondary { display: none; }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — mobile
────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        transition: transform var(--transition);
        z-index: 99;
    }
    .primary-nav.open { transform: translateY(0); }
    .nav-list { flex-direction: column; padding: 1rem; gap: .25rem; }
    .nav-list li a { padding: .875rem 1rem; border-radius: var(--radius-sm); }
    .nav-list li:last-child a { border-radius: var(--radius-sm); }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    /* Stats */
    .stats-grid { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }

    /* Grids */
    .news-grid,
    .news-archive-grid,
    .product-category-grid,
    .service-detail-grid,
    .approach-steps,
    .mfg-products-grid,
    .team-grid-senior,
    .team-grid-support { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .cta-strip-actions { justify-content: center; }
    .section-header-flex { flex-direction: column; align-items: flex-start; }
    .service-section-header { flex-direction: column; }
    .news-card-large { flex-direction: column; }
    .news-card-large .news-card-image { width: 100%; }
    .custom-solutions-inner { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .services-nav-strip .container { gap: 0; overflow-x: auto; }
    .vmv-layout { grid-template-columns: 1fr; }
}
