/* ═══════════════════════════════════════════════════════
   BALLS AND CYLPEBS LIMITED — style.css
   Version: 2.0  |  ISO 9001:2015 Certified
═══════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────── */
:root {
  --navy:  #0a1228;
  --navy2: #11193a;
  --navy3: #18244e;
  --red:   #8b1a1a;
  --red2:  #a82020;
  --red3:  #c43030;
  --gold:  #c9a84c;
  --white: #fff;
  --snow:  #f8f9fd;
  --ice:   #eef0f8;
  --border:  #dce2f0;
  --border2: #c8d2e8;
  --t1: #0a1228;
  --t2: #2c3860;
  --t3: #5c6e9a;
  --t4: #8a9bbf;
  --fs: 0 1px 3px rgba(10,18,40,.06), 0 4px 14px rgba(10,18,40,.08);
  --fm: 0 4px 20px rgba(10,18,40,.10), 0 12px 44px rgba(10,18,40,.10);
  --fl: 0 8px 36px rgba(10,18,40,.14), 0 24px 72px rgba(10,18,40,.12);
  --fd: 'Bebas Neue', sans-serif;
  --fc: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, .6, .4, 1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--t1);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── SCROLL PROGRESS BAR ─────────────────────────────── */
#prog {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red3));
  transition: width .1s linear;
}

/* ── NAVBAR ──────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 104px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 5vw;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s, box-shadow .4s, height .3s;
}
#nav.hero-top { background: transparent; }
#nav.scrolled {
  height: 72px;
  background: rgba(255,255,255,.97);
  border-color: var(--border);
  box-shadow: var(--fs);
  backdrop-filter: blur(20px);
}
.n-brand { display: flex; align-items: center; gap: 14px; }
.n-logo { height: 78px; width: auto; display: block; transition: filter .3s, height .3s; }
#nav.scrolled .n-logo { height: 52px; }
#nav.hero-top .n-logo { filter: brightness(0) invert(1); }
.ft-logo-img { height: 116px; width: auto; display: block; filter: brightness(0) invert(1); }

.n-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.n-links a {
  font-family: var(--fc); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--t2); position: relative; transition: color .25s; padding-bottom: 2px;
}
.n-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--red);
  transition: width .3s var(--ease);
}
.n-links a:hover             { color: var(--navy); }
.n-links a:hover::after      { width: 100%; }
#nav.hero-top .n-links a     { color: rgba(255,255,255,.7); }
#nav.hero-top .n-links a:hover { color: #fff; }

.n-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 9px 22px; letter-spacing: 2px !important;
  transition: background .25s, box-shadow .25s !important;
}
.n-cta:hover    { background: var(--red2) !important; box-shadow: 0 4px 18px rgba(139,26,26,.4) !important; }
.n-cta::after   { display: none !important; }
#nav.hero-top .n-cta { background: var(--red) !important; }

/* hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); transition: transform .3s, opacity .3s;
}
#nav.hero-top .ham span { background: #fff; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mob {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); flex-direction: column;
  padding: 88px 7vw 48px; overflow-y: auto;
}
.mob.open { display: flex; }
.mob-link {
  font-family: var(--fd); font-size: clamp(32px, 7vw, 48px);
  letter-spacing: 2px; color: rgba(255,255,255,.7);
  text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 15px 0; transition: color .2s, padding-left .2s;
  display: flex; align-items: center; justify-content: space-between;
}
.mob-link:hover { color: #fff; padding-left: 8px; }
.mob-link-arr { font-size: 20px; color: var(--red); opacity: 0; transition: opacity .2s; }
.mob-link:hover .mob-link-arr { opacity: 1; }
.mob-bottom {
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mob-contact { font-size: 13px; color: rgba(255,255,255,.35); font-weight: 300; line-height: 2; }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  background: var(--navy); overflow: hidden;
}

/* Split: dark left + photo right */
.h-split { flex: 1; display: grid; grid-template-columns: 1.1fr 1fr; min-height: calc(100vh - 88px); }

/* Left panel */
.h-lp {
  background: var(--navy); display: flex; align-items: center;
  padding: 136px 5vw 64px 5vw; position: relative;
}
.h-lp::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red) 25%, var(--red) 75%, transparent);
}
.h-lp-inner { width: 100%; position: relative; z-index: 1; }

.h-eye { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; opacity: 0; animation: aUp .7s .1s ease forwards; }
.h-eye-line { width: 32px; height: 1.5px; background: var(--red); flex-shrink: 0; }
.h-eye-txt  { font-family: var(--fc); font-size: 10px; letter-spacing: 5px; font-weight: 700; color: rgba(255,255,255,.42); text-transform: uppercase; }

h1.h-title {
  font-family: var(--fd); font-size: clamp(56px, 6.8vw, 108px);
  line-height: .88; letter-spacing: 2px; color: #fff;
  margin-bottom: 28px; opacity: 0; animation: aUp .8s .18s ease forwards;
}
h1.h-title em { font-style: normal; color: var(--red3); -webkit-text-fill-color: var(--red3); }

.h-desc {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.48);
  line-height: 1.92; max-width: 500px; margin-bottom: 40px;
  opacity: 0; animation: aUp .8s .26s ease forwards;
}
.h-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; opacity: 0; animation: aUp .8s .34s ease forwards; }

/* Horizontal stats bar — 4 columns inside left panel */
.h-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0; animation: aFade .9s .5s ease forwards;
}
.h-stat {
  background: var(--navy); padding: 20px 18px;
  border-left: 2px solid transparent;
  transition: background .3s, border-color .25s;
}
.h-stat:first-child { border-left-color: var(--red); }
.h-stat:hover { background: rgba(255,255,255,.05); border-left-color: var(--red); }
.s-num { font-family: var(--fd); font-size: 38px; line-height: 1; color: #fff; letter-spacing: 1px; }
.s-num sup { font-size: 18px; color: var(--red3); vertical-align: super; }
.s-lbl { font-family: var(--fc); font-size: 9px; letter-spacing: 2.5px; color: rgba(255,255,255,.32); text-transform: uppercase; margin-top: 5px; font-weight: 700; }

/* Right panel: heritage photo */
.h-rp { position: relative; overflow: hidden; }
.h-rp-img {
  position: absolute; inset: 0;
  background: url('assets/plant-heritage.jpeg') center 30% / cover no-repeat;
  filter: sepia(30%) contrast(1.08) brightness(.78) saturate(.85);
  transition: transform 9s ease;
}
#hero:hover .h-rp-img { transform: scale(1.04); }
.h-rp-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  var(--navy) 0%, rgba(10,18,40,.55) 22%, rgba(10,18,40,.12) 42%, transparent 62%),
    linear-gradient(to bottom, var(--navy) 0%, transparent 14%, transparent 86%, var(--navy) 100%);
}
.h-rp-caption {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  font-family: var(--fc); font-size: 9px; letter-spacing: 3px;
  color: rgba(255,255,255,.45); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: aFade 1s .9s ease forwards;
}
.h-rp-caption::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.3); }
.h-rp-badge {
  position: absolute; top: 144px; right: 32px; z-index: 2;
  background: rgba(6,13,30,.75); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-top: 2px solid var(--red);
  padding: 18px 22px; text-align: center;
  opacity: 0; animation: aFade 1s .7s ease forwards;
}
.h-rp-badge-sub { font-family: var(--fc); font-size: 9px; letter-spacing: 4px; color: rgba(255,255,255,.38); text-transform: uppercase; display: block; margin-bottom: 6px; }
.h-rp-badge-yr  { font-family: var(--fd); font-size: 42px; color: #fff; display: block; line-height: 1; letter-spacing: 2px; }

/* Milestone strip — full width below split */
.h-milestones {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0; animation: aFade .9s .65s ease forwards;
}
.h-ms-item {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.h-ms-item:last-child { border-right: none; }
.h-ms-item:hover { background: rgba(255,255,255,.03); }
.h-ms-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(139,26,26,.22);
}
.h-ms-text {
  font-family: var(--fc); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.42); line-height: 1.55;
}

/* Buttons */
.btn-r {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; padding: 14px 30px;
  font-family: var(--fc); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background .25s, box-shadow .25s, transform .25s;
}
.btn-r:hover { background: var(--red2); box-shadow: 0 8px 28px rgba(139,26,26,.5); transform: translateY(-2px); }
.btn-r svg   { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .25s; }
.btn-r:hover svg { transform: translateX(3px); }

.btn-w {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.7); padding: 13px 30px;
  border: 1px solid rgba(255,255,255,.15);
  font-family: var(--fc); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-w:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.05); }
.btn-w svg   { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

/* ── TICKER ──────────────────────────────────────────── */
.ticker { background: var(--red); overflow: hidden; padding: 11px 0; position: relative; }
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 80px; pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg,  var(--red), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--red), transparent); }
.ticker-in { display: inline-flex; animation: ticker 50s linear infinite; white-space: nowrap; }
.t-i { font-family: var(--fc); font-size: 11px; font-weight: 700; letter-spacing: 4px; color: #fff; padding: 0 40px; text-transform: uppercase; }
.t-d { color: rgba(255,255,255,.25); padding: 0 4px; }

/* ── SHARED LAYOUT ───────────────────────────────────── */
.wrap  { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.sp    { padding: 112px 0; }
.s-eye { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.s-eye-line { width: 24px; height: 1.5px; background: var(--red); }
.s-eye-txt  { font-family: var(--fc); font-size: 10px; letter-spacing: 5px; font-weight: 700; color: var(--red); text-transform: uppercase; }
.s-title    { font-family: var(--fd); font-size: clamp(34px, 5vw, 68px); line-height: .91; letter-spacing: 1.5px; color: var(--navy); }
.s-title .ac { color: var(--red); }
#fac .s-title .ac { color: var(--red3); }
.s-sub      { font-size: 15px; color: var(--t3); max-width: 560px; margin-top: 14px; line-height: 1.9; font-weight: 300; }
.s-title-inv { color: #fff; }
.s-sub-inv   { color: rgba(255,255,255,.42); }

/* tables */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 8px; border: 1px solid var(--border); }
.tbl { width: 100%; border-collapse: collapse; min-width: 460px; }
.tbl thead th { background: var(--navy); color: #fff; padding: 13px 16px; text-align: left; font-family: var(--fc); letter-spacing: 2px; text-transform: uppercase; font-size: 10px; font-weight: 700; white-space: nowrap; }
.tbl tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--t2); vertical-align: top; line-height: 1.6; font-size: 13px; }
.tbl tbody tr:nth-child(even) td { background: var(--snow); }
.tbl tbody tr:hover td { background: rgba(139,26,26,.03); }
.tbl .kn { font-family: var(--fc); font-weight: 700; color: var(--navy); letter-spacing: .5px; font-size: 13px; }
.tbl .hd { font-weight: 700; color: var(--red); font-family: var(--fc); letter-spacing: .5px; }
.tbl .sr td { background: var(--navy) !important; color: #fff; font-family: var(--fc); font-weight: 700; letter-spacing: 2px; font-size: 10px; text-transform: uppercase; padding: 9px 16px; }
.tbl-note { font-size: 11px; color: var(--t4); margin-top: 8px; font-style: italic; }

/* feature list */
.flist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.flist li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--t2); line-height: 1.6; }
.flist li::before { content: ''; width: 5px; height: 5px; min-width: 5px; background: var(--red); margin-top: 8px; flex-shrink: 0; }
.flist.inv li { color: rgba(255,255,255,.55); }
.flist.inv li::before { background: var(--red3); }

/* ── VIDEO SECTION ───────────────────────────────────── */
#vid {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#vid::after {
  content: '1981';
  position: absolute; bottom: -8%; right: -1%;
  font-family: var(--fd);
  font-size: clamp(140px, 17vw, 260px);
  color: rgba(255,255,255,.025);
  pointer-events: none; z-index: 0; line-height: 1; letter-spacing: -4px;
}
.vid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 90% 10%, rgba(139,26,26,.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 5%  80%, rgba(10,18,40,.7)    0%, transparent 55%);
}

/* split layout */
.vid-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 600px;
  position: relative; z-index: 1;
}

/* text column */
.vid-txt {
  padding: 104px 64px 104px 5vw;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.vid-eyebrow {
  font-family: var(--fc); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red3); margin: 0 0 24px;
  display: flex; align-items: center; gap: 12px;
}
.vid-eyebrow::before {
  content: ''; display: block; flex-shrink: 0;
  width: 28px; height: 1.5px; background: var(--red3);
}
.vid-headline {
  font-family: var(--fd);
  font-size: clamp(56px, 6vw, 96px);
  line-height: .9; letter-spacing: 1px;
  color: #fff; margin: 0 0 32px;
}
.vid-headline em { font-style: normal; color: var(--red3); }
.vid-rule { width: 48px; height: 2px; background: var(--red); margin-bottom: 32px; }
.vid-desc {
  font-size: 14px; line-height: 1.9;
  color: rgba(255,255,255,.42);
  max-width: 380px; font-weight: 300;
  margin: 0 0 44px;
}
.vid-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.vid-badge {
  font-family: var(--fc); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 16px; background: rgba(255,255,255,.03);
  transition: border-color .25s, color .25s;
}
.vid-badge:hover { border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.8); }

/* video column */
.vid-frame-col {
  display: flex; flex-direction: column;
  justify-content: center; padding: 80px 5vw 80px 56px;
}
.vid-outer { position: relative; }
.vid-outer::before, .vid-outer::after { display: none; }
.vid-inner-br, .vid-inner-bl { display: none; }

/* thin red left-edge accent on the video */
.vid-frame-col::before {
  content: ''; position: absolute; left: 0;
  top: 80px; bottom: 80px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red) 40%, var(--red) 60%, transparent);
  opacity: .35;
}

.vid-box {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 0 0 1px rgba(139,26,26,.18),
    0 20px 60px rgba(0,0,0,.55),
    0 4px 16px rgba(0,0,0,.4);
}
.vid-box iframe, .vid-box video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

.vid-caption {
  font-family: var(--fc); font-size: 9px; letter-spacing: 2.5px;
  color: rgba(255,255,255,.2); text-transform: uppercase;
  margin-top: 18px;
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
}
.vid-caption::before {
  content: ''; flex: 1; max-width: 40px; height: 1px; background: rgba(255,255,255,.12);
}

.vid-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  background: linear-gradient(145deg, #0a1228 0%, #16214e 100%);
  cursor: pointer;
}
.vid-ph:hover .vid-play { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(139,26,26,.15), 0 8px 32px rgba(139,26,26,.4); }
.vid-play { width: 76px; height: 76px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease), box-shadow .3s; flex-shrink: 0; }
.vid-play svg { width: 28px; height: 28px; fill: #fff; margin-left: 5px; }
.vid-ph-txt strong { font-family: var(--fd); font-size: 24px; letter-spacing: 2px; color: #fff; display: block; text-align: center; margin-bottom: 6px; }
.vid-ph-txt span { font-family: var(--fc); font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,.35); text-transform: uppercase; text-align: center; display: block; }
.vid-ring { position: absolute; width: 76px; height: 76px; border-radius: 50%; border: 2px solid rgba(139,26,26,.4); animation: ring 2.5s ease-out infinite; }

@media(max-width:900px) {
  #vid::after { display: none; }
  .vid-split { grid-template-columns: 1fr; }
  .vid-txt { padding: 64px 5vw 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .vid-frame-col { padding: 40px 5vw 64px; }
  .vid-frame-col::before { display: none; }
  .vid-desc { max-width: 100%; }
}

/* ── ABOUT ───────────────────────────────────────────── */
#about { background: var(--white); overflow: hidden; padding-bottom: 0; }

/* Two-column intro header */
.ab-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 72px; }
.ab-hdr-l .s-title { margin-bottom: 0; }
.ab-lead { font-size: 15.5px; color: var(--t1); line-height: 1.88; font-weight: 300; padding-top: 6px; }

/* Photo + story split */
.ab-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: start; }

/* Photo column */
.ab-photo-frame { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.ab-photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 8s ease; }
.ab-photo-frame:hover img { transform: scale(1.04); }
.ab-photo-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,18,40,.28) 0%, transparent 35%, rgba(10,18,40,.55) 100%);
}
.ab-photo-ov::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--red3) 65%, transparent 100%);
}
.ab-photo-tag {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 14px 20px;
  background: rgba(10,18,40,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--fc); font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Story: numbered chapters */
.ab-story { display: flex; flex-direction: column; padding-top: 4px; }
.ab-chapter { display: flex; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.ab-chapter:first-child { padding-top: 0; }
.ab-chapter:last-child  { border-bottom: none; padding-bottom: 0; }
.ab-ch-num {
  font-family: var(--fd); font-size: 54px; line-height: 1;
  color: rgba(139,26,26,.12); flex-shrink: 0; width: 60px;
  text-align: right; letter-spacing: 1px; user-select: none;
}
.ab-ch-body { flex: 1; }
.ab-ch-title {
  font-family: var(--fc); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.ab-ch-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ab-ch-text { font-size: 14px; color: var(--t2); line-height: 1.9; font-weight: 300; }

/* Capability strip — full-width dark navy */
.ab-caps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); margin-top: 80px;
  border-top: 2px solid var(--red);
}
.ab-cap {
  padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .3s; position: relative; overflow: hidden;
}
.ab-cap::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .45s ease;
}
.ab-cap:hover { background: rgba(255,255,255,.04); }
.ab-cap:hover::after { width: 100%; }
.ab-cap:nth-child(4n) { border-right: none; }
.ab-cap-ico { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.ab-cap-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--red3); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ab-cap-label { font-family: var(--fc); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; line-height: 1.3; }
.ab-cap-sub { font-size: 11.5px; color: rgba(255,255,255,.38); font-weight: 300; line-height: 1.55; }

/* ── NUMBERS BAND ────────────────────────────────────── */
.num-band { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.num-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 82% 50%, rgba(139,26,26,.16) 0%, transparent 58%); }
.num-band::after  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }
.num-g { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.num-i {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .3s; position: relative;
}
.num-i::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--red); transition: width .4s var(--ease); }
.num-i:hover::after { width: 48px; }
.num-i:last-child { border-right: none; }
.num-i:hover { background: rgba(139,26,26,.07); }
.num-n   { font-family: var(--fd); font-size: 80px; line-height: 1; color: #fff; letter-spacing: 1px; }
.num-n sub { font-size: 44px; color: var(--red3); vertical-align: baseline; }
.num-l   { font-family: var(--fc); font-size: 10px; letter-spacing: 3.5px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; margin-top: 8px; }

/* ── PRODUCTS ────────────────────────────────────────── */
#products {
  background: var(--snow);
  background-image:
    radial-gradient(ellipse 55% 50% at 10% 30%, rgba(139,26,26,.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 90% 75%, rgba(10,18,40,.04) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
#products::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red3) 35%, transparent 75%);
  z-index: 1;
}
#products::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(10,18,40,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,18,40,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000 25%, transparent 78%);
}
.prod-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end; margin-bottom: 64px; position: relative; z-index: 1; }
.tab-bar { display: flex; gap: 0; border-bottom: 1px solid var(--border2); margin-bottom: 52px; overflow-x: auto; scrollbar-width: none; }
.tab-bar::-webkit-scrollbar { display: none; }
.tab { font-family: var(--fc); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 14px 26px; cursor: pointer; color: var(--t3); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color .25s, border-color .25s; }
.tab:hover { color: var(--navy); }
.tab.on { color: var(--red); border-color: var(--red); }
.panel { display: none; }
.panel.on { display: block; }
.pl { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.pl.rev { grid-template-columns: 1.15fr 1fr; }
.pl.rev > .p-info { order: -1; }
.p-vis { background: linear-gradient(148deg, var(--navy) 0%, var(--navy3) 100%); min-height: 320px; display: flex; align-items: center; justify-content: center; padding: 52px; position: relative; overflow: hidden; }
.p-vis::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px); }
.p-vis::after  { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.p-vis svg { position: relative; z-index: 1; opacity: .18; }
.p-tag { position: absolute; top: 0; right: 0; z-index: 2; background: var(--red); color: #fff; font-family: var(--fc); font-size: 10px; letter-spacing: 2px; font-weight: 700; padding: 7px 14px; text-transform: uppercase; clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%); }
.p-info h3 { font-family: var(--fd); font-size: clamp(30px, 3.5vw, 46px); line-height: .94; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 14px; }
.p-info p  { font-size: 14px; color: var(--t2); line-height: 1.9; margin-bottom: 12px; font-weight: 300; }
.p-sub { font-family: var(--fc); font-size: 10px; letter-spacing: 3px; font-weight: 700; color: var(--red); text-transform: uppercase; margin: 22px 0 10px; display: flex; align-items: center; gap: 8px; }
.p-sub::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.kg  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.kc  { background: var(--white); border: 1px solid var(--border); padding: 18px; transition: border-color .25s, box-shadow .25s, transform .2s; position: relative; overflow: hidden; }
.kc::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); opacity: 0; transition: opacity .25s; }
.kc:hover { border-color: var(--border2); box-shadow: var(--fm); transform: translateY(-3px); }
.kc:hover::before { opacity: 1; }
.kn  { font-family: var(--fd); font-size: 19px; letter-spacing: 1px; color: var(--navy); }
.kcr { display: inline-block; background: var(--red); color: #fff; font-family: var(--fc); font-size: 9px; font-weight: 700; letter-spacing: 2px; padding: 2px 9px; margin: 5px 0; text-transform: uppercase; }
.kh  { font-family: var(--fc); font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 1px; margin-bottom: 5px; }
.ka  { font-size: 11.5px; color: var(--t3); line-height: 1.5; }
.feat2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.fbox  { background: var(--white); border: 1px solid var(--border); padding: 22px 20px; }
.fbox-t { font-family: var(--fc); font-size: 10px; letter-spacing: 2.5px; font-weight: 700; color: var(--red); text-transform: uppercase; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.hci { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.hcc { background: var(--white); border: 1px solid var(--border); padding: 18px 12px; text-align: center; transition: border-color .25s, box-shadow .25s; }
.hcc:hover { border-color: rgba(139,26,26,.22); box-shadow: var(--fs); }
.hcc svg { width: 26px; height: 26px; fill: none; stroke: var(--navy); stroke-width: 1.5; margin: 0 auto 8px; }
.hcc-l { font-family: var(--fc); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--navy); text-transform: uppercase; line-height: 1.4; }

/* ── PRODUCT CARDS GRID ─────────────────────────────── */
.prod-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative; z-index: 1;
}
.prod-card {
  display: flex; flex-direction: column;
  background: var(--navy);
  padding: 52px 46px 42px;
  text-decoration: none; position: relative; overflow: hidden;
  border-top: 3px solid var(--red);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.prod-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 0% 0%, rgba(139,26,26,.10) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(0,0,0,.22), 0 4px 16px rgba(139,26,26,.12);
}
.prod-card:hover::before { opacity: 1; }

.prod-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 38px; }
.prod-card-num {
  font-family: var(--fd); font-size: 88px; line-height: .8;
  letter-spacing: -3px; color: rgba(139,26,26,.18);
  user-select: none;
}
.prod-card-badge {
  font-family: var(--fc); font-size: 9px; letter-spacing: 2.5px;
  font-weight: 700; color: #fff; text-transform: uppercase;
  background: var(--red); padding: 5px 13px;
  white-space: nowrap; margin-top: 12px;
}
.prod-card-visual {
  margin-bottom: 36px; min-height: 76px; display: flex; align-items: center;
  transition: transform .4s var(--ease);
}
.prod-card:hover .prod-card-visual { transform: translateY(-3px); }
.prod-card-title {
  font-family: var(--fd); font-size: clamp(30px, 2.8vw, 44px);
  line-height: .91; letter-spacing: 1.5px; color: #fff;
  margin-bottom: 18px;
}
.prod-card-desc {
  font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.45);
  margin-bottom: 36px; font-weight: 300; flex: 1;
}
.prod-card-specs {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,.07); margin-bottom: 36px;
}
.prod-spec-item {
  background: rgba(255,255,255,.04); padding: 16px 12px; text-align: center;
}
.prod-spec-val {
  font-family: var(--fd); font-size: 23px; color: #fff;
  line-height: 1; margin-bottom: 6px; letter-spacing: .5px;
}
.prod-spec-lbl {
  font-family: var(--fc); font-size: 9px; letter-spacing: 2px;
  color: rgba(255,255,255,.32); text-transform: uppercase;
}
.prod-card-cta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fc); font-size: 10px; letter-spacing: 2.5px;
  font-weight: 700; color: var(--red3); text-transform: uppercase;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  transition: gap .3s var(--ease), color .3s;
}
.prod-card-cta svg {
  width: 18px; height: 18px; stroke: var(--red3); stroke-width: 2;
  fill: none; flex-shrink: 0; transition: transform .3s var(--ease), stroke .3s;
}
.prod-card:hover .prod-card-cta { gap: 18px; color: #fff; }
.prod-card:hover .prod-card-cta svg { transform: translateX(7px); stroke: #fff; }

.prod-card-industries {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.pci-lbl {
  font-family: var(--fc); font-size: 8.5px; letter-spacing: 2.5px;
  font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.pci-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pci-tag {
  font-family: var(--fc); font-size: 9px; letter-spacing: 1.5px;
  font-weight: 600; text-transform: uppercase;
  color: rgba(255,255,255,.5); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  padding: 4px 10px;
  transition: color .25s, background .25s, border-color .25s;
}
.prod-card:hover .pci-tag {
  color: rgba(255,255,255,.7); background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
}

/* ── BROCHURE SECTION ────────────────────────────────── */
#brochure {
  background: var(--snow);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
#brochure::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--border); }
.brochure-g { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* cover preview */
.brochure-cover-col { position: relative; }
.brochure-cover {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy3) 100%);
  aspect-ratio: 3/4; max-width: 380px;
  position: relative; overflow: hidden;
  box-shadow: var(--fl);
}
.brochure-cover::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px); }
.brochure-cover::after  { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--red); }
.brochure-cover-inner {
  position: relative; z-index: 1;
  padding: 48px 40px;
  display: flex; flex-direction: column;
  height: 100%; justify-content: space-between;
}
.brochure-cover-logo {
  font-family: var(--fd); font-size: 52px; line-height: 1;
  letter-spacing: 2px; color: #fff;
}
.brochure-cover-logo em { font-style: normal; color: var(--red3); }
.brochure-cover-tag {
  width: 48px; height: 4px; background: var(--red); margin: 12px 0 20px;
}
.brochure-cover-title {
  font-family: var(--fc); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; color: rgba(255,255,255,.7);
  text-transform: uppercase; line-height: 1.5;
}
.brochure-cover-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.brochure-cover-iso {
  font-family: var(--fc); font-size: 10px; letter-spacing: 2px;
  color: rgba(255,255,255,.4); text-transform: uppercase;
}
.brochure-cover-yr {
  font-family: var(--fd); font-size: 32px; color: rgba(139,26,26,.4);
  letter-spacing: 1px;
}
/* pages fan effect */
.brochure-cover-shadow {
  position: absolute; bottom: -8px; right: -8px;
  width: 100%; height: 100%;
  background: linear-gradient(150deg, #16244a 0%, #0d1838 100%);
  z-index: -1;
}
.brochure-cover-shadow2 {
  position: absolute; bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  background: linear-gradient(150deg, #0f1a36 0%, #090f26 100%);
  z-index: -2;
  opacity: .6;
}

/* contents list */
.brochure-contents {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 32px 0 36px;
}
.brochure-content-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--white);
  border: 1px solid var(--border); border-left: 2px solid var(--red);
  transition: background .2s, transform .2s;
}
.brochure-content-item:hover { background: var(--ice); transform: translateX(3px); }
.bci-num {
  font-family: var(--fd); font-size: 22px; color: var(--red);
  line-height: 1; flex-shrink: 0; opacity: .5;
}
.bci-txt { font-size: 12.5px; color: var(--t2); line-height: 1.5; font-weight: 400; }
.bci-txt strong { display: block; font-family: var(--fc); font-weight: 700; letter-spacing: 1px; color: var(--navy); font-size: 13px; margin-bottom: 2px; }

/* download button */
.brochure-dl-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--navy); color: #fff; padding: 18px 36px;
  font-family: var(--fc); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background .25s, box-shadow .25s, transform .25s;
  border: none; cursor: pointer;
}
.brochure-dl-btn:hover { background: var(--red); box-shadow: 0 8px 32px rgba(10,18,40,.3); transform: translateY(-2px); }
.brochure-dl-btn svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.brochure-dl-note { font-size: 12px; color: var(--t4); margin-top: 14px; font-weight: 300; display: flex; align-items: center; gap: 8px; }
.brochure-dl-note svg { width: 14px; height: 14px; fill: none; stroke: var(--t4); stroke-width: 1.5; flex-shrink: 0; }

/* ── LEGACY ──────────────────────────────────────────── */
#legacy {
  background: var(--navy2);
  overflow: hidden; position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#legacy::after {
  content: '1981';
  position: absolute; right: -1%; bottom: -14%;
  font-family: var(--fd);
  font-size: clamp(160px, 18vw, 280px);
  color: rgba(255,255,255,.03);
  letter-spacing: -4px;
  pointer-events: none; z-index: 0; line-height: 1;
}
.legacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 5vw;
  max-width: 1280px;
  margin: 0 auto;
  position: relative; z-index: 1;
  align-items: center;
}

.legacy-copy {
  display: flex; flex-direction: column;
}
.legacy-eyebrow {
  font-family: var(--fc); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red3); margin: 0 0 24px;
  display: flex; align-items: center; gap: 12px;
}
.legacy-eyebrow::before {
  content: ''; display: block; flex-shrink: 0;
  width: 28px; height: 1.5px; background: var(--red3);
}
.legacy-title {
  font-family: var(--fd);
  font-size: clamp(48px, 5vw, 76px);
  line-height: .92; letter-spacing: 1px;
  color: #fff; margin: 0 0 32px;
}
.legacy-rule { width: 48px; height: 2px; background: var(--red); margin-bottom: 32px; }
.legacy-body {
  font-size: 14px; line-height: 1.88;
  color: rgba(255,255,255,.48);
  margin: 0 0 14px; font-weight: 300;
}

/* timeline — left-rail style */
.legacy-timeline {
  margin-top: 44px;
  display: flex; flex-direction: column; gap: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.legacy-tl-item {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 24px; position: relative;
}
.legacy-tl-item:last-child { padding-bottom: 0; }
.legacy-tl-dot {
  position: absolute; left: -33px; top: 4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(139,26,26,.25), 0 0 0 6px rgba(139,26,26,.08);
}
.legacy-tl-text {
  font-family: var(--fc); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.55); line-height: 1.6;
}

/* right column — quote / credentials block */
.legacy-right {
  display: flex; flex-direction: column; gap: 32px;
}
.legacy-quote {
  border-left: 3px solid var(--red);
  padding: 24px 28px;
  background: rgba(255,255,255,.03);
}
.legacy-quote-text {
  font-family: var(--fd);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2; letter-spacing: .5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.legacy-quote-attr {
  font-family: var(--fc); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.legacy-creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}
.legacy-cred {
  background: var(--navy2);
  padding: 24px 22px;
}
.legacy-cred-n {
  font-family: var(--fd);
  font-size: 36px; letter-spacing: 1px;
  color: #fff; line-height: 1;
  margin-bottom: 6px;
}
.legacy-cred-l {
  font-family: var(--fc); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

@media(max-width:900px) {
  #legacy::after { display: none; }
  .legacy-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 5vw; }
}

/* ── FACILITIES ──────────────────────────────────────── */
#fac {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 40% 60% at 15% 50%, rgba(139,26,26,.1) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 90% 80%, rgba(24,36,78,.6) 0%, transparent 60%);
  padding: 112px 0; position: relative;
}
#fac::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }
#fac .s-title { color: #fff; }
#fac .s-sub   { color: rgba(255,255,255,.42); }
#fac .s-eye-txt { color: rgba(255,255,255,.35); }
#fac .s-eye-line { background: var(--red); opacity: .7; }
.fac-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.fac-sticky { position: sticky; top: 90px; }
.fac-g { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fc2 { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); padding: 26px 22px; transition: background .3s, border-color .3s, transform .3s; position: relative; overflow: hidden; }
.fc2::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--red); transition: height .4s var(--ease); }
.fc2:hover { background: rgba(255,255,255,.07); border-color: rgba(139,26,26,.3); transform: translateY(-3px); }
.fc2:hover::before { height: 100%; }
.fc2-ico { width: 42px; height: 42px; background: rgba(139,26,26,.18); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fc2-ico svg { width: 18px; height: 18px; fill: none; stroke: var(--red3); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.fc2-t { font-family: var(--fc); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; margin-bottom: 6px; }
.fc2-d { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.7; }
.fc2-spec { font-family: var(--fc); font-size: 10px; font-weight: 700; color: var(--red3); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.06); }

/* ── INDUSTRIES + QUALITY COMBINED ───────────────────── */
.iq-section {
  background: var(--white);
  background-image:
    radial-gradient(ellipse 55% 50% at 90% 10%, rgba(139,26,26,.04) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 5% 90%, rgba(10,18,40,.03) 0%, transparent 55%);
  padding: 112px 0;
  position: relative; overflow: hidden;
}
.iq-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }

.iq-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end; margin-bottom: 64px; }

.iq-sub-lbl {
  font-family: var(--fc); font-size: 9px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red3); margin: 0 0 18px;
}

/* industries grid */
.iq-ind-g {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 0;
}
.iq-ind-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  transition: background .3s;
  cursor: default;
}
.iq-ind-item:hover { background: var(--snow); }
.iq-ind-item svg {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: none; stroke: var(--red); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.iq-ind-item span {
  font-family: var(--fc); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--t2);
  text-transform: uppercase; line-height: 1.3;
}

/* divider */
.iq-divider {
  height: 1px; background: var(--border);
  margin: 56px 0 48px; position: relative;
}
.iq-divider::before {
  content: ''; position: absolute;
  left: 0; top: -1px; width: 64px; height: 2px;
  background: var(--red);
}

/* quality cards */
.iq-q-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.iq-qc {
  background: var(--white);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: background .3s, box-shadow .3s, transform .3s;
}
.iq-qc:hover { background: var(--snow); box-shadow: var(--fm); transform: translateY(-4px); }
.iq-qc-num {
  position: absolute; top: 10px; right: 16px;
  font-family: var(--fd); font-size: 88px; line-height: 1;
  color: var(--navy); opacity: .04; pointer-events: none;
}
.iq-qc-prog {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--red3));
  transition: width .6s var(--ease);
}
.iq-qc:hover .iq-qc-prog { width: 100%; }
.iq-qc-ico {
  width: 42px; height: 42px;
  background: rgba(139,26,26,.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .3s;
}
.iq-qc:hover .iq-qc-ico { background: rgba(139,26,26,.14); }
.iq-qc-ico svg { width: 18px; height: 18px; fill: none; stroke: var(--red); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.iq-qc-t { font-family: var(--fc); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.iq-qc-d { font-size: 13px; line-height: 1.82; color: var(--t3); }

@media(max-width:900px) {
  .iq-hdr { grid-template-columns: 1fr; gap: 20px; }
  .iq-ind-g { grid-template-columns: repeat(2,1fr); }
  .iq-q-g { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px) {
  .iq-ind-g { grid-template-columns: 1fr; }
  .iq-q-g { grid-template-columns: 1fr; }
}

/* ── INDUSTRIES (merged into .iq-section — legacy rules removed) */
.ind-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(10,18,40,.1); margin-top: 52px; }
.ind-pill {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px; background: rgba(255,255,255,.9);
  position: relative; overflow: hidden;
  transition: background .35s var(--ease), transform .3s;
}
.ind-pill::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.ind-pill:hover { background: #fff; transform: translateY(-2px); }
.ind-pill:hover::before { transform: scaleX(1); }
.ind-pill svg {
  width: 20px; height: 20px; fill: none; stroke: var(--red); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
  transition: stroke .3s, transform .3s;
}
.ind-pill:hover svg { stroke: var(--red); transform: scale(1.1); }
.ind-pill-t {
  font-family: var(--fc); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--t2);
  text-transform: uppercase; line-height: 1.3;
  transition: color .3s;
}
.ind-pill:hover .ind-pill-t { color: var(--navy); }


/* ── QUALITY (combined with industries — see .iq-section) */
.q-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end; margin-bottom: 56px; }
.q-g   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.qc {
  padding: 38px 30px; border: 1px solid var(--border); background: rgba(255,255,255,.92);
  position: relative; overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .3s var(--ease), border-color .3s;
  backdrop-filter: blur(2px);
}
.qc:first-child { background: var(--navy); border-color: transparent; }
.qc:hover { box-shadow: var(--fm); transform: translateY(-5px); border-color: rgba(139,26,26,.2); }
.qc:first-child:hover { box-shadow: 0 20px 60px rgba(10,18,40,.35); border-color: rgba(139,26,26,.4); }
.q-wm { position: absolute; top: 8px; right: 14px; font-family: var(--fd); font-size: 100px; line-height: 1; color: var(--navy); opacity: .03; pointer-events: none; }
.qc:first-child .q-wm { color: #fff; opacity: .06; }
.q-prog { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--red), var(--red3)); transition: width .65s var(--ease); }
.qc:hover .q-prog { width: 100%; }
.q-ico {
  width: 44px; height: 44px; background: var(--snow);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background .3s;
}
.qc:hover .q-ico { background: rgba(139,26,26,.07); }
.qc:first-child .q-ico { background: rgba(255,255,255,.07); }
.qc:first-child:hover .q-ico { background: rgba(255,255,255,.12); }
.q-ico svg { width: 18px; height: 18px; fill: none; stroke: var(--red); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.qc:first-child .q-ico svg { stroke: var(--red3); }
.q-t { font-family: var(--fc); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; color: var(--navy); }
.qc:first-child .q-t { color: #fff; }
.q-d { font-size: 13px; line-height: 1.82; color: var(--t3); }
.qc:first-child .q-d { color: rgba(255,255,255,.5); }

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
  background: var(--navy);
}
/* form */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
/* floating label fields */
.f-field { position: relative; margin-bottom: 12px; }
.f-field label { position: absolute; top: 14px; left: 14px; font-family: var(--fc); font-size: 10px; letter-spacing: 2.5px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; transition: top .2s, font-size .2s, color .2s; pointer-events: none; }
.f-field input:focus + label,
.f-field input:not(:placeholder-shown) + label,
.f-field textarea:focus + label,
.f-field textarea:not(:placeholder-shown) + label,
.f-field select:focus + label { top: 6px; font-size: 8px; color: var(--red3); letter-spacing: 2px; }
.f-field input, .f-field textarea, .f-field select {
  width: 100%; background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  padding: 22px 14px 10px;
  font-family: var(--fb); font-size: 14px; color: #fff;
  outline: none; transition: border-color .25s, background .25s;
  font-weight: 300; -webkit-appearance: none;
}
.f-field input::placeholder, .f-field textarea::placeholder { color: transparent; }
.f-field input:focus, .f-field textarea:focus, .f-field select:focus { border-color: var(--red3); background: rgba(255,255,255,.08); }
.f-field textarea { resize: vertical; min-height: 120px; }
.f-field select { color: rgba(255,255,255,.6); cursor: pointer; }
.f-field select option { background: var(--navy); color: #fff; }
.f-submit {
  width: 100%; padding: 16px; background: var(--red); color: #fff;
  border: none; font-family: var(--fc); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  margin-top: 20px; transition: background .25s, box-shadow .25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.f-submit:hover { background: var(--red2); box-shadow: 0 6px 24px rgba(139,26,26,.45); }
.f-submit svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── CONTACT REDESIGN ────────────────────────────────── */
.ct-section {
  position: relative; overflow: hidden;
  background: #060c1e;
  padding: 120px 0 100px;
}
.ct-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(139,26,26,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(18,32,74,.6) 0%, transparent 55%);
  pointer-events: none;
}
.ct-wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--fd); font-size: clamp(120px,18vw,260px); letter-spacing: 10px;
  color: rgba(255,255,255,.018); white-space: nowrap; pointer-events: none;
  user-select: none; line-height: 1;
}
.ct-red-bar {
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(to right, var(--red) 0%, transparent 60%);
}

/* Header row */
.ct-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
.ct-trust-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.ct-tp {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--fc); font-size: 10px; letter-spacing: 1.5px; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1); padding: 6px 14px;
}
.ct-tp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Grid */
.ct-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; position: relative; z-index: 1; }

/* Left panel */
.ct-big-h {
  font-family: var(--fd); font-size: clamp(42px,5vw,72px); color: #fff;
  line-height: 1.0; letter-spacing: 1px; margin-bottom: 20px;
}
.ct-big-h .ac { color: var(--red3); }
.ct-lead-p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.45); margin-bottom: 44px; max-width: 400px; }

/* Contact detail cards */
.ct-cards-stack { display: flex; flex-direction: column; gap: 2px; margin-bottom: 40px; }
.ct-cd {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px; border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  transition: background .25s, border-color .25s, transform .25s;
  text-decoration: none; position: relative; overflow: hidden;
}
.ct-cd::before {
  content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: var(--red); transform: scaleY(0); transition: transform .25s; transform-origin: bottom;
}
a.ct-cd:hover { background: rgba(255,255,255,.065); border-color: rgba(139,26,26,.35); transform: translateX(6px); }
a.ct-cd:hover::before { transform: scaleY(1); }
.ct-cd-ico {
  width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .25s;
}
a.ct-cd:hover .ct-cd-ico { background: var(--red); }
.ct-cd-ico svg { width: 17px; height: 17px; fill: none; stroke: rgba(255,255,255,.8); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ct-cd-body { flex: 1; }
.ct-cd-lbl { font-family: var(--fc); font-size: 9px; letter-spacing: 3px; font-weight: 700; color: var(--red3); text-transform: uppercase; margin-bottom: 4px; }
.ct-cd-val { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.55; font-weight: 400; }
.ct-cd-arr { font-size: 18px; color: rgba(255,255,255,.2); transition: color .25s, transform .25s; }
a.ct-cd:hover .ct-cd-arr { color: var(--red3); transform: translateX(4px); }
.ct-cd-addr { cursor: default; }

/* Quick product links */
.ct-qlinks { border-top: 1px solid var(--border); padding-top: 28px; }
.ct-ql-lbl { font-family: var(--fc); font-size: 9px; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.ct-ql-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ct-ql-tag {
  font-family: var(--fc); font-size: 9.5px; letter-spacing: 1.5px; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1); padding: 7px 16px;
  text-decoration: none; transition: background .2s, color .2s, border-color .2s;
}
.ct-ql-tag:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Right form box */
.ct-form-box {
  background: #0d1530;
  border: 1px solid rgba(255,255,255,.07);
  border-top: 3px solid var(--red);
  padding: 52px 48px;
  position: relative;
}
.ct-fb-hdr { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
.ct-fb-num {
  font-family: var(--fd); font-size: 52px; line-height: 1; letter-spacing: -1px;
  color: rgba(139,26,26,.3); flex-shrink: 0; margin-top: -6px;
}
.ct-fb-title { font-family: var(--fd); font-size: 28px; color: #fff; letter-spacing: 1.5px; margin-bottom: 4px; }
.ct-fb-sub { font-size: 12px; color: rgba(255,255,255,.3); font-weight: 300; }

/* Responsive */
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 48px; }
  .ct-hdr { flex-direction: column; align-items: flex-start; }
  .ct-form-box { padding: 36px 28px; }
  .ct-wm { font-size: 80px; }
}
@media (max-width: 540px) {
  .ct-form-box { padding: 28px 18px; }
  .ct-big-h { font-size: 38px; }
  .ct-trust-pills { display: none; }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #060b18;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(196,28,30,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 85% 20%, rgba(21,43,104,.6) 0%, transparent 55%);
  border-top: 2px solid var(--red); padding: 88px 0 0;
}
.ft-g  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 72px; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ft-lm { width: 38px; height: 38px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 14px; color: #fff; letter-spacing: 1px; clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%); }
.ft-bn { font-family: var(--fd); font-size: 13px; letter-spacing: 2.5px; color: #fff; }
.ft-bs { font-family: var(--fc); font-size: 9px; letter-spacing: 2px; color: rgba(255,255,255,.3); text-transform: uppercase; }
.ft-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.85; max-width: 260px; font-weight: 300; }
.ft-ct { font-family: var(--fc); font-size: 10px; letter-spacing: 3px; font-weight: 700; color: rgba(255,255,255,.28); text-transform: uppercase; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.42); transition: color .25s, padding-left .2s; font-weight: 300; display: flex; align-items: center; gap: 0; }
.ft-links a::before { content: ''; width: 0; height: 1px; background: var(--red); margin-right: 0; transition: width .25s, margin .25s; flex-shrink: 0; }
.ft-links a:hover { color: rgba(255,255,255,.85); padding-left: 6px; }
.ft-links a:hover::before { width: 8px; margin-right: 6px; }
.ft-bot { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ft-bot-txt { font-size: 11px; color: rgba(255,255,255,.22); font-weight: 300; }
.ft-bot-links { display: flex; gap: 24px; }
.ft-bot-links a { font-size: 11px; color: rgba(255,255,255,.22); transition: color .25s; }
.ft-bot-links a:hover { color: rgba(255,255,255,.6); }

/* ── PRODUCT PAGES ───────────────────────────────────── */
.pp-hero { background: var(--navy); padding: 150px 0 90px; position: relative; overflow: hidden; }
.pp-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%); }
.pp-hero::after  { content: ''; position: absolute; right: -120px; top: -80px; width: 520px; height: 520px; border-radius: 50%; border: 80px solid rgba(139,26,26,.06); }
.pp-hero .wrap   { position: relative; z-index: 1; }
.pp-hero .s-title { color: #fff; margin-top: 12px; }
.pp-hero-desc { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 640px; margin-top: 20px; }
.pp-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pp-badge { font-family: var(--fc); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 16px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); }
.pp-hero-btns { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.pp-sec { padding: 80px 0; }
.pp-sec.alt { background: var(--snow); }
.pp-sec.dark { background: var(--navy); }

.pp-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pp-2col.rev { direction: rtl; }
.pp-2col.rev > * { direction: ltr; }

.pp-feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-top: 28px; }
.pp-feat-card { background: var(--white); padding: 26px 24px; border-left: 3px solid var(--red); border: 1px solid var(--border); border-left: 3px solid var(--red); transition: box-shadow .2s, transform .2s; }
.pp-feat-card:hover { box-shadow: var(--fm); transform: translateY(-3px); }
.pp-feat-card.inv { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.07); border-left-color: var(--red); }
.pp-feat-title { font-family: var(--fc); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.pp-feat-card.inv .pp-feat-title { color: #fff; }
.pp-feat-body { font-size: 14px; line-height: 1.7; color: var(--t2); }
.pp-feat-card.inv .pp-feat-body { color: rgba(255,255,255,.6); }

.pp-grade-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 24px; }
.pp-grade-card { background: var(--navy); border: 1px solid rgba(255,255,255,.07); border-top: 2px solid var(--red); padding: 22px 20px; }
.pp-grade-card .kn  { color: #fff; font-size: 17px; display: block; margin-bottom: 8px; }
.pp-grade-card .kcr { display: block; color: var(--red3); font-family: var(--fc); font-size: 11px; letter-spacing: 1.5px; margin-bottom: 6px; }
.pp-grade-card .kh  { display: block; font-family: var(--fc); font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: 1px; margin-bottom: 8px; }
.pp-grade-card .ka  { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.55; }

.pp-list { list-style: none; padding: 0; margin: 20px 0; }
.pp-list li { padding: 10px 0 10px 20px; position: relative; border-bottom: 1px solid #eee; font-size: 14px; color: #444; line-height: 1.6; }
.pp-list li::before { content: ''; position: absolute; left: 0; top: 18px; width: 7px; height: 2px; background: var(--red); }
.pp-list.inv li { border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.55); }
.pp-list.inv li::before { background: var(--red3); }

.pp-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.pp-product-item { background: #fff; padding: 20px 22px; border-top: 2px solid var(--red); font-family: var(--fc); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--navy); text-transform: uppercase; }

.pp-cta { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); padding: 90px 0; text-align: center; }
.pp-cta .s-title { color: #fff; margin-bottom: 14px; }
.pp-cta-sub { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 38px; max-width: 540px; margin-left: auto; margin-right: auto; }
.pp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.pp-related { padding: 80px 0; background: var(--navy2); border-top: 1px solid rgba(255,255,255,.07); }
.pp-related .s-title { color: #fff; }
.pp-related .s-eye-txt { color: rgba(255,255,255,.35); }
.pp-related .s-eye-line { background: var(--red); opacity: .7; }
.pp-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.pp-related-card { background: var(--navy); border: 1px solid rgba(255,255,255,.07); border-top: 2px solid var(--red); padding: 32px 28px; text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; }
.pp-related-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(10,18,40,.5); }
.pp-related-card-tag { font-family: var(--fc); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red3); margin-bottom: 10px; }
.pp-related-card-t { font-family: var(--fd); font-size: 22px; letter-spacing: 1.5px; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.pp-related-card-d { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.pp-related-arr { color: var(--red3); font-size: 22px; margin-top: 18px; }

@media(max-width:900px) {
  .pp-2col, .pp-related-grid { grid-template-columns: 1fr; gap: 36px; }
  .pp-2col.rev { direction: ltr; }
  .pp-hero { padding: 120px 0 60px; }
}

/* ── POLICY PAGES ────────────────────────────────────── */
.policy-hero { background: var(--navy); padding: 150px 0 80px; position: relative; overflow: hidden; }
.policy-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%); }
.policy-hero .wrap { position: relative; z-index: 1; }
.policy-hero .s-title { color: #fff; margin-top: 12px; }
.policy-date { font-family: var(--fc); font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,.3); text-transform: uppercase; margin-top: 18px; }
.policy-body { background: #fff; }
.policy-doc { max-width: 820px; }
.policy-doc h2 { font-family: var(--fd); font-size: clamp(18px,2.2vw,24px); letter-spacing: 2px; color: var(--navy); margin: 44px 0 14px; text-transform: uppercase; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.policy-doc p { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 14px; }
.policy-doc ul { margin: 0 0 18px 0; padding: 0; list-style: none; }
.policy-doc ul li { font-size: 15px; line-height: 1.8; color: #444; padding-left: 18px; position: relative; margin-bottom: 7px; }
.policy-doc ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 2px; background: var(--red); }
.policy-doc a { color: var(--red); text-decoration: none; }
.policy-doc a:hover { text-decoration: underline; }
.policy-contact-box { background: #f4f5f8; border-left: 3px solid var(--red); padding: 22px 28px; margin-top: 40px; }
.policy-contact-box strong { display: block; font-family: var(--fc); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.policy-contact-box p { margin: 0; color: var(--navy); font-size: 14px; line-height: 1.9; }

/* ── BACK TO TOP ─────────────────────────────────────── */
#btt {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 44px; height: 44px; background: var(--navy); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .25s;
  box-shadow: var(--fm);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--red); }
#btt svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── REVEAL ANIMATIONS ───────────────────────────────── */
.rv   { opacity: 0; transform: translateY(28px);  transition: opacity .75s ease, transform .75s ease; }
.rv.vis  { opacity: 1; transform: translateY(0); }
.rv-l { opacity: 0; transform: translateX(-24px); transition: opacity .7s ease, transform .7s ease; }
.rv-l.vis { opacity: 1; transform: translateX(0); }
.rv-r { opacity: 0; transform: translateX(24px);  transition: opacity .7s ease, transform .7s ease; }
.rv-r.vis { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

@keyframes aUp  { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes aFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ring   { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(2); opacity: 0; } }

/* ── RESPONSIVE: TABLET ≤1100px ─────────────────────── */
@media (max-width: 1100px) {
  .h-inner          { grid-template-columns: 1fr; gap: 48px 0; padding-bottom: 0; }
  .h-panel          { display: none; }
  .h-milestones     { grid-template-columns: 1fr 1fr; }
  .h-ms-item:nth-child(2) { border-right: none; }
  .h-ms-item:nth-child(3) { border-right: none; border-top: 1px solid rgba(255,255,255,.07); }
  .h-ms-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
  .ab-hdr           { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .ab-split         { grid-template-columns: 1fr; gap: 40px; }
  .ab-photo-col     { display: none; }
  .ab-caps          { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .ab-cap:nth-child(4n) { border-right: 1px solid rgba(255,255,255,.07); }
  .ab-cap:nth-child(2n) { border-right: none; }
  .ab-cap           { padding: 22px 18px; }
  .num-g            { grid-template-columns: 1fr 1fr; }
  .prod-hdr         { grid-template-columns: 1fr; gap: 20px; }
  .prod-card        { padding: 36px 30px 30px; }
  .pl               { grid-template-columns: 1fr; gap: 40px; }
  .pl.rev .p-info   { order: -1; }
  .fac-layout       { grid-template-columns: 1fr; gap: 52px; }
  .fac-sticky       { position: static; }
  .q-hdr            { grid-template-columns: 1fr; gap: 20px; }
  .q-g              { grid-template-columns: 1fr 1fr; }
  /* .cg removed — replaced by .ct-grid */
  .ft-g             { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ind-g            { grid-template-columns: 1fr 1fr; }
  .kg               { grid-template-columns: 1fr 1fr; }
  .hci              { grid-template-columns: 1fr 1fr; }
  .vid-outer        { max-width: 100%; }
  .fac-g            { grid-template-columns: 1fr 1fr; }
  .brochure-g       { grid-template-columns: 1fr; gap: 52px; }
  .brochure-cover   { max-width: 320px; margin: 0 auto; }
}

/* ── RESPONSIVE: MOBILE ≤768px ──────────────────────── */
@media (max-width: 768px) {
  #nav              { padding: 0 4vw; height: 68px; }
  #nav.scrolled     { height: 60px; }
  .n-links          { display: none; }
  .ham              { display: flex; }
  .n-main           { font-size: 11px; letter-spacing: 1.5px; }
  /* Hero mobile: stack vertically, hide photo panel */
  .h-split          { grid-template-columns: 1fr; min-height: auto; }
  .h-lp             { padding: 96px 6vw 48px; }
  .h-rp             { display: none; }
  h1.h-title        { font-size: clamp(42px, 12vw, 70px); margin-bottom: 22px; }
  .h-desc           { font-size: 14px; margin-bottom: 32px; }
  .h-btns           { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .btn-r, .btn-w    { justify-content: center; width: 100%; max-width: 320px; }
  .h-stats          { grid-template-columns: 1fr 1fr; }
  .h-milestones     { grid-template-columns: 1fr 1fr; }
  .h-ms-item        { padding: 16px 16px 20px; }
  .sp               { padding: 72px 0; }
  .wrap             { padding: 0 4.5vw; }
  .s-title          { font-size: clamp(32px, 9vw, 52px); }
  .num-band         { padding: 60px 0; }
  .num-n            { font-size: 60px; }
  .num-n sub        { font-size: 40px; }
  .tab-bar          { margin-bottom: 36px; }
  .tab              { padding: 12px 14px; font-size: 10px; letter-spacing: 1.5px; }
  .prod-cards       { grid-template-columns: 1fr; gap: 2px; }
  .prod-card        { padding: 32px 24px 26px; }
  .prod-card-num    { font-size: 52px; }
  .prod-card-specs  { grid-template-columns: 1fr 1fr 1fr; }
  .p-vis            { min-height: 220px; padding: 36px; }
  .kg               { grid-template-columns: 1fr; }
  .feat2            { grid-template-columns: 1fr; gap: 12px; }
  .hci              { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tbl              { min-width: 480px; }
  .tbl thead th, .tbl tbody td { padding: 10px 12px; font-size: 12px; }
  .fac-g            { grid-template-columns: 1fr; gap: 10px; }
  #fac              { padding: 72px 0; }
  .fc2              { padding: 22px 18px; }
  .ind-g            { grid-template-columns: 1fr 1fr; gap: 1px; }
  .ind-pill         { padding: 18px 16px; gap: 12px; }
  .ind-pill-t       { font-size: 11px; letter-spacing: 1.5px; }
  .q-g              { grid-template-columns: 1fr; gap: 12px; }
  .qc               { padding: 30px 22px; }
  .q-hdr            { margin-bottom: 36px; }
  .frow             { grid-template-columns: 1fr; gap: 0; }
  .ft-g             { grid-template-columns: 1fr; gap: 32px; }
  footer            { padding: 56px 0 0; }
  .ft-bot           { flex-direction: column; align-items: flex-start; gap: 8px; }
  #btt              { bottom: 16px; right: 16px; width: 40px; height: 40px; }
  .ab-chapter       { gap: 16px; }
  .ab-ch-num        { font-size: 38px; width: 44px; }
  .kc, .qc, .fc2, .h-stat { transform: none !important; }
  .brochure-g       { gap: 40px; }
  .brochure-contents { grid-template-columns: 1fr; }
  .brochure-cover   { max-width: 280px; margin: 0 auto; }
}

/* ── RESPONSIVE: SMALL ≤480px ───────────────────────── */
@media (max-width: 480px) {
  .wrap             { padding: 0 4vw; }
  .sp               { padding: 60px 0; }
  h1.h-title        { font-size: clamp(38px, 11.5vw, 56px); }
  .num-g            { grid-template-columns: 1fr 1fr; }
  .num-i            { border-right: none; border-bottom: 1px solid var(--border); }
  .num-i:nth-child(odd)        { border-right: 1px solid var(--border); }
  .num-i:nth-last-child(-n+2)  { border-bottom: none; }
  .num-n            { font-size: 52px; }
  .tab              { padding: 10px 12px; font-size: 10px; }
  .n-sub            { display: none; }
  .hci              { grid-template-columns: 1fr 1fr; gap: 6px; }
  .kg               { grid-template-columns: 1fr; }
  .vid-play         { width: 60px; height: 60px; }
  .vid-play svg     { width: 22px; height: 22px; }
  .ft-bot-links     { flex-wrap: wrap; gap: 12px; }
  .brochure-dl-btn  { width: 100%; justify-content: center; }
}
