* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #071321;
    --navy-2: #0b1c31;
    --blue: #1f6feb;
    --text: #0f172a;
    --muted: #64748b;
    --light: #f5f7fb;
    --white: #ffffff;
    --line: rgba(255,255,255,0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 20;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 34px;
}

.main-nav a {
    color: rgba(255,255,255,0.84);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    font-weight: 800;
}

.main-nav a:hover {
    color: #ffffff;
}

/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    background: var(--blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.button.outline {
    background: rgba(7,19,33,0.28);
    border: 1px solid rgba(255,255,255,0.42);
    color: #ffffff;
}

.text-link {
    display: inline-flex;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 8px;
}

/* HERO */

.home-hero-premium {
    min-height: 690px;
    position: relative;
    background: var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7,19,33,0.96) 0%, rgba(7,19,33,0.88) 34%, rgba(7,19,33,0.50) 62%, rgba(7,19,33,0.20) 100%),
        linear-gradient(180deg, rgba(7,19,33,0.42) 0%, rgba(7,19,33,0.82) 100%);
}

.hero-premium-content {
    position: relative;
    z-index: 3;
    padding: 86px 0 92px;
}

.hero-kicker,
.section-kicker {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 0.22em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-premium-content h1 {
    color: #ffffff;
    font-size: clamp(66px, 7vw, 118px);
    line-height: 0.88;
    letter-spacing: -0.07em;
    font-weight: 900;
    max-width: 770px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-premium-text {
    color: rgba(255,255,255,0.86);
    font-size: 21px;
    line-height: 1.45;
    max-width: 610px;
    margin-bottom: 38px;
}

.hero-premium-actions {
    display: flex;
    gap: 14px;
}

/* METRICS */

.capability-metrics {
    background: var(--navy);
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    padding: 42px 42px 46px;
    border-right: 1px solid rgba(255,255,255,0.14);
}

.metric:first-child {
    border-left: 1px solid rgba(255,255,255,0.14);
}

.metric strong {
    display: block;
    color: #347cff;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 900;
    margin-bottom: 18px;
}

.metric span {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.metric p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.5;
    max-width: 260px;
}

/* COMPONENT FEATURE */

.component-feature {
    background: #ffffff;
    padding: 82px 0 0;
    overflow: hidden;
}

.component-feature-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 60px;
    align-items: center;
}

.component-copy {
    padding-bottom: 82px;
}

.component-copy h2,
.section-heading-centre h2,
.quality-grid h2,
.final-cta h2 {
    color: var(--navy);
    font-size: clamp(42px, 4vw, 66px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.component-copy p {
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 34px;
}

.component-image {
    align-self: end;
}

.component-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
}

/* CORE CAPABILITIES */

.core-capabilities {
    background: var(--light);
    padding: 88px 0 96px;
}

.section-heading-centre {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 46px;
}

.section-heading-centre .section-kicker {
    margin-bottom: 14px;
}

.capability-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-card {
    background: var(--navy);
    color: #ffffff;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.premium-card img {
    width: 100%;
    height: 295px;
    object-fit: cover;
    opacity: 0.92;
}

.premium-card div {
    padding: 34px 34px 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.premium-card h3 {
    color: #ffffff;
    font-size: 31px;
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.premium-card p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.premium-card a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 8px;
}

/* QUALITY BAND */

.quality-band {
    background: var(--navy);
    color: #ffffff;
    padding: 96px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 72px;
    align-items: center;
}

.quality-grid h2 {
    color: #ffffff;
}

.quality-grid p {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 34px;
    max-width: 560px;
}

.quality-grid img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

/* FINAL CTA */

.final-cta {
    background: var(--navy-2);
    color: #ffffff;
    padding: 54px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.final-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta h2 {
    color: #ffffff;
    font-size: clamp(30px, 3vw, 48px);
    margin-bottom: 8px;
}

.final-cta p {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
}

/* FOOTER */

.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.76);
    text-align: center;
    padding: 38px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .main-nav {
        display: none;
    }

    .home-hero-premium {
        min-height: 640px;
    }

    .hero-premium-content h1 {
        font-size: 64px;
    }

    .metrics-grid,
    .component-feature-grid,
    .capability-card-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .metric,
    .metric:first-child {
        border-left: 1px solid rgba(255,255,255,0.14);
    }

    .component-copy {
        padding-bottom: 0;
    }

    .final-cta-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 34px, 1380px);
    }

    .hero-premium-content h1 {
        font-size: 48px;
    }

    .hero-premium-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .metrics-grid {
        gap: 0;
    }

    .metric {
        padding: 30px 24px;
    }

    .component-copy h2,
    .section-heading-centre h2,
    .quality-grid h2 {
        font-size: 38px;
    }
}
/* GROUP / LOGO SECTIONS */

.group-credibility {
    background: #ffffff;
    padding: 34px 0;
}

.group-credibility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.group-credibility-copy h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--navy);
}

.group-credibility-copy p {
    font-size: 15px;
    color: #475569;
    max-width: 760px;
}

.group-credibility-logo img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.brand-footer-panel {
    background: #ffffff;
    padding: 38px 0;
}

.brand-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.brand-footer-main img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.brand-footer-main p {
    color: #475569;
    font-size: 14px;
    max-width: 620px;
}

.brand-footer-group {
    text-align: right;
}



.brand-footer-group img {
    max-width: 170px;
    width: 100%;
    height: auto;
}

@media (max-width: 800px) {
    .group-credibility-inner,
    .brand-footer-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .brand-footer-group {
        text-align: left;
    }
}

.manufacturing-statement {
    background: #ffffff;
    padding: 34px 0;
    border-bottom: 1px solid #e5e7eb;
}

.manufacturing-statement p {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
}