@font-face {
    font-family: 'Roboto';
    src: url('/assets/mobile/Fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/mobile/Fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/mobile/Fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --teal: #18b7c2;
    --teal-dark: #0fa5b1;
    --ink: #0f1f23;
    --muted: #627073;
    --bg: #f6fbfb;
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1120px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
}

.topbar {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 6px 18px rgba(15, 30, 35, 0.12);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
}

.brand img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 14px;
}

.nav-links a {
    color: #fff;
    opacity: 0.95;
    font-weight: 500;
}

.nav-links a.is-active {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.header-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.icon-button {
    background: transparent;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
}

.menu-lines {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}

.menu-lines::before,
.menu-lines::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
}

.menu-lines::before {
    top: -6px;
}

.menu-lines::after {
    top: 6px;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    background: #f7f7f7;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 60;
    padding: 24px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
}

.menu-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-block {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.menu-title {
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.menu-sublist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #1a2a2f;
    font-size: 14px;
}

.menu-link {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-weight: 600;
}

.menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-close img {
    width: 32px;
    height: 32px;
}

body.menu-open .menu-panel {
    transform: translateX(0);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05));
}

.hero::before {
    content: '';
    position: absolute;
    top: 76px;
    left: 120px;
    right: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
    max-width: 520px;
}

.hero-home .hero-content {
    max-width: 560px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 58px);
    margin: 8px 0 12px;
    line-height: 1.05;
}

.hero-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

.section {
    padding: 70px 0;
}

.teal-slab {
    background: var(--teal);
    color: #fff;
}

.slab-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.slab-icon {
    background: #fff;
    border-radius: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
}

.slab-icon img {
    width: 36px;
}

.slab-media img {
    border-radius: 24px;
    width: 260px;
}

.lead {
    font-size: 20px;
    font-weight: 600;
    margin: 6px 0 12px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

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

.btn-ghost {
    background: rgba(24, 183, 194, 0.2);
    color: #fff;
}

.btn-image {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-image img {
    height: 34px;
}

.btn-image.small img {
    height: 28px;
}

.divider-line {
    padding: 24px 0 12px;
}

.divider-line span {
    display: block;
    height: 6px;
    width: 180px;
    background: #111;
    margin: 0;
}

.intro-slab .slab-inner {
    align-items: flex-start;
}

.intro-slab .slab-copy {
    max-width: 640px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.image-card {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(11, 163, 177, 0.75)), var(--card-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 24px;
    display: flex;
    align-items: flex-end;
}

.image-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.image-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.values-band {
    background: #f4fbfb;
}

.together {
    position: relative;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
}

.together .section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.together::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.together-inner {
    position: relative;
    z-index: 2;
}

.together-copy {
    max-width: 520px;
}

.together-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    justify-items: center;
}

.together-pill {
    background: rgba(24, 183, 194, 0.95);
    color: #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.together-pill img {
    width: 42px;
}

.values-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-pill {
    background: #fff;
    border-radius: 999px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.value-pill img {
    width: 42px;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
}

.split-image img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-stack {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.powder-header {
    text-align: left;
}

.powder-hero {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.powder-hero-copy {
    max-width: 360px;
}

.powder-image img {
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.powder-panel {
    margin-top: 24px;
    background: var(--teal);
    color: #fff;
    padding: 32px 0;
}

.powder-panel h3 {
    margin-top: 0;
}

.powder-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.accent-banner {
    position: relative;
    color: #fff;
    padding: 0;
}

.banner-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 12px;
}

.image-hero {
    position: relative;
    padding: 0;
}

.image-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.image-hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    color: #fff;
    gap: 8px;
}

.cards-5 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-5 .image-card {
    min-height: 200px;
}

.certificates {
    background: #d8eff0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.cert-card {
    background: #fff;
    border-radius: 999px;
    padding: 22px 12px;
    text-align: center;
}

.cert-card img {
    height: 74px;
    margin: 0 auto 8px;
}

.cert-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.cert-footer img {
    width: 120px;
}

.history {
    background: #f7fafb;
}

.timeline {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
    align-items: center;
}

.logo-grid img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    background: #fff;
    padding: 12px;
    border-radius: 16px;
}

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

.career-grid .image-card {
    min-height: 220px;
}

.career-grid .span-wide {
    grid-column: 1 / -1;
}

.cta-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.news-grid {
    display: grid;
}

.news-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 500;
    color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: none;
    border-radius: 18px;
    padding: 12px 14px;
    background: #d7eceb;
    font-family: inherit;
    font-size: 14px;
}

.contact-form button {
    margin-top: 12px;
}

.contact-details {
    position: relative;
    padding: 90px 0 80px;
    color: #fff;
    overflow: hidden;
}

.contact-details .section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-details-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
}

.contact-details-copy {
    max-width: 520px;
}

.map-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    color: var(--ink);
}

.map-placeholder {
    background: linear-gradient(120deg, #1d2b39, #1a3b52);
    border-radius: 16px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px);
}

.map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 50% 0;
    background: #ff5d5d;
    transform: rotate(-45deg);
    left: 46%;
    top: 45%;
}

.map-info p {
    margin: 0 0 14px;
    font-size: 14px;
    color: #27373b;
}

.chip {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 12px;
}

.contact-form-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.footprint {
    position: relative;
    color: #fff;
}

.footprint .section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.footprint-inner {
    position: relative;
    z-index: 1;
}

.footprint-copy {
    max-width: 360px;
    margin-bottom: 24px;
}

.footprint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.site-footer {
    background: var(--teal);
    color: #fff;
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.career-cta {
    position: relative;
    color: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.career-cta .section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.career-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.career-cta .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .slab-inner,
    .split,
    .news-card,
    .contact-form,
    .map-card {
        grid-template-columns: 1fr;
    }

    .business-grid,
    .values-grid,
    .together-grid,
    .info-stack,
    .cert-grid,
    .logo-grid,
    .career-grid,
    .footprint-grid,
    .powder-list {
        grid-template-columns: 1fr;
    }

    .image-card {
        min-height: 200px;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-content,
    .image-hero-content {
        padding: 0 24px;
        text-align: left;
    }

    .hero::before {
        left: 24px;
        right: 24px;
        top: 64px;
    }

    .powder-header,
    .powder-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        max-width: 90%;
    }

    .topbar-inner {
        padding: 12px 0;
    }

    .section {
        padding: 48px 0;
    }

    .values-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero::before {
        top: 54px;
    }
}
