/* ============================================
   ROOT & RESET
   ============================================ */
:root {
    --red:      #c1001f;
    --red-dark: #800016;
    --red-glow: rgba(193,0,31,0.28);
    --dark:     #0b0b0d;
    --dark-2:   #18181c;
    --white:    #ffffff;
    --surface:  #f5f5f7;
    --text:     #18181c;
    --muted:    #6e6e76;
    --line:     #e5e5ea;
    --gold:     #c89b3c;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.08), 0 4px 14px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 18px rgba(0,0,0,0.1), 0 16px 48px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 36px rgba(0,0,0,0.14), 0 32px 80px rgba(0,0,0,0.1);
    --r:  12px;
    --rl: 24px;
    --rx: 36px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
}

h1 { font-size: clamp(36px, 5.2vw, 76px); line-height: 1.05; margin-bottom: 24px; }
h2 { font-size: clamp(28px, 4vw, 58px); line-height: 1.08; margin-bottom: 20px; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }

.eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gold);
}

.lead {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--dark);
    color: white;
    font-weight: 700;
    border-radius: 6px;
}
.skip-link:focus { left: 12px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* Brand bar */
.brand-bar {
    border-bottom: 1px solid var(--line);
}

.brand-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand-cu img {
    width: clamp(130px, 20vw, 240px);
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    pointer-events: none;
}

.brand-label {
    font-size: clamp(9px, 1.1vw, 12px);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
    margin-bottom: 4px;
}

.brand-sub {
    font-family: Inter, sans-serif;
    font-size: clamp(14px, 1.9vw, 22px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
}

.brand-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-coe img {
    width: clamp(110px, 16vw, 210px);
    max-height: 52px;
    object-fit: contain;
    object-position: right center;
}

/* Hamburger trigger */
.nav-trigger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* Desktop nav bar */
.desktop-nav {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.desktop-nav .container {
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    gap: 2px;
    padding: 8px 0;
}

.desktop-nav a {
    display: block;
    padding: 9px 16px;
    border-radius: 7px;
    color: rgba(24,24,28,0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.18s, background 0.18s;
}

.desktop-nav a:hover {
    color: var(--text);
    background: rgba(0,0,0,0.06);
}

.desktop-nav a.active {
    color: white;
    background: var(--red);
    box-shadow: 0 2px 12px rgba(193,0,31,0.35);
}

/* ============================================
   MOBILE FULL-SCREEN NAV OVERLAY
   ============================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.nav-overlay-top img {
    width: 140px;
    max-height: 44px;
    object-fit: contain;
    object-position: left;
}

.nav-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.nav-close:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-overlay nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}

.nav-overlay ul {
    width: 100%;
    max-width: 480px;
}

.nav-overlay li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-overlay li:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.nav-overlay a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 4px;
    color: rgba(255,255,255,0.85);
    font-family: Inter, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.2s;
}

.nav-overlay a::after {
    content: "→";
    font-family: Inter, sans-serif;
    font-size: 18px;
    opacity: 0.3;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-overlay a:hover {
    color: white;
}

.nav-overlay a:hover::after {
    opacity: 0.7;
    transform: translateX(4px);
}

.nav-overlay a.active { color: var(--red); font-weight: 900; }

.nav-overlay-foot {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* fallback */
    min-height: 100svh;
    color: white;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: -15%;
    transform: translate3d(var(--hero-mx, 0px), calc(var(--parallax-y, 0px) + var(--hero-my, 0px)), 0);
    background-image: url('../img/coe-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 72% 28%, rgba(193,0,31,0.45), transparent 55%),
        radial-gradient(ellipse 55% 50% at 15% 80%, rgba(200,155,60,0.1), transparent 45%),
        linear-gradient(160deg, rgba(11,11,13,0.87) 0%, rgba(20,0,4,0.84) 60%, rgba(11,11,13,0.78) 100%);
}

.hero::after {
    content: "COE";
    position: absolute;
    right: -40px;
    bottom: -80px;
    font-family: Inter, sans-serif;
    font-size: clamp(160px, 26vw, 420px);
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    user-select: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    flex: 1; /* fills hero column between top and hero-foot */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    align-content: center; /* centers the grid row vertically in the flex-grown space */
    padding: 100px 0 48px;
}

.hero-copy { padding-right: 16px; }

/* 4 pillars pinned to the bottom of the hero */
.hero-foot {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0 36px;
}

/* badges: 2 per row, content-sized — no stretching */
.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 8px;
    justify-content: start;
    margin: 22px 0 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 999px; /* full pill */
    /* glassmorphism */
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 -1px 0 rgba(0,0,0,0.1),
        0 4px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
    cursor: default;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.26);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 6px 28px rgba(0,0,0,0.3);
}

.hero-badge img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
    opacity: 0.78;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.parallax-float {
    transform: translate3d(0, var(--parallax-y, 0), 0);
}

/* ============================================
   VISUAL STACK
   ============================================ */
.visual-stack {
    position: relative;
    min-height: 560px;
}

.photo-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--rx);
    box-shadow: var(--shadow-lg);
}

.glass-card, .metric-card {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.lab-card {
    left: -16px;
    top: 48px;
    max-width: 268px;
    padding: 22px;
}

.lab-card span {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lab-card strong {
    font-family: Inter, sans-serif;
    font-size: 30px;
    line-height: 1.05;
}

.metric-card {
    right: -12px;
    bottom: 64px;
    width: 200px;
    padding: 20px;
    background: rgba(193,0,31,0.88);
    border-color: rgba(255,255,255,0.1);
}

.metric-card strong {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-card span {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.85;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.18s ease;
    white-space: nowrap;
}
.btn i { font-size: 11px; transition: transform 0.2s; }
.btn:hover i { transform: translateX(3px); }

.btn:hover { transform: translateY(-2px); }

.btn.primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn.primary:hover {
    background: #e0001c;
    box-shadow: 0 8px 32px var(--red-glow);
}

.btn.secondary {
    background: white;
    color: var(--red);
}

.btn.ghost {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: white;
}

.btn.light {
    background: white;
    color: var(--red);
    font-weight: 800;
}

.btn.ghost-light {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.88);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn.ghost-light:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: 100px 0; }

/* ============================================
   ABOUT / INTRO BAND
   ============================================ */
.intro-band {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

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

.text-stack p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
    margin-bottom: 14px;
}

.about-photo {
    grid-column: 1 / 2;
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-photo img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.red-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border-radius: var(--rl);
    background: linear-gradient(145deg, var(--red), var(--red-dark));
    color: white;
    box-shadow: 0 20px 60px rgba(193,0,31,0.25);
    min-height: 250px;
}

.red-card span {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.red-card strong {
    font-family: Inter, sans-serif;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.05;
}

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading { margin-bottom: 48px; }

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

/* ============================================
   PILLAR GRID
   ============================================ */
#pillars { background: var(--surface); }

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

.pillar-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--rl);
    background: white;
    padding: 32px 28px;
    min-height: 300px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-card:nth-child(2) {
    background: linear-gradient(145deg, var(--red), var(--red-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 16px 50px var(--red-glow);
}

.pillar-card:nth-child(2) p,
.pillar-card:nth-child(2) small {
    color: rgba(255,255,255,0.68);
}

.pillar-card .icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(193,0,31,0.08);
    color: var(--red);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 22px;
}

.pillar-card:nth-child(2) .icon {
    background: rgba(255,255,255,0.15);
    color: white;
}

.pillar-card small {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pillar-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin-top: 8px;
}

.pillar-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -44px;
    bottom: -44px;
    border-radius: 50%;
    background: rgba(193,0,31,0.06);
    pointer-events: none;
}

.pillar-card:nth-child(2)::after { background: rgba(255,255,255,0.1); }

/* ============================================
   XPERIIA SECTION
   ============================================ */
.xperiia {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: white;
}

.xperiia::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 75% at 92% 30%, rgba(193,0,31,0.2), transparent),
        linear-gradient(140deg, #0b0b0d 0%, #1c0006 100%);
}

.xperiia .container { position: relative; z-index: 1; }
.xperiia .text-stack p { color: rgba(255,255,255,0.62); }
.xperiia h2, .xperiia h3 { color: white; }
.service-card h3 { color: var(--text); }

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

.reverse > *:first-child { order: 2; }
.reverse > *:last-child  { order: 1; }

.service-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rl);
    background: rgba(255,255,255,0.96);
    color: var(--text);
    padding: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.xperiia-logo { width: 160px; margin-bottom: 24px; }

.mini-label {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(193,0,31,0.07);
    color: var(--red);
    border: 1px solid rgba(193,0,31,0.15);
    transition: background 0.2s, transform 0.2s;
}
.tag-list span:hover {
    background: rgba(193,0,31,0.14);
    transform: translateY(-1px);
}
.tag-list span i {
    font-size: 11px;
    opacity: 0.85;
}

/* ============================================
   INITIATIVES
   ============================================ */
.muted { background: var(--white); }

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

.initiative-grid article {
    border: 1px solid var(--line);
    border-radius: var(--rl);
    overflow: hidden;
    background: white;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.initiative-grid article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.initiative-grid img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.initiative-grid h3, .initiative-grid p {
    padding-left: 24px;
    padding-right: 24px;
}

.initiative-grid h3 { padding-top: 22px; font-size: 18px; }
.initiative-grid p {
    padding-bottom: 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 8px;
}

/* ============================================
   TIMELINE / PROCESS
   ============================================ */
.process {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--rl);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
}

.timeline div {
    min-height: 140px;
    padding: 22px 20px;
    border-right: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
}

.timeline div:nth-child(2n) { background: rgba(193,0,31,0.025); }
.timeline div:last-child { border-right: 0; }

.timeline span {
    display: block;
    color: var(--red);
    font-family: Inter, sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 95% 50%, rgba(255,255,255,0.05), transparent);
}

.cta-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    color: white;
}

.cta-panel .eyebrow { color: rgba(255,255,255,0.6); }
.cta-panel h2 { color: white; margin-bottom: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0a0c;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.85fr 1fr;
    gap: 52px;
    padding: 64px 0 48px;
}

.site-footer h2 {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    color: white;
}

.site-footer h3 {
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 18px;
}

.site-footer p {
    color: rgba(255,255,255,0.48);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.18s;
}

.site-footer a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}

/* ============================================
   TABLET  ≤ 1040px
   ============================================ */
@media (max-width: 1040px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .split,
    .reverse {
        grid-template-columns: 1fr;
    }

    .reverse > *:first-child { order: unset; }
    .reverse > *:last-child  { order: unset; }

    .about-grid { gap: 28px; }

    .pillar-grid { grid-template-columns: repeat(2, 1fr); }

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

    .timeline div {
        border-bottom: 1px solid var(--line);
    }

    .visual-stack { min-height: 460px; }
    .photo-main { height: 460px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }

    .mission-badges { gap: 10px; }

    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(3) { border-top: 1px solid rgba(200,155,60,0.12); }
    .stat-card:nth-child(4) { border-top: 1px solid rgba(200,155,60,0.12); border-right: none; }

    .pillars-compact-grid { grid-template-columns: repeat(2, 1fr); }
    .compact-pillar { border-radius: 18px; }

    .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   LOGO FIX — height-based sizing
   ============================================ */
.brand-cu img {
    height: 44px !important;
    width: auto !important;
    max-width: 260px;
    object-fit: contain;
    object-position: left center;
}

.brand-coe img {
    height: 40px !important;
    width: auto !important;
    max-width: 220px;
    object-fit: contain;
    object-position: right center;
}

.xperiia-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 200px;
    margin-bottom: 24px;
}

/* Hero accent word — gold is more visible on dark hero background */
.hero-accent {
    color: var(--gold);
    font-style: normal;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-strip {
    overflow: hidden;
    background: var(--red);
    height: 46px;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 32px;
    animation: marquee 28s linear infinite;
    width: max-content;
    white-space: nowrap;
}

.marquee-track span {
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-track .dot {
    opacity: 0.45;
    font-size: 18px;
    letter-spacing: 0;
}

/* ============================================
   4 PILLARS BAND — dark strip below hero
   ============================================ */
.pillars-band {
    background: var(--dark);
    padding: 40px 0 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pillars-compact-eyebrow {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.pillars-compact-eyebrow::before,
.pillars-compact-eyebrow::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.pillars-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.compact-pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 999px; /* full capsule */
    /* glassmorphism */
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.12),
        0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
    cursor: default;
}

.compact-pillar:hover {
    background: rgba(193,0,31,0.1);
    border-color: rgba(193,0,31,0.3);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.16),
        0 12px 40px rgba(193,0,31,0.15);
}

.compact-pillar-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(193,0,31,0.12);
    border: 1px solid rgba(193,0,31,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-pillar-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.compact-pillar-text strong {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
    white-space: nowrap;
}

.compact-pillar-text span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    line-height: 1.45;
}

/* ============================================
   QUOTE BAND
   ============================================ */
.quote-band {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(193,0,31,0.14), transparent);
}

.quote-band--light {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quote-band--light::before { display: none; }

.quote-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 120px;
    line-height: 0.6;
    color: var(--red);
    margin-bottom: 24px;
    opacity: 0.7;
}

.quote-band--light .quote-mark {
    color: var(--red);
    opacity: 0.4;
}

.quote-inner blockquote p {
    font-family: Inter, sans-serif;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.3;
    color: white;
    margin: 0 0 24px;
}

.quote-band--light .quote-inner blockquote p {
    color: var(--text);
}

.quote-inner blockquote strong {
    color: var(--gold);
    font-weight: 700;
}

.quote-band--light .quote-inner blockquote strong {
    color: var(--red);
}

.quote-source {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.quote-band--light .quote-source {
    color: var(--muted);
}

/* ============================================
   MISSION ALIGNMENT STRIP
   ============================================ */
.mission-strip {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}

.mission-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 24px;
}

.mission-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.mission-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mission-badge:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(193,0,31,0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.mission-badge div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mission-badge strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.mission-badge span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: var(--dark);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(200,155,60,0.22);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(200,155,60,0.06),
        0 0 60px rgba(200,155,60,0.08),
        inset 0 0 60px rgba(200,155,60,0.03);
    background: rgba(255,255,255,0.015);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 28px;
    gap: 10px;
    border-right: 1px solid rgba(200,155,60,0.12);
    transition: background 0.25s;
}

.stat-card:last-child { border-right: none; }

.stat-card:hover { background: rgba(200,155,60,0.04); }

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200,155,60,0.1);
    border: 1px solid rgba(200,155,60,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.stat-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) saturate(100%) invert(74%) sepia(36%) saturate(600%) hue-rotate(10deg) brightness(92%);
    opacity: 0.9;
}

.stat-num {
    font-family: Inter, sans-serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-num sup {
    font-size: 0.44em;
    vertical-align: super;
    color: var(--gold);
    font-family: Inter, sans-serif;
    font-weight: 900;
}

.stat-plus { color: var(--gold); }

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.55;
    max-width: 180px;
}

/* ============================================
   CONTACT SECTION + FORM
   ============================================ */
.contact-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

/* Left column */
.contact-info h2 {
    margin-bottom: 18px;
    line-height: 1.08;
}

.contact-info > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-types {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.contact-type {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-type:hover {
    border-color: rgba(193,0,31,0.3);
    box-shadow: 0 2px 12px rgba(193,0,31,0.06);
}

.contact-type strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.contact-type span {
    font-size: 12px;
    color: var(--muted);
}

.contact-email {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    text-decoration: underline;
    text-decoration-color: rgba(193,0,31,0.3);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
}

.contact-email:hover {
    text-decoration-color: var(--red);
}

/* Right column — form card */
.contact-form-wrap {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--rl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
}

.form-field label span {
    color: var(--red);
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #b0b0b8;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(193,0,31,0.09);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Custom select */
.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrap select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(193,0,31,0.09);
}

.select-wrap select:invalid { color: #b0b0b8; }

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

/* Status messages */
.form-status {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    display: none;
    padding: 12px 16px;
}

.form-status.success {
    display: block;
    background: rgba(22,163,74,0.08);
    color: #15803d;
    border: 1px solid rgba(22,163,74,0.22);
}

.form-status.error {
    display: block;
    background: rgba(193,0,31,0.07);
    color: #800016;
    border: 1px solid rgba(193,0,31,0.2);
}

.form-submit {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 15px;
}

/* ============================================
   2025 MODERN EFFECTS
   ============================================ */

/* Subtle grain overlay over everything */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.038;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    pointer-events: none;
    transition: width 0.12s linear;
    border-radius: 0 2px 2px 0;
}

/* Header gets shadow after scroll */
.site-header.scrolled {
    box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 28px rgba(0,0,0,0.1);
}

/* Hero animated glow orb */
@keyframes orbPulse {
    0%, 100% { opacity: 0.22; transform: scale(1); }
    50%       { opacity: 0.38; transform: scale(1.1); }
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-glow::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    top: -20%;
    right: -5%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, rgba(193,0,31,0.28) 0%, transparent 65%);
    animation: orbPulse 7s ease-in-out infinite;
}

.hero-glow::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 60%;
    bottom: -10%;
    left: -5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,155,60,0.12) 0%, transparent 65%);
    animation: orbPulse 9s ease-in-out infinite reverse;
}

/* Hero light-beam sweep */
@keyframes lightSweep {
    0%   { transform: translateX(-200vw) rotate(-20deg); }
    100% { transform: translateX(200vw) rotate(-20deg); }
}

.hero-sweep {
    position: absolute;
    inset: -100%;
    width: 8%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    animation: lightSweep 9s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Button glow pulse on primary CTA */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(193,0,31,0.35); }
    50%       { box-shadow: 0 6px 36px rgba(193,0,31,0.58); }
}

.btn.primary {
    animation: glowPulse 3s ease-in-out infinite;
}

.btn.primary:hover {
    animation: none;
    box-shadow: 0 8px 36px rgba(193,0,31,0.55);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stagger for grid children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

/* Animated red accent line on section headings */
.section-heading::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 18px;
    transition: width 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}

.section-heading.visible::before { width: 48px; }

/* Eyebrow letter-spacing animation */
@keyframes eyebrowReveal {
    from { opacity: 0; letter-spacing: 0.32em; }
    to   { opacity: 1; letter-spacing: 0.16em; }
}

.section-heading.visible .eyebrow {
    animation: eyebrowReveal 0.6s ease 0.1s both;
}

/* Image zoom on hover for initiative cards */
.initiative-grid article {
    position: relative;
}

.initiative-grid article img {
    transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.initiative-grid article:hover img {
    transform: scale(1.06);
}

/* Mobile overlay nav — animate list items in */
@keyframes overlayItemIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: none; }
}

.nav-overlay.open li {
    animation: overlayItemIn 0.4s ease forwards;
}

.nav-overlay.open li:nth-child(1) { animation-delay: 0.06s; }
.nav-overlay.open li:nth-child(2) { animation-delay: 0.12s; }
.nav-overlay.open li:nth-child(3) { animation-delay: 0.18s; }
.nav-overlay.open li:nth-child(4) { animation-delay: 0.24s; }
.nav-overlay.open li:nth-child(5) { animation-delay: 0.30s; }
.nav-overlay.open li:nth-child(6) { animation-delay: 0.36s; }

.nav-overlay:not(.open) li { opacity: 0; }

/* Floating enquiry button */
.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 89;
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.float-cta.visible {
    opacity: 1;
    transform: none;
    pointer-events: all;
}

.float-cta .btn {
    box-shadow: 0 8px 36px rgba(193,0,31,0.4), 0 2px 8px rgba(0,0,0,0.2);
    font-size: 13px;
    padding: 14px 22px;
}

/* Counter number */
[data-count] {
    font-variant-numeric: tabular-nums;
}

/* Card tilt perspective container */
.pillar-card { transform-style: preserve-3d; }

/* ============================================
   MOBILE  ≤ 768px
   ============================================ */
@media (max-width: 768px) {
    .container { width: calc(100% - 32px); }

    /* Header — hide center text and desktop nav, show hamburger */
    .brand-center { display: none; }
    .desktop-nav  { display: none; }
    .nav-trigger  { display: flex; }

    /* Tighter brand logos on mobile */
    .brand-cu img  { height: 34px !important; max-width: 160px; }
    .brand-coe img { height: 30px !important; max-width: 140px; }
    .brand-bar-inner { padding: 12px 0; gap: 10px; }

    .section { padding: 64px 0; }

    .hero { min-height: unset; }
    .hero-grid { padding: 72px 0 40px; gap: 36px; }
    .hero-foot { padding: 20px 0 28px; }
    .hero-meta { grid-template-columns: repeat(2, max-content); gap: 7px; }

    .visual-stack { min-height: 360px; }
    .photo-main   { height: 360px; border-radius: var(--rl); }

    .lab-card {
        left: 8px;
        top: 18px;
        max-width: 210px;
        padding: 16px;
    }
    .lab-card strong { font-size: 22px; }

    .metric-card {
        right: 8px;
        bottom: 18px;
        width: 166px;
        padding: 16px;
    }
    .metric-card strong { font-size: 40px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .pillar-grid    { grid-template-columns: 1fr; gap: 10px; }
    .pillar-card    { min-height: auto; }

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

    .timeline        { grid-template-columns: 1fr; }
    .timeline div    { min-height: 80px; border-right: none; border-bottom: 1px solid var(--line); }
    .timeline div:last-child { border-bottom: none; }

    .cta-panel { flex-direction: column; align-items: flex-start; }
    .cta-panel .btn { width: 100%; justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 32px; }
    .footer-grid > div:first-child { grid-column: unset; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 6px; }

    .float-cta { bottom: 16px; right: 16px; }
    .float-cta .btn { font-size: 12px; padding: 12px 18px; }

    .quote-band { padding: 56px 0; }
    .quote-mark { font-size: 80px; }
    .quote-inner blockquote p { font-size: clamp(20px, 6vw, 30px); }

    .mission-badges { gap: 8px; }
    .mission-badge  { padding: 10px 14px; gap: 10px; }
    .badge-dot      { width: 6px; height: 6px; }
    .mission-badge strong { font-size: 12px; }
    .mission-badge span   { font-size: 10px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card  { padding: 32px 16px; }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) { border-top: 1px solid rgba(200,155,60,0.12); }
    .stat-card:nth-child(4) { border-right: none; }

    .hero-foot { padding: 16px 0 24px; }
    .pillars-compact-grid { grid-template-columns: 1fr; gap: 8px; }
    .compact-pillar { border-radius: 16px; padding: 14px 16px; }
    .compact-pillar-text span { display: none; }

    .hero-meta { gap: 6px; justify-content: start; }
    .hero-badge { font-size: 10px; padding: 8px 13px; gap: 7px; }
    .hero-badge img { width: 14px; height: 14px; }

    .contact-grid       { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-wrap  { padding: 28px 24px; }
    .form-row           { grid-template-columns: 1fr; }
}
