/* Northern Mineral Resources - Main Styles */
:root {
    --primary: #0c2a44;
    --secondary: #4a4a4a;
    --accent: #c7a35c;
    --accent-hover: #d4b36a;
    --bg: #ffffff;
    --bg-light: #f5f5f5;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --overlay: rgba(12, 42, 68, 0.75);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container: 1200px;
    --header-height: 100px;
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; margin: 0 0 0.5em; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--secondary); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Header - white background */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--header-height);
    border-bottom: 1px solid rgba(12, 42, 68, 0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo:hover { opacity: 0.85; }
.logo-img {
    height: 88px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary);
}
.nav-toggle span { display: block; height: 2px; background: currentColor; border-radius: 1px; transition: var(--transition); }

.main-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block;
    padding: 12px 14px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.nav-list > li > a:hover { color: var(--accent); }
.nav-list .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(12, 42, 68, 0.08);
    border-radius: 4px;
}
.nav-list li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-list .dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 0.9rem;
    text-transform: none;
}
.nav-list .dropdown a:hover { background: var(--bg-light); color: var(--accent); }

.search-toggle {
    background: none;
    border: none;
    color: var(--primary);
    padding: 8px;
    cursor: pointer;
    margin-left: 8px;
}
.search-toggle:hover { color: var(--accent); }

/* Hero */
.hero {
    position: relative;
    margin-top: var(--header-height);
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 42, 68, 0.75) 0%,
        rgba(12, 42, 68, 0.55) 50%,
        rgba(12, 42, 68, 0.7) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(196, 164, 105, 0.5);
    border-radius: 999px;
    padding: 6px 20px;
    margin-bottom: 24px;
}
.hero-heading {
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.hero-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 36px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.25s ease;
}
.hero-btn-primary:hover {
    background: #b3903e;
    transform: translateY(-2px);
}
.hero-btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.hero-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-hint span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: heroScrollBounce 2s ease-in-out infinite;
}
@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 420px;
    }
    .hero-content {
        padding: 0 20px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    .hero-scroll-hint {
        bottom: 16px;
    }
}

/* (legacy) Hero Slider */
.hero-slider {
    display: none;
}
.hero-track { position: relative; height: 100%; }
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 24px 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-title {
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 600px;
}
.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.5;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-cta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
    padding: 12px 0;
    max-width: 220px;
}
.hero-cta:hover { color: var(--accent); }
.hero-cta-arrow { color: var(--accent); font-size: 1.25rem; }
.hero-cta-label { display: block; font-weight: 600; font-size: 1rem; }
.hero-cta-desc { display: block; font-size: 0.85rem; opacity: 0.85; margin-top: 2px; }

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active, .hero-dot:hover { background: var(--accent); border-color: var(--accent); }
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0,0,0,0.3);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}
.hero-prev:hover, .hero-next:hover { background: var(--primary); color: var(--accent); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Stats */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}
.stat-label { font-size: 0.95rem; opacity: 0.9; }

/* Section common */
.section-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin: 0 0 8px;
}
.section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary);
    margin-bottom: 32px;
    max-width: 700px;
}

/* Project cards */
.project-cards-section { padding: 80px 0; background: var(--bg); }
.project-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.project-card {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.project-card-link { display: block; color: inherit; text-decoration: none; }
.project-card-link:hover { color: inherit; }
.project-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .project-card-image img { transform: scale(1.05); }
.project-card-content { padding: 24px; }
.project-card-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.project-card-excerpt {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}
.project-card-more {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.project-card-more .arrow { transition: transform var(--transition); }
.project-card:hover .project-card-more .arrow { transform: translateX(4px); }

/* Parallax block */
.parallax-section {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.parallax-section .overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}
.parallax-section .container { position: relative; z-index: 1; }
.parallax-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 24px;
    max-width: 700px;
}
.parallax-section p { color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 32px; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.value-block {
    padding: 24px;
    background: rgba(255,255,255,0.08);
    border-left: 4px solid var(--accent);
}
.value-block h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.value-block p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }

/* Intro block */
.intro-section {
    padding: 80px 0;
    background: var(--bg);
}
.intro-section .section-label { margin-bottom: 8px; }

/* Generic two-column layout used across sections */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.two-col > div:last-child img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.intro-section p { font-size: 1rem; }
.operations-intro-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Operations – What we do (redesigned) */
.ops-what-we-do {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}
.ops-what-we-do-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.ops-what-we-do-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin: 0 0 12px;
}
.ops-what-we-do-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin: 0 0 20px;
    line-height: 1.2;
}
.ops-what-we-do-lead {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}
.ops-what-we-do-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}
.ops-what-we-do-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.ops-what-we-do-visual img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.ops-what-we-do-highlights {
    padding-top: 8px;
}
.ops-highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ops-highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.ops-highlight-item:last-child { margin-bottom: 0; }
.ops-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ops-highlight-item h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin: 0 0 6px;
}
.ops-highlight-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.5;
}
.ops-what-we-do-body {
    max-width: 780px;
    margin: 0 auto;
}
.ops-what-we-do-body p {
    font-size: 1rem;
    color: var(--secondary);
    margin: 0 0 1.25em;
    line-height: 1.65;
}
.ops-what-we-do-body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
    .ops-what-we-do-grid { grid-template-columns: 1fr; }
    .ops-what-we-do-visual { order: -1; }
}
@media (max-width: 600px) {
    .ops-what-we-do { padding: 56px 0; }
    .ops-what-we-do-header { margin-bottom: 40px; }
    .ops-what-we-do-grid { margin-bottom: 40px; gap: 32px; }
    .ops-highlight-item { margin-bottom: 20px; }
}

.intro-section .who-we-are-portrait {
    margin: 0 0 1em;
}
.intro-section .who-we-are-portrait img {
    border-radius: 6px;
    width: 100%;
    max-width: 320px;
}
.intro-section .who-we-are-portrait figcaption {
    margin-top: 0.5em;
    font-family: var(--font-heading);
    color: var(--primary);
}

/* Services carousel */
.services-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}
.services-section .section-label { color: var(--accent); }
.services-section .section-title { color: var(--white); }
.services-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.services-track::-webkit-scrollbar { height: 6px; }
.services-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.service-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
    transition: var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.service-card a { display: block; color: inherit; }
.service-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; }
.service-card-content { padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.service-card-title { font-size: 1rem; margin: 0; color: var(--white); }
.service-card .arrow { color: var(--accent); font-size: 1.25rem; }

/* CTA block */
.cta-section {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.cta-section .overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover { background: var(--white); color: var(--primary); }
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); }

/* Footer */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
}
.footer-logo:hover { opacity: 0.85; }
.footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.85;
    max-width: 280px;
    margin: 0;
    line-height: 1.5;
}
.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
    color: var(--accent);
}
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}
.footer-contact a { color: rgba(255,255,255,0.9); }
.footer-contact a:hover { color: var(--accent); }
.footer-social {
    display: flex;
    gap: 16px;
    padding: 24px 0;
}
.footer-social a { color: rgba(255,255,255,0.8); }
.footer-social a:hover { color: var(--accent); }
.footer-bottom {
    padding: 20px 0;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.75;
}
.footer-bottom a { color: rgba(255,255,255,0.8); }

/* Page hero (for inner pages) */
.page-hero {
    margin-top: var(--header-height);
    min-height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.page-hero .overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: var(--white);
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 12px 0 0;
    font-weight: 400;
}

/* Content sections */
.content-section { padding: 60px 0; }
.content-section .container { max-width: 800px; }
.container-narrow { max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.content-section .container.container-narrow { max-width: 720px; }

/* Two-column content layouts (e.g., Sustainability, Corporate Governance) */
.content-section .sustainability-layout.container,
.content-section .governance-layout.container {
    max-width: var(--container);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}
.sustainability-layout .sustainability-text .section-label,
.governance-layout .governance-text .section-label {
    margin-bottom: 8px;
}
.sustainability-layout .sustainability-text .section-title,
.governance-layout .governance-text .section-title {
    margin-bottom: 16px;
}
.sustainability-layout .sustainability-image img,
.governance-layout .governance-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.content-section .operations-content-with-img.container { max-width: var(--container); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.content-section .operations-content-with-img.operations-content-reverse .operations-content-text { order: 2; }
.content-section .operations-content-with-img.operations-content-reverse .operations-content-img { order: 1; }
.content-section .operations-content-img img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.content-section h2 { color: var(--primary); margin-top: 2em; margin-bottom: 0.5em; }
.content-section h2:first-child { margin-top: 0; }
.content-section p { color: var(--secondary); }
@media (max-width: 768px) {
    .content-section .operations-content-with-img.container,
    .content-section .sustainability-layout.container,
    .content-section .governance-layout.container { grid-template-columns: 1fr; }
    .content-section .operations-content-with-img .operations-content-text,
    .content-section .operations-content-with-img .operations-content-img { order: unset; }
    .content-section .operations-content-img { order: -1; }
}

/* Timeline */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}
.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 4px;
}
.timeline-title { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.timeline-desc { font-size: 0.95rem; color: var(--secondary); margin: 0; }

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }

/* Contact form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info h3 { color: var(--primary); margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; }
.map-embed {
    aspect-ratio: 16/10;
    background: var(--bg-light);
    margin-top: 24px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Job cards / News cards */
.cards-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.card-item {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: var(--transition);
}
.card-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card-item-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.card-item-image img { width: 100%; height: 100%; object-fit: cover; }
.card-item-content { padding: 24px; }
.card-item-title { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.card-item-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.card-item-excerpt { font-size: 0.9rem; color: var(--secondary); margin: 0; }

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.data-table th {
    background: var(--bg-light);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}
.data-table tr:hover td { background: rgba(199, 163, 92, 0.06); }

/* ========== Exploration page ========== */
.explore-intro { padding: 80px 0; background: var(--bg); }
.explore-intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.explore-intro-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.explore-intro-label { font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin: 0 0 8px; }
.explore-intro-title { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--primary); margin: 0 0 20px; }
.explore-intro-content p { color: var(--secondary); margin: 0 0 1em; }
.explore-key-list { list-style: none; margin: 1em 0 0; padding: 0; }
.explore-key-list li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--secondary); font-size: 0.95rem; }
.explore-key-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.explore-content-with-img { max-width: var(--container) !important; display: grid !important; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.explore-content-with-img.explore-content-reverse .explore-content-text { order: 2; }
.explore-content-with-img.explore-content-reverse .explore-content-img { order: 1; }
.explore-content-img img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
@media (max-width: 900px) {
    .explore-intro-split { grid-template-columns: 1fr; }
    .explore-intro-visual { order: -1; }
    .explore-content-with-img { grid-template-columns: 1fr !important; }
    .explore-content-with-img .explore-content-text,
    .explore-content-with-img .explore-content-img { order: unset; }
}

/* ========== Projects page ========== */
.projects-intro { padding: 80px 0; background: var(--bg); }
.projects-intro-lead { max-width: 720px; margin: 0 0 32px; color: var(--secondary); }
.projects-intro-img-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.projects-intro-img-wrap img { width: 100%; height: auto; display: block; }
.projects-table-wrap .data-table { margin: 24px 0; }
.projects-table-and-img { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; margin: 24px 0; }
.projects-table-img img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
@media (max-width: 768px) {
    .projects-table-and-img { grid-template-columns: 1fr; }
    .projects-table-img { order: -1; }
}

/* ========== Sustainability page ========== */
.sust-intro { padding: 80px 0; background: var(--bg); }
.sust-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sust-intro-content .section-label { margin-bottom: 8px; }
.sust-intro-content p { color: var(--secondary); margin: 0 0 1em; }
.sust-intro-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.sust-cards { padding: 80px 0; background: var(--bg-light); }
.sust-cards-title { text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--primary); margin: 0 0 48px; }
.sust-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sust-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: var(--transition); }
.sust-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.sust-card-img { aspect-ratio: 16/10; overflow: hidden; }
.sust-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sust-card h3 { font-size: 1.1rem; color: var(--primary); margin: 20px 20px 10px; }
.sust-card p { margin: 0 20px 20px; font-size: 0.9rem; color: var(--secondary); line-height: 1.5; }
@media (max-width: 900px) {
    .sust-intro-grid { grid-template-columns: 1fr; }
    .sust-intro-visual { order: -1; }
    .sust-cards-grid { grid-template-columns: 1fr; }
}

/* ========== Safety page ========== */
.safety-intro { padding: 80px 0; background: var(--bg); }
.safety-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.safety-intro-content .section-label { margin-bottom: 8px; }
.safety-intro-content p { color: var(--secondary); margin: 0 0 1em; }
.safety-intro-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.safety-pillars { padding: 80px 0; background: var(--primary); color: var(--white); }
.safety-pillars-title { text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 0 0 48px; color: var(--white); }
.safety-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.safety-pillar { background: rgba(255,255,255,0.08); padding: 28px 24px; border-radius: 8px; border-left: 4px solid var(--accent); }
.safety-pillar-num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--accent); margin-bottom: 12px; }
.safety-pillar h3 { font-size: 1.05rem; color: var(--white); margin: 0 0 10px; }
.safety-pillar p { margin: 0; font-size: 0.9rem; color: var(--white); opacity: 0.9; line-height: 1.5; }
.safety-content-with-img { max-width: var(--container) !important; display: grid !important; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.safety-content-img img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
@media (max-width: 900px) {
    .safety-intro-layout { grid-template-columns: 1fr; }
    .safety-intro-visual { order: -1; }
    .safety-pillars-grid { grid-template-columns: 1fr 1fr; }
    .safety-content-with-img { grid-template-columns: 1fr !important; }
    .safety-content-img { order: -1; }
}
@media (max-width: 600px) { .safety-pillars-grid { grid-template-columns: 1fr; } }

/* ========== Technology page ========== */
.tech-intro { padding: 80px 0; background: var(--bg); }
.tech-intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tech-intro-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.tech-intro-content .section-label { margin-bottom: 8px; }
.tech-intro-content p { color: var(--secondary); margin: 0 0 1em; }
.tech-cards { padding: 80px 0; background: var(--bg-light); }
.tech-cards-heading { text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--primary); margin: 0 0 48px; }
.tech-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tech-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: var(--transition); }
.tech-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.tech-card-img { aspect-ratio: 16/10; overflow: hidden; }
.tech-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tech-card h3 { font-size: 1.1rem; color: var(--primary); margin: 20px 20px 10px; }
.tech-card p { margin: 0 20px 20px; font-size: 0.9rem; color: var(--secondary); line-height: 1.5; }
@media (max-width: 900px) {
    .tech-intro-split { grid-template-columns: 1fr; }
    .tech-intro-visual { order: -1; }
    .tech-cards-grid { grid-template-columns: 1fr; }
}

/* ========== Investors page ========== */
.investors-intro { padding: 80px 0; background: var(--bg); }
.investors-intro-flex { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
.investors-intro-content .section-label { margin-bottom: 8px; }
.investors-intro-content p { color: var(--secondary); margin: 0 0 1em; }
.investors-intro-img img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
@media (max-width: 900px) {
    .investors-intro-flex { grid-template-columns: 1fr; }
    .investors-intro-img { order: -1; }
}

/* ========== Services page ========== */
.services-intro { padding: 80px 0; background: var(--bg); }
.services-intro .section-label { margin-bottom: 8px; }
.services-intro .services-col-text p { color: var(--secondary); margin: 0 0 1em; }
.services-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}
.services-col-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.content-section.content-two-col .section-label { margin-bottom: 8px; }
.content-section.content-two-col .section-title { margin-top: 0; margin-bottom: 16px; }
.content-section.content-two-col .services-col-text p { color: var(--secondary); margin: 0 0 1em; }
.content-section.content-two-col .services-col-img img { border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.content-section.content-single .section-label { margin-bottom: 8px; }
.content-section.content-single .section-title { margin-top: 0; margin-bottom: 16px; }
.content-section.content-single p { color: var(--secondary); }
/* Alt order: image first, text second */
.content-two-col-alt .services-two-col { grid-template-columns: 1fr 1fr; }
.content-two-col-alt .services-col-img { order: 1; }
.content-two-col-alt .services-col-text { order: 2; }
@media (max-width: 900px) {
    .services-two-col { grid-template-columns: 1fr; gap: 40px; }
    .services-col-img { order: -1; }
    .content-two-col-alt .services-col-img,
    .content-two-col-alt .services-col-text { order: unset; }
    .content-two-col-alt .services-col-img { order: -1; }
}

/* ========== Community page ========== */
.community-intro { padding: 80px 0; background: var(--bg); }
.community-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.community-intro-content .section-label { margin-bottom: 8px; }
.community-intro-content p { color: var(--secondary); margin: 0 0 1em; }
.community-intro-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.community-content-with-img { max-width: var(--container) !important; display: grid !important; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.community-content-img img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
@media (max-width: 900px) {
    .community-intro-layout { grid-template-columns: 1fr; }
    .community-intro-visual { order: -1; }
    .community-content-with-img { grid-template-columns: 1fr !important; }
    .community-content-img { order: -1; }
}

/* ========== About page redesign ========== */
.about-hero {
    margin-top: var(--header-height);
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 42, 68, 0.88) 0%, rgba(12, 42, 68, 0.6) 100%);
}
.about-hero-inner { position: relative; z-index: 1; text-align: center; }
.about-hero-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin: 0 0 12px;
}
.about-hero-title {
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin: 0 0 16px;
    font-weight: 700;
}
.about-hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

.about-intro {
    padding: 80px 0;
    background: var(--bg);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-intro-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary);
    margin: 0 0 24px;
    line-height: 1.3;
}
.about-intro-content p,
.about-intro-side p {
    color: var(--secondary);
    margin: 0 0 1em;
    font-size: 1rem;
}
.about-portrait {
    margin: 0 0 24px;
}
.about-portrait img {
    width: 100%;
    max-width: 340px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.about-portrait figcaption {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
}
.about-portrait-role {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    margin-top: 4px;
}

.about-stats {
    padding: 48px 0;
    background: var(--primary);
    color: var(--white);
}
.about-stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.about-stats-item {
    text-align: center;
}
.about-stats-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    margin-bottom: 4px;
}
.about-stats-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}
.about-section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
    margin: 0 0 48px;
}
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}
.about-mv-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}
.about-mv-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.about-mv-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 12px;
}
.about-mv-card p {
    margin: 0;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-values {
    padding: 80px 0;
    background: var(--bg);
}
.about-values-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: var(--secondary);
}
.about-values-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.about-value-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid transparent;
}
.about-value-card:hover {
    border-top-color: var(--accent);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.about-value-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin: 0 0 8px;
}
.about-value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.5;
}

.about-history {
    padding: 80px 0;
    background: var(--bg-light);
}
.about-history-intro {
    text-align: center;
    margin: 0 0 48px;
    color: var(--secondary);
}
.about-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
    border-left: 3px solid var(--accent);
}
.about-timeline-item {
    position: relative;
    padding-bottom: 40px;
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-light);
    box-shadow: 0 0 0 2px var(--accent);
}
.about-timeline-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.about-timeline-content h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin: 0 0 8px;
}
.about-timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.5;
}

.about-cta {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}
.about-cta-inner { position: relative; z-index: 1; }
.about-cta h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0 0 24px;
}
.about-cta .btn { margin-top: 8px; }

@media (max-width: 900px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .about-portrait img { max-width: 280px; }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-stats-list { gap: 40px; }
}
@media (max-width: 600px) {
    .about-stats-list { flex-direction: column; gap: 32px; }
    .about-values-grid { grid-template-columns: 1fr; }
}
