
:root { --navy:    #2a4687;
    --navy-dk: #1b2f5a;
    --navy-lt: #3a5ba0;
    --sky:     #8ebce5;
    --sky-lt:  #daeaf8;
    --sky-xl:  #eef5fc;
    --sky-dk:  #5a96cc;
    --page-bg: #f5f8fc;
    --surface: #ffffff;
    --surface2:#edf3fb;
    --ink:     #15233f;
    --body:    #46587a;
    --muted:   #7388a8;
    --border:  #dde7f3;
    --border2: #cdd9ea; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif;
    background: var(--page-bg);
    color: var(--body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; }
.mono { font-family: 'IBM Plex Mono', monospace; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; color: var(--navy); letter-spacing: -0.01em; line-height: 1.05; }
nav { position: sticky; top: 0; z-index: 100;
    background: rgba(245,248,252,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: baseline; text-decoration: none; }
.logo-am { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 28px; color: var(--navy); letter-spacing: -0.02em; }
.logo-pm { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 28px; color: var(--sky-dk); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500;
    letter-spacing: 0.01em; transition: color 0.15s; position: relative; }
.nav-links a:not(.nav-cta):hover { color: var(--sky-dk); }
.nav-cta { background: var(--navy); color: #fff !important;
    padding: 10px 22px; border-radius: 7px; font-weight: 600;
    transition: background 0.18s, transform 0.15s; }
.nav-cta:hover { background: var(--navy-lt); transform: translateY(-1px); }
.nav-toggle { display: none; }
footer { background: var(--navy-dk); color: #9fb6d6; padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid rgba(142,188,229,0.15); }
.footer-brand .logo-am { color: #fff; }
.footer-brand .logo-pm { color: var(--sky); }
.footer-brand p { font-size: 14px; color: #8ba4c6; margin-top: 14px; max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-family: 'Barlow', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: #9fb6d6; text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: #6f88aa; flex-wrap: wrap; gap: 12px; }
.footer-bottom .mono { font-size: 12px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.nav-links a.active { color: var(--sky-dk); }
.nav-links a.active { color: var(--sky-dk); }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px);} to { opacity:1; transform: none;} }

/* ════ PAGE: HOME ════ */
body.pg-home .hero { position: relative;     padding: 84px 0 76px;     overflow: hidden; }
body.pg-home .hero::before { content: '';     position: absolute; inset: 0;     background-image: radial-gradient(circle, #cddaee 1px, transparent 1px);     background-size: 26px 26px;     opacity: 0.5;     -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);     mask-image: linear-gradient(to bottom, #000 0%, transparent 80%); }
body.pg-home .hero-inner { position: relative; z-index: 2;     display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
body.pg-home .hero-eyebrow { display: inline-flex; align-items: center; gap: 9px;     font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;     color: var(--sky-dk); margin-bottom: 22px; }
body.pg-home .hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--sky-dk); }
body.pg-home .hero h1 { font-size: 66px; font-weight: 700; margin-bottom: 22px; }
body.pg-home .hero h1 .accent { color: var(--sky-dk); }
body.pg-home .hero-sub { font-size: 19px; font-weight: 300; color: var(--body);     max-width: 540px; margin-bottom: 32px; line-height: 1.55; }
body.pg-home .hero-cta-row { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; flex-wrap: wrap; }
body.pg-home .btn-primary { background: var(--navy); color: #fff; text-decoration: none;     font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 18px;     letter-spacing: 0.03em; text-transform: uppercase;     padding: 15px 34px; border-radius: 8px;     display: inline-flex; align-items: center; gap: 10px;     transition: background 0.18s, transform 0.15s, box-shadow 0.18s;     box-shadow: 0 4px 18px rgba(42,70,135,0.18); }
body.pg-home .btn-primary:hover { background: var(--navy-lt); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(42,70,135,0.26); }
body.pg-home .btn-text { color: var(--navy); text-decoration: none; font-size: 16px; font-weight: 600;     display: inline-flex; align-items: center; gap: 7px; transition: gap 0.18s, color 0.15s; }
body.pg-home .btn-text:hover { color: var(--sky-dk); gap: 11px; }
body.pg-home .hero-trust { display: inline-flex; align-items: center; gap: 10px;     font-size: 13px; color: var(--muted); font-weight: 500;     padding-top: 26px; border-top: 1px solid var(--border); }
body.pg-home .hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: #2f9e6e; box-shadow: 0 0 0 3px rgba(47,158,110,0.15); }
body.pg-home .hero-visual { position: relative; }
body.pg-home .part-card { background: var(--surface); border: 1px solid var(--border2); border-radius: 16px;     padding: 26px; box-shadow: 0 12px 40px rgba(27,47,90,0.1); }
body.pg-home .part-render { background: linear-gradient(135deg, #f0f5fb 0%, #e2edf8 100%);     border-radius: 11px; height: 230px; position: relative; overflow: hidden;     display: flex; align-items: center; justify-content: center;     border: 1px solid var(--border); }
body.pg-home .part-render svg { width: 78%; height: 78%; }
body.pg-home .grid-bg { position: absolute; inset: 0;     background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);     background-size: 22px 22px; opacity: 0.55; }
body.pg-home .part-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px;     background: var(--border); border: 1px solid var(--border); border-radius: 9px;     overflow: hidden; margin-top: 18px; }
body.pg-home .spec { background: var(--surface); padding: 12px 15px; }
body.pg-home .spec-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
body.pg-home .spec-val { font-size: 14px; color: var(--navy); font-weight: 500; }
body.pg-home .part-tag { position: absolute; top: 14px; left: 14px; z-index: 3;     background: rgba(42,70,135,0.92); color: #fff;     font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;     padding: 5px 11px; border-radius: 5px; }
body.pg-home section { padding: 76px 0; }
body.pg-home .section-head { margin-bottom: 44px; max-width: 720px; }
body.pg-home .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;     color: var(--sky-dk); margin-bottom: 14px; }
body.pg-home .section-head h2 { font-size: 42px; font-weight: 700; margin-bottom: 14px; }
body.pg-home .section-head p { font-size: 18px; font-weight: 300; color: var(--body); }
body.pg-home .route { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
body.pg-home .route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
body.pg-home .route-card { background: var(--page-bg); border: 1px solid var(--border); border-radius: 13px;     padding: 30px 28px; text-decoration: none; display: block;     transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s; position: relative; overflow: hidden; }
body.pg-home .route-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;     background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
body.pg-home .route-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(27,47,90,0.1); }
body.pg-home .route-card:hover::before { transform: scaleX(1); }
body.pg-home .route-icon { width: 46px; height: 46px; border-radius: 11px; margin-bottom: 18px;     display: flex; align-items: center; justify-content: center;     background: var(--accent-bg); color: var(--accent); }
body.pg-home .route-icon svg { width: 24px; height: 24px; }
body.pg-home .route-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
body.pg-home .route-card p { font-size: 15px; color: var(--body); margin-bottom: 16px; line-height: 1.55; }
body.pg-home .route-link { font-size: 14px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
body.pg-home .r-aero { --accent: #2a4687; --accent-bg: #dde6f6; }
body.pg-home .r-rd { --accent: #1a8a66; --accent-bg: #d6f0e6; }
body.pg-home .r-ind { --accent: #b5601a; --accent-bg: #f7e7d4; }
body.pg-home .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.pg-home .why-card { padding: 4px 0; }
body.pg-home .why-num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--sky-dk);     font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
body.pg-home .why-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
body.pg-home .why-card h3 { font-size: 23px; font-weight: 600; margin-bottom: 10px; }
body.pg-home .why-card p { font-size: 15px; color: var(--body); line-height: 1.6; }
body.pg-home .why-card p strong { color: var(--navy); font-weight: 600; }
body.pg-home .cap { background: var(--navy); color: #cdddf0; position: relative; overflow: hidden; }
body.pg-home .cap::before { content: ''; position: absolute; inset: 0;     background-image: linear-gradient(rgba(142,188,229,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(142,188,229,0.05) 1px, transparent 1px);     background-size: 40px 40px; }
body.pg-home .cap .wrap { position: relative; z-index: 2; }
body.pg-home .cap .section-eyebrow { color: var(--sky); }
body.pg-home .cap .section-head h2 { color: #fff; }
body.pg-home .cap .section-head p { color: #b8cce4; }
body.pg-home .cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
body.pg-home .cap-block { background: rgba(255,255,255,0.04); border: 1px solid rgba(142,188,229,0.18);     border-radius: 12px; padding: 24px 22px; }
body.pg-home .cap-block h4 { font-family: 'Barlow', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;     color: var(--sky); font-weight: 600; margin-bottom: 16px; padding-bottom: 12px;     border-bottom: 1px solid rgba(142,188,229,0.18); }
body.pg-home .cap-list { list-style: none; }
body.pg-home .cap-list li { font-size: 14px; color: #d4e3f4; padding: 5px 0; display: flex; align-items: baseline; gap: 9px; }
body.pg-home .cap-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--sky); flex-shrink: 0; transform: translateY(7px); }
body.pg-home .cap-list .val { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #fff; }
body.pg-home .cap-note { margin-top: 28px; font-size: 14px; color: #98b3d4; display: flex; align-items: center; gap: 10px; }
body.pg-home .cap-note a { color: var(--sky); font-weight: 600; text-decoration: none; }
body.pg-home .cap-note a:hover { text-decoration: underline; }
body.pg-home .materials { background: var(--page-bg); }
body.pg-home .matrix-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
body.pg-home .matrix { display: grid;     grid-template-columns: 168px repeat(4, 1fr);     border: 1px solid var(--border2);     border-radius: 14px;     overflow: hidden;     background: var(--surface);     box-shadow: 0 8px 30px rgba(27,47,90,0.06);     min-width: 720px; }
body.pg-home .mx { padding: 20px 20px;     border-bottom: 1px solid var(--border);     border-right: 1px solid var(--border);     display: flex; align-items: center; }
body.pg-home .mx:nth-child(5n) { border-right: none; }
body.pg-home .matrix > .mx:nth-last-child(-n+5) { border-bottom: none; }
body.pg-home .mx-corner { background: var(--surface2); }
body.pg-home .mx-head { background: var(--navy); color: #fff;     font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 21px;     letter-spacing: 0.01em; justify-content: center; text-align: center;     border-right: 1px solid rgba(255,255,255,0.12); }
body.pg-home .mx-head:nth-child(5n) { border-right: none; }
body.pg-home .mx-label { background: var(--surface2); color: var(--navy);     font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
body.pg-home .mx-val { font-size: 15px; color: var(--ink); font-weight: 500; }
body.pg-home .mx-sub { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; font-weight: 400; }
body.pg-home .pricewrap { display: flex; flex-direction: column; gap: 7px; }
body.pg-home .pricebar { display: flex; gap: 4px; }
body.pg-home .pricebar i { width: 22px; height: 7px; border-radius: 3px; background: var(--border2); }
body.pg-home .pricebar i.on { background: var(--sky-dk); }
body.pg-home .price-lbl { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }
body.pg-home .swatch-cell { display: flex; align-items: center; gap: 10px; }
body.pg-home .swatch { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border2); flex-shrink: 0; }
body.pg-home .swatch.black { background: #1c1c20; }
body.pg-home .swatch.offwhite { background: #ece6d8; }
body.pg-home .swatch-lbl { font-size: 14px; color: var(--ink); }
body.pg-home .swatch-lbl .mx-sub { margin-top: 1px; }
body.pg-home .materials .cap-note { margin-top: 26px; color: var(--muted); }
body.pg-home .materials .cap-note a { color: var(--navy); }
body.pg-home .team { background: var(--surface); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); }
body.pg-home .team-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
body.pg-home .team-card { background: var(--page-bg); border: 1px solid var(--border); border-radius: 13px;     padding: 26px; display: flex; gap: 18px; align-items: center; }
body.pg-home .team-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;     background: linear-gradient(135deg, var(--navy), var(--sky-dk));     display: flex; align-items: center; justify-content: center;     font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 24px; color: #fff; }
body.pg-home .team-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; color: var(--navy); font-weight: 600; }
body.pg-home .team-role { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-dk); font-weight: 600; margin-bottom: 4px; }
body.pg-home .team-bio { font-size: 13px; color: var(--muted); line-height: 1.45; }
body.pg-home .case-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
body.pg-home .case-visual { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);     border-radius: 16px; aspect-ratio: 4/3; position: relative; overflow: hidden;     display: flex; align-items: center; justify-content: center;     box-shadow: 0 16px 44px rgba(27,47,90,0.22); }
body.pg-home .case-visual svg { width: 62%; height: 62%; }
body.pg-home .case-visual .grid-bg { background-image: linear-gradient(rgba(142,188,229,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(142,188,229,0.08) 1px, transparent 1px); background-size: 28px 28px; opacity: 1; }
body.pg-home .case-badge { position: absolute; bottom: 16px; left: 16px; z-index: 3;     background: rgba(255,255,255,0.1); border: 1px solid rgba(142,188,229,0.3); backdrop-filter: blur(6px);     color: #fff; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;     padding: 6px 13px; border-radius: 6px; }
body.pg-home .case-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky-dk); margin-bottom: 14px; }
body.pg-home .case-content h2 { font-size: 38px; font-weight: 700; margin-bottom: 16px; }
body.pg-home .case-content p { font-size: 16px; color: var(--body); margin-bottom: 18px; line-height: 1.65; }
body.pg-home .case-stats { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
body.pg-home .case-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; flex: 1; min-width: 130px; }
body.pg-home .case-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
body.pg-home .case-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
body.pg-home .final-cta { background: var(--sky-xl); }
body.pg-home .cta-box { background: var(--navy); border-radius: 20px; padding: 60px 56px;     display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;     position: relative; overflow: hidden; }
body.pg-home .cta-box::before { content: ''; position: absolute; inset: 0;     background-image: radial-gradient(circle, rgba(142,188,229,0.12) 1px, transparent 1px);     background-size: 24px 24px; }
body.pg-home .cta-box-content { position: relative; z-index: 2; }
body.pg-home .cta-box h2 { color: #fff; font-size: 40px; font-weight: 700; margin-bottom: 12px; }
body.pg-home .cta-box p { color: #b8cce4; font-size: 17px; font-weight: 300; max-width: 480px; }
body.pg-home .cta-btns { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
body.pg-home .btn-sky { background: var(--sky); color: var(--navy-dk); text-decoration: none;     font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px;     letter-spacing: 0.03em; text-transform: uppercase; padding: 16px 38px; border-radius: 8px;     text-align: center; transition: background 0.18s, transform 0.15s; white-space: nowrap; }
body.pg-home .btn-sky:hover { background: #a6cef0; transform: translateY(-2px); }
body.pg-home .btn-ghost { background: transparent; color: var(--sky); border: 1px solid rgba(142,188,229,0.4);     text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px;     letter-spacing: 0.03em; text-transform: uppercase; padding: 14px 38px; border-radius: 8px;     text-align: center; transition: background 0.18s, border-color 0.18s; white-space: nowrap; }
body.pg-home .btn-ghost:hover { background: rgba(142,188,229,0.1); border-color: var(--sky); }
@media (max-width: 920px) {
    body.pg-home .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    body.pg-home .hero h1 { font-size: 52px; }
    body.pg-home .route-grid, body.pg-home .why-grid, body.pg-home .cap-grid, body.pg-home .team-grid { grid-template-columns: 1fr 1fr; }
    body.pg-home .case-grid { grid-template-columns: 1fr; }
    body.pg-home .cta-box { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    body.pg-home .hero h1 { font-size: 42px; }
    body.pg-home .route-grid, body.pg-home .why-grid, body.pg-home .cap-grid, body.pg-home .team-grid, body.pg-home .part-specs { grid-template-columns: 1fr; }
    body.pg-home .section-head h2 { font-size: 32px; }
    body.pg-home .cta-box { padding: 40px 28px; }
  }
body.pg-home .hero-inner > * { animation: fadeUp 0.6s ease both; }
body.pg-home .hero-visual { animation-delay: 0.15s; }

/* ════ PAGE: SERVICES ════ */
body.pg-services .page-hero { position: relative; padding: 72px 0 60px; overflow: hidden; }
body.pg-services .page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #cddaee 1px, transparent 1px); background-size: 26px 26px; opacity: 0.5; -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); }
body.pg-services .page-hero .wrap { position: relative; z-index: 2; }
body.pg-services .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
body.pg-services .breadcrumb a { color: var(--muted); text-decoration: none; }
body.pg-services .breadcrumb a:hover { color: var(--sky-dk); }
body.pg-services .page-hero h1 { font-size: 60px; font-weight: 700; margin-bottom: 18px; max-width: 760px; }
body.pg-services .page-hero h1 .accent { color: var(--sky-dk); }
body.pg-services .page-hero p { font-size: 19px; font-weight: 300; color: var(--body); max-width: 600px; }
body.pg-services .ribbon { background: var(--navy); position: relative; overflow: hidden; padding: 34px 0; }
body.pg-services .ribbon::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(142,188,229,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(142,188,229,0.06) 1px, transparent 1px); background-size: 40px 40px; }
body.pg-services .ribbon .wrap { position: relative; z-index: 2; }
body.pg-services .ribbon-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); font-weight: 600; text-align: center; margin-bottom: 20px; }
body.pg-services .ribbon-flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
body.pg-services .ribbon-step { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(142,188,229,0.2); border-radius: 8px; padding: 10px 16px; }
body.pg-services .ribbon-step .num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--sky); font-weight: 500; }
body.pg-services .ribbon-step .txt { font-size: 13px; color: #dceaf8; font-weight: 500; white-space: nowrap; }
body.pg-services .ribbon-arrow { color: var(--sky-dk); flex-shrink: 0; }
body.pg-services .ribbon-phase { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky-dk); font-weight: 700; align-self: center; padding: 0 4px; }
body.pg-services section { padding: 80px 0; }
body.pg-services .svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }
body.pg-services .svc-head-left { max-width: 640px; }
body.pg-services .svc-num-big { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--sky-dk); font-weight: 500; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
body.pg-services .svc-num-big::after { content: ''; width: 60px; height: 1px; background: var(--border2); }
body.pg-services .svc-head h2 { font-size: 44px; font-weight: 700; margin-bottom: 14px; }
body.pg-services .svc-head p { font-size: 18px; font-weight: 300; color: var(--body); }
body.pg-services .svc-head .btn-text { color: var(--navy); text-decoration: none; font-size: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; transition: gap 0.18s, color 0.15s; white-space: nowrap; }
body.pg-services .svc-head .btn-text:hover { color: var(--sky-dk); gap: 11px; }
body.pg-services .svc-grid { display: grid; gap: 18px; }
body.pg-services .svc-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
body.pg-services .svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
body.pg-services .svc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px;     padding: 30px 28px; position: relative; overflow: hidden;     transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s; }
body.pg-services .svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent, var(--navy)); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
body.pg-services .svc-card:hover { border-color: var(--accent, var(--navy)); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(27,47,90,0.1); }
body.pg-services .svc-card:hover::before { transform: scaleX(1); }
body.pg-services .svc-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
body.pg-services .svc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-bg, var(--sky-lt)); color: var(--accent, var(--navy)); display: flex; align-items: center; justify-content: center; }
body.pg-services .svc-icon svg { width: 26px; height: 26px; }
body.pg-services .svc-num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--muted); font-weight: 500; }
body.pg-services .svc-card h3 { font-size: 25px; font-weight: 600; margin-bottom: 9px; }
body.pg-services .svc-card > p { font-size: 15px; color: var(--body); line-height: 1.6; margin-bottom: 18px; }
body.pg-services .svc-list { list-style: none; border-top: 1px solid var(--border); padding-top: 16px; }
body.pg-services .svc-list li { font-size: 14px; color: var(--ink); padding: 5px 0; display: flex; align-items: baseline; gap: 10px; }
body.pg-services .svc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent, var(--navy)); opacity: 0.7; flex-shrink: 0; transform: translateY(7px); }
body.pg-services .eng { --accent: #2a4687; --accent-bg: #dde6f6; }
body.pg-services .prod { --accent: #1a7a8c; --accent-bg: #d3eef2; }
body.pg-services .prod-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
body.pg-services .final-cta { background: var(--sky-xl); }
body.pg-services .cta-box { background: var(--navy); border-radius: 20px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; position: relative; overflow: hidden; }
body.pg-services .cta-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(142,188,229,0.12) 1px, transparent 1px); background-size: 24px 24px; }
body.pg-services .cta-box-content { position: relative; z-index: 2; }
body.pg-services .cta-box h2 { color: #fff; font-size: 38px; font-weight: 700; margin-bottom: 12px; }
body.pg-services .cta-box p { color: #b8cce4; font-size: 17px; font-weight: 300; max-width: 480px; }
body.pg-services .cta-btns { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
body.pg-services .btn-sky { background: var(--sky); color: var(--navy-dk); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.03em; text-transform: uppercase; padding: 16px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, transform 0.15s; white-space: nowrap; }
body.pg-services .btn-sky:hover { background: #a6cef0; transform: translateY(-2px); }
body.pg-services .btn-ghost { background: transparent; color: var(--sky); border: 1px solid rgba(142,188,229,0.4); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase; padding: 14px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, border-color 0.18s; white-space: nowrap; }
body.pg-services .btn-ghost:hover { background: rgba(142,188,229,0.1); border-color: var(--sky); }
@media (max-width: 920px) {
    body.pg-services .page-hero h1 { font-size: 46px; }
    body.pg-services .svc-grid.cols-3 { grid-template-columns: 1fr 1fr; }
    body.pg-services .cta-box { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    body.pg-services .page-hero h1 { font-size: 38px; }
    body.pg-services .svc-grid.cols-4, body.pg-services .svc-grid.cols-3 { grid-template-columns: 1fr; }
    body.pg-services .svc-head h2 { font-size: 34px; }
    body.pg-services .cta-box { padding: 40px 28px; }
  }
body.pg-services .page-hero .wrap > * { animation: fadeUp 0.55s ease both; }

/* ════ PAGE: MATERIALS ════ */
:is(body.pg-materials, body.pg-capabilities) .page-hero { position: relative; padding: 72px 0 56px; overflow: hidden; }
:is(body.pg-materials, body.pg-capabilities) .page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #cddaee 1px, transparent 1px); background-size: 26px 26px; opacity: 0.5; -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); }
:is(body.pg-materials, body.pg-capabilities) .page-hero .wrap { position: relative; z-index: 2; }
:is(body.pg-materials, body.pg-capabilities) .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
:is(body.pg-materials, body.pg-capabilities) .breadcrumb a { color: var(--muted); text-decoration: none; }
:is(body.pg-materials, body.pg-capabilities) .breadcrumb a:hover { color: var(--sky-dk); }
:is(body.pg-materials, body.pg-capabilities) .page-hero h1 { font-size: 60px; font-weight: 700; margin-bottom: 18px; max-width: 760px; }
:is(body.pg-materials, body.pg-capabilities) .page-hero h1 .accent { color: var(--sky-dk); }
:is(body.pg-materials, body.pg-capabilities) .page-hero p { font-size: 19px; font-weight: 300; color: var(--body); max-width: 620px; }
:is(body.pg-materials, body.pg-capabilities) section { padding: 76px 0; }
:is(body.pg-materials, body.pg-capabilities) .section-head { margin-bottom: 40px; max-width: 720px; }
:is(body.pg-materials, body.pg-capabilities) .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky-dk); margin-bottom: 14px; }
:is(body.pg-materials, body.pg-capabilities) .section-head h2 { font-size: 42px; font-weight: 700; margin-bottom: 14px; }
:is(body.pg-materials, body.pg-capabilities) .section-head p { font-size: 18px; font-weight: 300; color: var(--body); }
:is(body.pg-materials, body.pg-capabilities) .matrix-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
:is(body.pg-materials, body.pg-capabilities) .matrix { display: grid; grid-template-columns: 168px repeat(4, 1fr); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; background: var(--surface); box-shadow: 0 8px 30px rgba(27,47,90,0.06); min-width: 720px; }
:is(body.pg-materials, body.pg-capabilities) .mx { padding: 20px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); display: flex; align-items: center; }
:is(body.pg-materials, body.pg-capabilities) .mx:nth-child(5n) { border-right: none; }
:is(body.pg-materials, body.pg-capabilities) .matrix > .mx:nth-last-child(-n+5) { border-bottom: none; }
:is(body.pg-materials, body.pg-capabilities) .mx-corner { background: var(--surface2); }
:is(body.pg-materials, body.pg-capabilities) .mx-head { background: var(--navy); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 21px; justify-content: center; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
:is(body.pg-materials, body.pg-capabilities) .mx-head:nth-child(5n) { border-right: none; }
:is(body.pg-materials, body.pg-capabilities) .mx-label { background: var(--surface2); color: var(--navy); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
:is(body.pg-materials, body.pg-capabilities) .mx-val { font-size: 15px; color: var(--ink); font-weight: 500; }
:is(body.pg-materials, body.pg-capabilities) .mx-sub { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; font-weight: 400; }
:is(body.pg-materials, body.pg-capabilities) .pricewrap { display: flex; flex-direction: column; gap: 7px; }
:is(body.pg-materials, body.pg-capabilities) .pricebar { display: flex; gap: 4px; }
:is(body.pg-materials, body.pg-capabilities) .pricebar i { width: 22px; height: 7px; border-radius: 3px; background: var(--border2); }
:is(body.pg-materials, body.pg-capabilities) .pricebar i.on { background: var(--sky-dk); }
:is(body.pg-materials, body.pg-capabilities) .price-lbl { font-size: 12px; color: var(--muted); font-weight: 600; }
:is(body.pg-materials, body.pg-capabilities) .swatch-cell { display: flex; align-items: center; gap: 10px; }
:is(body.pg-materials, body.pg-capabilities) .swatch { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border2); flex-shrink: 0; }
:is(body.pg-materials, body.pg-capabilities) .swatch.black { background: #1c1c20; }
:is(body.pg-materials, body.pg-capabilities) .swatch.offwhite { background: #ece6d8; }
:is(body.pg-materials, body.pg-capabilities) .swatch-lbl { font-size: 14px; color: var(--ink); }
:is(body.pg-materials, body.pg-capabilities) .mat-detail-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
:is(body.pg-materials, body.pg-capabilities) .mat-detail { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: var(--page-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 20px; transition: box-shadow 0.2s, border-color 0.2s; }
:is(body.pg-materials, body.pg-capabilities) .mat-detail:hover { box-shadow: 0 12px 34px rgba(27,47,90,0.09); border-color: var(--accent); }
:is(body.pg-materials, body.pg-capabilities) .mat-detail:last-child { margin-bottom: 0; }
:is(body.pg-materials, body.pg-capabilities) .mat-id { background: var(--accent-bg); padding: 32px 30px; border-right: 1px solid var(--border); display: flex; flex-direction: column; position: relative; }
:is(body.pg-materials, body.pg-capabilities) .mat-id::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--accent); }
:is(body.pg-materials, body.pg-capabilities) .mat-id .tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--accent); font-weight: 500; letter-spacing: 0.06em; margin-bottom: 12px; }
:is(body.pg-materials, body.pg-capabilities) .mat-id h3 { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 0.95; }
:is(body.pg-materials, body.pg-capabilities) .mat-id .app { font-size: 15px; color: var(--accent); font-weight: 600; margin-bottom: 22px; }
:is(body.pg-materials, body.pg-capabilities) .mat-id .idrow { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(42,70,135,0.1); font-size: 13px; }
:is(body.pg-materials, body.pg-capabilities) .mat-id .idrow .k { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 10px; width: 56px; flex-shrink: 0; }
:is(body.pg-materials, body.pg-capabilities) .mat-id .idrow .v { color: var(--ink); font-weight: 500; }
:is(body.pg-materials, body.pg-capabilities) .mat-body { padding: 32px 34px; }
:is(body.pg-materials, body.pg-capabilities) .mat-body > p { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 22px; }
:is(body.pg-materials, body.pg-capabilities) .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
:is(body.pg-materials, body.pg-capabilities) .chip { background: var(--surface); border: 1px solid var(--border2); color: var(--navy); font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 100px; }
:is(body.pg-materials, body.pg-capabilities) .mat-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
:is(body.pg-materials, body.pg-capabilities) .mat-cols h5 { font-family: 'Barlow', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
:is(body.pg-materials, body.pg-capabilities) .mat-cols ul { list-style: none; }
:is(body.pg-materials, body.pg-capabilities) .mat-cols li { font-size: 14px; color: var(--ink); padding: 4px 0; display: flex; align-items: baseline; gap: 9px; }
:is(body.pg-materials, body.pg-capabilities) .best li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transform: translateY(7px); }
:is(body.pg-materials, body.pg-capabilities) .avoid li::before { content: '–'; color: var(--muted); font-weight: 700; flex-shrink: 0; }
:is(body.pg-materials, body.pg-capabilities) .avoid li { color: var(--body); }
:is(body.pg-materials, body.pg-capabilities) .m-paht { --accent: #2a4687; --accent-bg: #e3ebf8; }
:is(body.pg-materials, body.pg-capabilities) .m-tpu { --accent: #1a7a8c; --accent-bg: #ddf0f3; }
:is(body.pg-materials, body.pg-capabilities) .m-asa { --accent: #b5601a; --accent-bg: #f9ecdb; }
:is(body.pg-materials, body.pg-capabilities) .m-pla { --accent: #5a96cc; --accent-bg: #e6f0fa; }
:is(body.pg-materials, body.pg-capabilities) .specs { background: var(--navy); color: #cdddf0; position: relative; overflow: hidden; }
:is(body.pg-materials, body.pg-capabilities) .specs::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(142,188,229,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(142,188,229,0.05) 1px, transparent 1px); background-size: 40px 40px; }
:is(body.pg-materials, body.pg-capabilities) .specs .wrap { position: relative; z-index: 2; }
:is(body.pg-materials, body.pg-capabilities) .specs .section-eyebrow { color: var(--sky); }
:is(body.pg-materials, body.pg-capabilities) .specs .section-head h2 { color: #fff; }
:is(body.pg-materials, body.pg-capabilities) .specs .section-head p { color: #b8cce4; }
:is(body.pg-materials, body.pg-capabilities) .specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
:is(body.pg-materials, body.pg-capabilities) .specs-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(142,188,229,0.18); border-radius: 12px; padding: 26px 24px; }
:is(body.pg-materials, body.pg-capabilities) .specs-card .k { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); font-weight: 600; margin-bottom: 10px; }
:is(body.pg-materials, body.pg-capabilities) .specs-card .v { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: #fff; line-height: 1; }
:is(body.pg-materials, body.pg-capabilities) .specs-card .v small { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: #b8cce4; font-weight: 400; }
:is(body.pg-materials, body.pg-capabilities) .pp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
:is(body.pg-materials, body.pg-capabilities) .pp-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px 20px; text-align: center; transition: border-color 0.18s, transform 0.18s; }
:is(body.pg-materials, body.pg-capabilities) .pp-card:hover { border-color: var(--sky-dk); transform: translateY(-3px); }
:is(body.pg-materials, body.pg-capabilities) .pp-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--sky-lt); color: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
:is(body.pg-materials, body.pg-capabilities) .pp-icon svg { width: 22px; height: 22px; }
:is(body.pg-materials, body.pg-capabilities) .pp-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; color: var(--navy); font-weight: 600; }
:is(body.pg-materials, body.pg-capabilities) .final-cta { background: var(--sky-xl); }
:is(body.pg-materials, body.pg-capabilities) .cta-box { background: var(--navy); border-radius: 20px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; position: relative; overflow: hidden; }
:is(body.pg-materials, body.pg-capabilities) .cta-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(142,188,229,0.12) 1px, transparent 1px); background-size: 24px 24px; }
:is(body.pg-materials, body.pg-capabilities) .cta-box-content { position: relative; z-index: 2; }
:is(body.pg-materials, body.pg-capabilities) .cta-box h2 { color: #fff; font-size: 38px; font-weight: 700; margin-bottom: 12px; }
:is(body.pg-materials, body.pg-capabilities) .cta-box p { color: #b8cce4; font-size: 17px; font-weight: 300; max-width: 500px; }
:is(body.pg-materials, body.pg-capabilities) .cta-btns { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
:is(body.pg-materials, body.pg-capabilities) .btn-sky { background: var(--sky); color: var(--navy-dk); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.03em; text-transform: uppercase; padding: 16px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, transform 0.15s; white-space: nowrap; }
:is(body.pg-materials, body.pg-capabilities) .btn-sky:hover { background: #a6cef0; transform: translateY(-2px); }
:is(body.pg-materials, body.pg-capabilities) .btn-ghost { background: transparent; color: var(--sky); border: 1px solid rgba(142,188,229,0.4); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase; padding: 14px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, border-color 0.18s; white-space: nowrap; }
:is(body.pg-materials, body.pg-capabilities) .btn-ghost:hover { background: rgba(142,188,229,0.1); border-color: var(--sky); }
@media (max-width: 920px) {
    :is(body.pg-materials, body.pg-capabilities) .page-hero h1 { font-size: 46px; }
    :is(body.pg-materials, body.pg-capabilities) .mat-detail { grid-template-columns: 1fr; }
    :is(body.pg-materials, body.pg-capabilities) .mat-id { border-right: none; border-bottom: 1px solid var(--border); }
    :is(body.pg-materials, body.pg-capabilities) .mat-id::before { width: 100%; height: 5px; }
    :is(body.pg-materials, body.pg-capabilities) .specs-grid { grid-template-columns: 1fr 1fr; }
    :is(body.pg-materials, body.pg-capabilities) .pp-grid { grid-template-columns: repeat(3, 1fr); }
    :is(body.pg-materials, body.pg-capabilities) .cta-box { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    :is(body.pg-materials, body.pg-capabilities) .page-hero h1 { font-size: 38px; }
    :is(body.pg-materials, body.pg-capabilities) .section-head h2 { font-size: 32px; }
    :is(body.pg-materials, body.pg-capabilities) .mat-cols { grid-template-columns: 1fr; gap: 18px; }
    :is(body.pg-materials, body.pg-capabilities) .specs-grid, :is(body.pg-materials, body.pg-capabilities) .pp-grid { grid-template-columns: 1fr; }
    :is(body.pg-materials, body.pg-capabilities) .cta-box { padding: 40px 28px; }
  }
:is(body.pg-materials, body.pg-capabilities) .page-hero .wrap > * { animation: fadeUp 0.55s ease both; }

/* ════ PAGE: INDUSTRIES ════ */
body.pg-industries .page-hero { position: relative; padding: 72px 0 56px; overflow: hidden; }
body.pg-industries .page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #cddaee 1px, transparent 1px); background-size: 26px 26px; opacity: 0.5; -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); mask-image: linear-gradient(to bottom, #000 0%, transparent 85%); }
body.pg-industries .page-hero .wrap { position: relative; z-index: 2; }
body.pg-industries .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
body.pg-industries .breadcrumb a { color: var(--muted); text-decoration: none; }
body.pg-industries .breadcrumb a:hover { color: var(--sky-dk); }
body.pg-industries .page-hero h1 { font-size: 60px; font-weight: 700; margin-bottom: 18px; max-width: 800px; }
body.pg-industries .page-hero h1 .accent { color: var(--sky-dk); }
body.pg-industries .page-hero p { font-size: 19px; font-weight: 300; color: var(--body); max-width: 640px; }
body.pg-industries .ind-jump { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
body.pg-industries .ind-jump a { text-decoration: none; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--surface); border: 1px solid var(--border2); padding: 9px 18px; border-radius: 100px; transition: border-color 0.15s, transform 0.15s; }
body.pg-industries .ind-jump a:hover { border-color: var(--sky-dk); transform: translateY(-2px); }
body.pg-industries section { padding: 80px 0; }
body.pg-industries .ind-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
body.pg-industries .ind-block { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 50px; align-items: center; }
body.pg-industries .ind-block.flip .ind-visual { order: 2; }
body.pg-industries .ind-visual { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%); border-radius: 18px; aspect-ratio: 5/6; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 44px rgba(27,47,90,0.2); }
body.pg-industries .ind-visual .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(142,188,229,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(142,188,229,0.08) 1px, transparent 1px); background-size: 28px 28px; }
body.pg-industries .ind-visual svg.art { width: 50%; height: 50%; position: relative; z-index: 2; color: var(--sky); }
body.pg-industries .ind-badge { position: absolute; bottom: 18px; left: 18px; z-index: 3; background: rgba(255,255,255,0.1); border: 1px solid rgba(142,188,229,0.3); backdrop-filter: blur(6px); color: #fff; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 6px 13px; border-radius: 6px; }
body.pg-industries .ind-accentbar { position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--accent); z-index: 3; }
body.pg-industries .ind-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
body.pg-industries .ind-eyebrow::after { content: ''; width: 50px; height: 1px; background: var(--border2); }
body.pg-industries .ind-content h2 { font-size: 40px; font-weight: 700; margin-bottom: 14px; }
body.pg-industries .ind-content > p { font-size: 17px; color: var(--body); line-height: 1.65; margin-bottom: 26px; max-width: 600px; }
body.pg-industries .ind-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 26px; }
body.pg-industries .ind-col h5 { font-family: 'Barlow', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
body.pg-industries .ind-col.matters h5 { color: var(--muted); }
body.pg-industries .ind-col.help h5 { color: var(--accent); }
body.pg-industries .ind-col ul { list-style: none; }
body.pg-industries .ind-col li { font-size: 14px; color: var(--ink); padding: 6px 0; display: flex; align-items: baseline; gap: 10px; line-height: 1.4; }
body.pg-industries .ind-col.matters li::before { content: ''; width: 6px; height: 6px; border: 1.5px solid var(--muted); border-radius: 50%; flex-shrink: 0; transform: translateY(6px); }
body.pg-industries .ind-col.help li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; flex-shrink: 0; }
body.pg-industries .ind-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 22px; }
body.pg-industries .ind-mats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
body.pg-industries .ind-mats .lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-right: 4px; }
body.pg-industries .mat-chip { font-size: 13px; font-weight: 600; color: var(--navy); background: var(--accent-bg); border: 1px solid var(--accent); border-radius: 100px; padding: 5px 13px; }
body.pg-industries .ind-cta { color: var(--accent); text-decoration: none; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 7px; transition: gap 0.18s; white-space: nowrap; }
body.pg-industries .ind-cta:hover { gap: 11px; }
body.pg-industries .i-aero { --accent: #2a4687; --accent-bg: #e3ebf8; }
body.pg-industries .i-rd { --accent: #1a8a66; --accent-bg: #d8f0e6; }
body.pg-industries .i-ind { --accent: #b5601a; --accent-bg: #f9ecdb; }
body.pg-industries .also { background: var(--page-bg); }
body.pg-industries .also .section-head { max-width: 720px; margin-bottom: 36px; }
body.pg-industries .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky-dk); margin-bottom: 14px; }
body.pg-industries .also h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
body.pg-industries .also .section-head p { font-size: 17px; font-weight: 300; color: var(--body); }
body.pg-industries .also-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
body.pg-industries .also-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px 22px; transition: border-color 0.18s, transform 0.18s; }
body.pg-industries .also-card:hover { border-color: var(--sky-dk); transform: translateY(-3px); }
body.pg-industries .also-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--sky-lt); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
body.pg-industries .also-icon svg { width: 21px; height: 21px; }
body.pg-industries .also-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; color: var(--navy); font-weight: 600; margin-bottom: 6px; }
body.pg-industries .also-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
body.pg-industries .final-cta { background: var(--sky-xl); }
body.pg-industries .cta-box { background: var(--navy); border-radius: 20px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; position: relative; overflow: hidden; }
body.pg-industries .cta-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(142,188,229,0.12) 1px, transparent 1px); background-size: 24px 24px; }
body.pg-industries .cta-box-content { position: relative; z-index: 2; }
body.pg-industries .cta-box h2 { color: #fff; font-size: 38px; font-weight: 700; margin-bottom: 12px; }
body.pg-industries .cta-box p { color: #b8cce4; font-size: 17px; font-weight: 300; max-width: 500px; }
body.pg-industries .cta-btns { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
body.pg-industries .btn-sky { background: var(--sky); color: var(--navy-dk); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.03em; text-transform: uppercase; padding: 16px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, transform 0.15s; white-space: nowrap; }
body.pg-industries .btn-sky:hover { background: #a6cef0; transform: translateY(-2px); }
body.pg-industries .btn-ghost { background: transparent; color: var(--sky); border: 1px solid rgba(142,188,229,0.4); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase; padding: 14px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, border-color 0.18s; white-space: nowrap; }
body.pg-industries .btn-ghost:hover { background: rgba(142,188,229,0.1); border-color: var(--sky); }
@media (max-width: 920px) {
    body.pg-industries .page-hero h1 { font-size: 46px; }
    body.pg-industries .ind-block { grid-template-columns: 1fr; gap: 32px; }
    body.pg-industries .ind-block.flip .ind-visual { order: 0; }
    body.pg-industries .ind-visual { aspect-ratio: 16/9; }
    body.pg-industries .also-grid { grid-template-columns: 1fr 1fr; }
    body.pg-industries .cta-box { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    body.pg-industries .page-hero h1 { font-size: 38px; }
    body.pg-industries .ind-content h2 { font-size: 32px; }
    body.pg-industries .ind-cols { grid-template-columns: 1fr; gap: 20px; }
    body.pg-industries .also-grid { grid-template-columns: 1fr; }
    body.pg-industries .cta-box { padding: 40px 28px; }
  }
body.pg-industries .page-hero .wrap > * { animation: fadeUp 0.55s ease both; }

/* ════ PAGE: ABOUT ════ */
body.pg-about .img-ph { position: relative; border: 2px dashed var(--border2); background: linear-gradient(135deg, var(--sky-xl) 0%, var(--surface2) 100%); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 20px; }
body.pg-about .img-ph::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.4; }
body.pg-about .img-ph .ph-inner { position: relative; z-index: 2; }
body.pg-about .img-ph svg { width: 38px; height: 38px; color: var(--sky-dk); opacity: 0.65; margin-bottom: 10px; }
body.pg-about .img-ph .ph-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; color: var(--navy); }
body.pg-about .img-ph .ph-hint { font-size: 13px; color: var(--muted); margin-top: 3px; max-width: 240px; }
body.pg-about .img-ph .ph-dim { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--sky-dk); margin-top: 8px; background: rgba(142,188,229,0.18); padding: 3px 9px; border-radius: 4px; display: inline-block; }
body.pg-about .img-ph .ph-badge { position: absolute; top: 12px; left: 12px; z-index: 3; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; background: var(--navy); color: #fff; padding: 4px 9px; border-radius: 4px; }
body.pg-about .img-real { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
body.pg-about .ar-wide { aspect-ratio: 16 / 9; }
body.pg-about .ar-photo { aspect-ratio: 4 / 3; }
body.pg-about .ar-square { aspect-ratio: 1 / 1; }
body.pg-about .ar-port { aspect-ratio: 4 / 5; }
body.pg-about .page-hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
body.pg-about .page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #cddaee 1px, transparent 1px); background-size: 26px 26px; opacity: 0.5; -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 90%); mask-image: linear-gradient(to bottom, #000 0%, transparent 90%); }
body.pg-about .page-hero .wrap { position: relative; z-index: 2; }
body.pg-about .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
body.pg-about .breadcrumb a { color: var(--muted); text-decoration: none; }
body.pg-about .breadcrumb a:hover { color: var(--sky-dk); }
body.pg-about .page-hero h1 { font-size: 60px; font-weight: 700; margin-bottom: 18px; max-width: 760px; }
body.pg-about .page-hero h1 .accent { color: var(--sky-dk); }
body.pg-about .page-hero p { font-size: 19px; font-weight: 300; color: var(--body); max-width: 620px; }
body.pg-about .hero-img { margin-top: 44px; }
body.pg-about section { padding: 76px 0; }
body.pg-about .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky-dk); margin-bottom: 14px; }
body.pg-about .section-head { margin-bottom: 40px; max-width: 720px; }
body.pg-about .section-head h2 { font-size: 42px; font-weight: 700; margin-bottom: 14px; }
body.pg-about .section-head p { font-size: 18px; font-weight: 300; color: var(--body); }
body.pg-about .story { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
body.pg-about .story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
body.pg-about .story-text .section-eyebrow { margin-bottom: 14px; }
body.pg-about .story-text h2 { font-size: 40px; font-weight: 700; margin-bottom: 20px; }
body.pg-about .story-text p { font-size: 16px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }
body.pg-about .story-text p strong { color: var(--navy); font-weight: 600; }
body.pg-about .story-img-stack { display: grid; gap: 16px; }
body.pg-about .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
body.pg-about .team-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s; }
body.pg-about .team-card:hover { border-color: var(--sky-dk); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(27,47,90,0.1); }
body.pg-about .team-photo { width: 100%; }
body.pg-about .team-photo .img-ph { border-radius: 0; border-left: none; border-right: none; border-top: none; }
body.pg-about .team-info { padding: 24px 26px 28px; }
body.pg-about .team-role { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky-dk); font-weight: 700; margin-bottom: 4px; }
body.pg-about .team-info h3 { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
body.pg-about .team-info p { font-size: 14px; color: var(--body); line-height: 1.6; margin-bottom: 16px; }
body.pg-about .team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
body.pg-about .team-tag { font-size: 12px; font-weight: 500; color: var(--navy); background: var(--sky-lt); border-radius: 100px; padding: 4px 11px; }
body.pg-about .team-link { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: gap 0.18s; }
body.pg-about .team-link:hover { gap: 11px; }
body.pg-about .values { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
body.pg-about .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.pg-about .value-card { padding: 4px 0; }
body.pg-about .value-num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--sky-dk); font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
body.pg-about .value-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
body.pg-about .value-card h3 { font-size: 23px; font-weight: 600; margin-bottom: 10px; }
body.pg-about .value-card p { font-size: 15px; color: var(--body); line-height: 1.6; }
body.pg-about .value-card p strong { color: var(--navy); font-weight: 600; }
body.pg-about .gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
body.pg-about .gallery-grid .g1 { grid-row: span 2; }
body.pg-about .bg-band { background: var(--navy); position: relative; overflow: hidden; }
body.pg-about .bg-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(142,188,229,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(142,188,229,0.05) 1px, transparent 1px); background-size: 40px 40px; }
body.pg-about .bg-band .wrap { position: relative; z-index: 2; }
body.pg-about .bg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
body.pg-about .bg-card { text-align: center; padding: 10px; }
body.pg-about .bg-card .v { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 8px; }
body.pg-about .bg-card .v .sky { color: var(--sky); }
body.pg-about .bg-card .k { font-size: 14px; color: #b8cce4; }
body.pg-about .final-cta { background: var(--sky-xl); }
body.pg-about .cta-box { background: var(--navy); border-radius: 20px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; position: relative; overflow: hidden; }
body.pg-about .cta-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(142,188,229,0.12) 1px, transparent 1px); background-size: 24px 24px; }
body.pg-about .cta-box-content { position: relative; z-index: 2; }
body.pg-about .cta-box h2 { color: #fff; font-size: 38px; font-weight: 700; margin-bottom: 12px; }
body.pg-about .cta-box p { color: #b8cce4; font-size: 17px; font-weight: 300; max-width: 500px; }
body.pg-about .cta-btns { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
body.pg-about .btn-sky { background: var(--sky); color: var(--navy-dk); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.03em; text-transform: uppercase; padding: 16px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, transform 0.15s; white-space: nowrap; }
body.pg-about .btn-sky:hover { background: #a6cef0; transform: translateY(-2px); }
body.pg-about .btn-ghost { background: transparent; color: var(--sky); border: 1px solid rgba(142,188,229,0.4); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase; padding: 14px 38px; border-radius: 8px; text-align: center; transition: background 0.18s, border-color 0.18s; white-space: nowrap; }
body.pg-about .btn-ghost:hover { background: rgba(142,188,229,0.1); border-color: var(--sky); }
@media (max-width: 920px) {
    body.pg-about .page-hero h1 { font-size: 46px; }
    body.pg-about .story-grid { grid-template-columns: 1fr; gap: 36px; }
    body.pg-about .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    body.pg-about .values-grid { grid-template-columns: 1fr; }
    body.pg-about .gallery-grid { grid-template-columns: 1fr 1fr; }
    body.pg-about .gallery-grid .g1 { grid-row: span 1; grid-column: span 2; }
    body.pg-about .bg-grid { grid-template-columns: 1fr; gap: 28px; }
    body.pg-about .cta-box { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    body.pg-about .page-hero h1 { font-size: 38px; }
    body.pg-about .section-head h2, body.pg-about .story-text h2 { font-size: 32px; }
    body.pg-about .gallery-grid { grid-template-columns: 1fr; }
    body.pg-about .gallery-grid .g1 { grid-column: span 1; }
    body.pg-about .cta-box { padding: 40px 28px; }
  }
body.pg-about .page-hero .wrap > * { animation: fadeUp 0.55s ease both; }
