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

:root {
    --primary:      #2d3449;
    --primary-dark: #1a2035;
    --accent:       #0ea5d0;
    --accent-dark:  #0b82a7;
    --light:        #f4f7fb;
    --white:        #ffffff;
    --text:         #1e2433;
    --muted:        #64748b;
    --border:       #e2e8f0;
    --nav-h:        80px;
}

@font-face {
    font-family: 'Benzin';
    src: url("static_sample/fonts/Benzin Regular.ttf") format('truetype');
    font-weight: 400; font-display: swap;
}
@font-face {
    font-family: 'Benzin';
    src: url("static_sample/fonts/Benzin Medium.ttf") format('truetype');
    font-weight: 500; font-display: swap;
}
@font-face {
    font-family: 'Benzin';
    src: url("static_sample/fonts/Benzin Semibold.ttf") format('truetype');
    font-weight: 600; font-display: swap;
}
@font-face {
    font-family: 'Benzin';
    src: url("static_sample/fonts/Benzin Bold.ttf") format('truetype');
    font-weight: 700; font-display: swap;
}
@font-face {
    font-family: 'Benzin';
    src: url("static_sample/fonts/Benzin Extra Bold.ttf") format('truetype');
    font-weight: 800; font-display: swap;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Benzin', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--full { width: 100%; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-tag {
    display: inline-block;
    font-family: 'Benzin', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-tag--light { color: var(--accent); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(29, 36, 58, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 46px; width: auto; }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.2rem;
}
.nav-links a {
    font-family: 'Benzin', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('Commissioning1.png') center 40% / cover no-repeat;
    color: var(--white);
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 28, 50, 0.93) 0%,
        rgba(20, 28, 50, 0.78) 55%,
        rgba(14, 165, 208, 0.18) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: var(--nav-h);
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Benzin', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px; height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.hero-content h1 { max-width: 860px; margin-bottom: 1.5rem; }
.hero-sub {
    font-size: 1.1rem;
    max-width: 560px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Benzin', sans-serif;
}
.scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--primary); padding: 2rem 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 1.75rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    display: block;
    font-family: 'Benzin', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.35rem;
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}

/* ============================================================
   INTRODUCTION
   ============================================================ */
.intro-section { padding: 6rem 0; background: var(--white); }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }
.intro-accreditations { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.accred-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; font-weight: 500; }
.accred-check {
    width: 22px; height: 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
    flex-shrink: 0;
}
.intro-image img {
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.14);
    width: 100%; height: 500px;
    object-fit: cover;
}

/* ============================================================
   ENGINEERING SERVICES
   ============================================================ */
.services-section { padding: 6rem 0; background: var(--light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
    border-color: var(--accent);
}
.service-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 1.25rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { color: var(--primary); margin-bottom: 0.65rem; }
.service-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

/* ============================================================
   MANUFACTURING
   ============================================================ */
.manufacturing-section { padding: 6rem 0; background: var(--primary); }
.manufacturing-section .section-header { color: var(--white); }
.manufacturing-section .section-header h2 { color: var(--white); }
.manufacturing-section .section-header p { color: rgba(255,255,255,0.65); }

.mfg-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-top: 1rem;
}
.mfg-block:last-child { margin-bottom: 0; }
.mfg-block--reverse .mfg-images { order: -1; }

.mfg-text h3 { color: var(--accent); font-size: 1.5rem; margin-bottom: 1.25rem; }
.mfg-text p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; line-height: 1.75; }
.feature-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li {
    color: rgba(255,255,255,0.78);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.93rem;
    line-height: 1.55;
}
.feature-list li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--accent);
    font-size: 0.85rem;
}

.mfg-images { display: flex; flex-direction: column; gap: 1rem; }
.mfg-img-main {
    width: 100%; height: 320px;
    object-fit: cover; border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.mfg-img-secondary {
    width: 100%; height: 200px;
    object-fit: cover; border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ============================================================
   PROJECTS / SECTORS
   ============================================================ */
.projects-section { padding: 6rem 0; background: var(--white); }
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.sector-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s;
}
.sector-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.sector-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--primary);
}
.sector-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.sector-card:hover .sector-image img { transform: scale(1.05); }

.sector-image--renewable {
    background: linear-gradient(135deg, #1a3a5c 0%, #0b5a78 100%);
}
.solar-sketch-bg {
    width: 100%; height: 100%;
    background: url('SolarPanelStylised.png') center / 70% no-repeat;
    opacity: 0.15;
}
.sector-image--mining {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a3050 100%);
}
.sector-image--mining::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(14,165,208,0.04) 20px,
        rgba(14,165,208,0.04) 40px
    );
}

.sector-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(20,28,50,0.92) 0%, transparent 100%);
}
.sector-overlay h3 { color: var(--white); font-size: 1.1rem; }

.sector-content { padding: 1.5rem; }

.sector-card--wide {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
}
.sector-card--wide .sector-image {
    width: 480px;
    height: auto;
    flex-shrink: 0;
}
.sector-card--wide .sector-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sector-content p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.65; }
.sector-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.sector-content li {
    font-size: 0.88rem;
    color: var(--text);
    padding-left: 1.1rem;
    position: relative;
}
.sector-content li::before {
    content: '·';
    position: absolute; left: 0;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section { padding: 4rem 0; background: var(--light); }
.clients-section .section-header { margin-bottom: 2.5rem; }
.clients-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.client-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.85rem 2rem;
    font-family: 'Benzin', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.03em;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.client-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 4px 16px rgba(14,165,208,0.1);
}

/* ============================================================
   FOOTPRINT
   ============================================================ */
.footprint-section { padding: 6rem 0; background: var(--white); }
.footprint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.footprint-text h2 { margin-bottom: 1.25rem; }
.footprint-text p { color: var(--muted); margin-bottom: 2rem; font-size: 1.02rem; }
.countries-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.country-tag {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.83rem;
    color: var(--text);
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: default;
}
.country-tag:hover { border-color: var(--accent); color: var(--accent); background: rgba(14,165,208,0.05); }
.footprint-map img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.08));
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 6rem 0; background: var(--light); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.about-credentials h3, .about-directors h3 { color: var(--accent); margin-bottom: 1.1rem; }
.about-credentials p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; font-size: 0.97rem; }

.credentials-table {
    margin-top: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.cred-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.cred-row:last-child { border-bottom: none; }
.cred-label { color: var(--muted); }
.cred-value { font-weight: 600; color: var(--text); text-align: right; max-width: 58%; }

.about-equipment { margin-top: 2.5rem; }
.about-equipment h3 { color: var(--accent); margin-bottom: 0.85rem; }
.about-equipment p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

.directors-list { display: flex; flex-direction: column; gap: 0.85rem; }
.director-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.director-initials {
    width: 46px; height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Benzin', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
}
.director-card h4 { font-size: 0.97rem; color: var(--text); margin-bottom: 0.2rem; }
.director-card span { font-size: 0.84rem; color: var(--muted); }

.software-intro { color: var(--muted); font-size: 0.93rem; margin-bottom: 1rem; margin-top: 0.5rem; }
.software-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.sw-tag {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.28rem 0.7rem;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 6rem 0; background: var(--primary); color: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,0.68); margin-bottom: 2.5rem; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-item strong {
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}
.contact-item span, .contact-item a { color: rgba(255,255,255,0.9); font-size: 0.93rem; }
.contact-item a:hover { color: var(--accent); }

.contact-form-wrap {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.93rem;
    color: var(--text);
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14,165,208,0.12);
}
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.65); padding: 4.5rem 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 42px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 300px; }
.footer-col h4 {
    font-family: 'Benzin', sans-serif;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li { font-size: 0.88rem; }
.footer-col ul li a { transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 0.65rem; }
.footer-col a { color: var(--accent); }
.footer-col a:hover { color: #3bc5e8; }
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-hero {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: calc(var(--nav-h) + 4rem) 0 4rem;
    overflow: hidden;
}
.policy-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,165,208,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.policy-hero-overlay {
    position: absolute; inset: 0;
    background: url('DJI_0783.JPG') center / cover no-repeat;
    opacity: 0.07;
}
.policy-hero-content {
    position: relative; z-index: 1;
}
.policy-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0.75rem 0 1rem;
    color: var(--white);
}
.policy-hero-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
}
.policy-updated {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-top: 0.75rem;
    font-family: 'Benzin', sans-serif;
    letter-spacing: 0.05em;
}

.policy-section {
    padding: 5rem 0 6rem;
    background: var(--white);
}

.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}

.policy-toc {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}
.policy-toc h4 {
    font-family: 'Benzin', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.policy-toc ol {
    list-style: none;
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.policy-toc ol li { counter-increment: toc; }
.policy-toc ol li a {
    display: block;
    font-size: 0.83rem;
    color: var(--muted);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    line-height: 1.4;
    transition: color 0.2s, background 0.2s;
}
.policy-toc ol li a:hover { color: var(--accent); background: rgba(14,165,208,0.07); }

.policy-intro {
    background: var(--light);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
}
.policy-intro p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 0.75rem; }
.policy-intro p:last-child { margin-bottom: 0; }

.policy-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}
.policy-block:last-child { border-bottom: none; }

.policy-block h2 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.policy-block p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.policy-block p:last-child { margin-bottom: 0; }

.policy-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 1rem 0 1rem 0.25rem;
}
.policy-block ul li {
    font-size: 0.95rem;
    color: var(--muted);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.7;
}
.policy-block ul li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--accent);
    font-size: 0.85rem;
    line-height: 1.7;
}

.policy-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    margin: 1.25rem 0;
}
.policy-contact-card strong {
    font-family: 'Benzin', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.policy-contact-card span {
    font-size: 0.9rem;
    color: var(--muted);
}
.policy-contact-card a { color: var(--accent); }
.policy-contact-card a:hover { color: var(--accent-dark); text-decoration: underline; }

@media (max-width: 900px) {
    .policy-layout { grid-template-columns: 1fr; }
    .policy-toc { position: static; }
}

@media (max-width: 600px) {
    .policy-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
    .policy-block { padding: 2rem 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .intro-grid { gap: 3rem; }
    .mfg-block { gap: 3rem; }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        top: var(--nav-h);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s;
    }
    .nav-links.open { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1rem; padding: 0.6rem 1.5rem; }
    .nav-cta { margin-left: 0; }

    .hero-content h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.97rem; }
    .hero-actions { flex-direction: column; max-width: 260px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    .intro-grid,
    .mfg-block,
    .footprint-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .mfg-block--reverse .mfg-images { order: 0; }

    .sectors-grid { grid-template-columns: 1fr; }
    .sector-card--wide { flex-direction: column; }
    .sector-card--wide .sector-image { width: 100%; height: 220px; }
    .services-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .intro-image img { height: 300px; }
    .mfg-img-main { height: 240px; }
    .mfg-img-secondary { height: 160px; }
}

@media (max-width: 520px) {
    .container { padding: 0 1.25rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { max-width: 100%; }
    .contact-form-wrap { padding: 1.75rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .cred-value { max-width: 50%; }
}
