/* =============================================================
   ChrisTES — Dockweiler Korea Official Distributor
   Design System & Stylesheet
   ============================================================= */

/* ---------- Fonts ---------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.css");

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (Dockweiler) */
  --blue:        #0072bc;
  --blue-600:    #0061a3;
  --blue-700:    #004e8c;
  --blue-900:    #00254a;
  --cyan:        #29abe2;
  --cyan-bright: #00aeef;
  --green:       #7ab929;
  --green-bright:#8dc63f;
  --silver:      #c7d2dc;

  /* Neutrals */
  --ink:    #11212e;
  --slate:  #3c4d5b;
  --muted:  #6b7c8a;
  --line:   #e4ebf1;
  --paper:  #f3f7fb;
  --paper-2:#e9f1f8;
  --white:  #ffffff;
  --navy:   #061726;
  --navy-2: #0b2235;

  /* Effects */
  --grad-blue:  linear-gradient(135deg, #0072bc 0%, #29abe2 100%);
  --grad-deep:  linear-gradient(135deg, #00254a 0%, #0072bc 55%, #29abe2 100%);
  --grad-green: linear-gradient(135deg, #5e9e1e 0%, #8dc63f 100%);
  --shadow-sm:  0 2px 10px rgba(8,38,66,.06);
  --shadow:     0 14px 40px rgba(8,38,66,.10);
  --shadow-lg:  0 30px 70px rgba(8,38,66,.18);
  --radius:     16px;
  --radius-sm:  10px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --container: 1240px;
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  letter-spacing: -0.015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* tighter spacing for body copy (요청: 폰트 사이 여백 줄이기) */
p { line-height: 1.55; }
.prose p { margin-bottom: 14px; }
.lead, .section-head p { line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

/* ---------- Utilities ---------- */
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; background: var(--grad-blue); border-radius: 2px;
}
.eyebrow.light { color: var(--cyan-bright); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15; font-weight: 800; margin: 18px 0 16px;
  letter-spacing: -0.03em;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.text-grad {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pad { padding-block: clamp(72px, 9vw, 132px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: .96rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: 0 10px 26px rgba(0,114,188,.34); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0,114,188,.45); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { border: 1.5px solid var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* =============================================================
   LOGO
   ============================================================= */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { height: 50px; width: auto; display: block; transition: height .4s var(--ease); }
.header.scrolled .logo-img { height: 42px; }
.logo-img--footer { height: 58px; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  position: relative; font-weight: 600; font-size: .98rem; color: rgba(255,255,255,.9);
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px;
  background: var(--grad-blue); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 22px; }
/* scrolled state — dark glass so the metallic logo stays crisp */
.header.scrolled {
  background: rgba(7,26,42,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  height: 66px;
}

/* hamburger */
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, background .3s;
}
.burger span:nth-child(1){ top: 15px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 29px; }
.header.menu-open .burger span { background: #fff; }
.header.menu-open .burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.header.menu-open .burger span:nth-child(2){ opacity: 0; }
.header.menu-open .burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--navy); color: #fff; overflow: hidden; padding-top: var(--nav-h);
}
/* hero background slideshow (crossfade + Ken Burns) — matches the reference sites' moving hero */
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #04101d; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease; will-change: opacity, transform;
}
.hero__slide.active { opacity: 1; animation: heroKen 7s ease-out forwards; }
@keyframes heroKen { from { transform: scale(1.06); } to { transform: scale(1.16); } }

.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 700px at 78% 18%, rgba(41,171,226,.22), transparent 60%),
    radial-gradient(900px 700px at 12% 92%, rgba(0,114,188,.30), transparent 60%),
    linear-gradient(160deg, rgba(4,16,29,.85) 0%, rgba(7,34,58,.72) 45%, rgba(10,48,86,.58) 100%);
}
.hero__canvas { position: absolute; inset: 0; z-index: 2; opacity: .45; }
.hero__img {
  position: absolute; right: -4%; bottom: -6%; width: 60%; max-width: 960px; z-index: 2;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5)); opacity: .92;
  mask-image: linear-gradient(to left, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 60%, transparent 100%);
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-18px); } }
.hero__grid {
  position: absolute; inset: 0; z-index: 2; opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 40%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 3; }
.hero__inner { max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; font-size: .84rem; font-weight: 600; backdrop-filter: blur(6px);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(141,198,63,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(141,198,63,.25);} 50%{ box-shadow: 0 0 0 9px rgba(141,198,63,0);} }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.08; font-weight: 900;
  letter-spacing: -0.04em; margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(120deg,#7fd4ff,#29abe2 50%,#8dc63f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(1.05rem,1.6vw,1.28rem); color: rgba(255,255,255,.82); max-width: 600px; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats {
  display: flex; gap: 44px; margin-top: 58px; flex-wrap: wrap;
}
.hero__stats .s b { display: block; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; line-height: 1; }
.hero__stats .s span { font-size: .9rem; color: rgba(255,255,255,.66); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .2em; color: rgba(255,255,255,.6); text-transform: uppercase;
}
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content:""; position:absolute; left:50%; top:7px; width:4px; height:7px; background:#fff; border-radius:3px; transform:translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0%{ opacity:0; transform:translate(-50%,0);} 30%{opacity:1;} 60%{opacity:0; transform:translate(-50%,12px);} 100%{opacity:0;} }

/* marquee partner / client strip */
.marquee { background: var(--navy-2); color: rgba(255,255,255,.5); padding: 18px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: scrollX 28s linear infinite; }
.marquee span { font-weight: 700; font-size: 1.02rem; letter-spacing: .02em; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* =============================================================
   ABOUT
   ============================================================= */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about__copy h2 { font-size: clamp(1.8rem,3.4vw,2.7rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.03em; margin: 16px 0 22px; }
.about__copy p { color: var(--slate); font-size: 1.06rem; margin-bottom: 18px; }
.about__copy .hl { color: var(--blue); font-weight: 700; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.about__features li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--slate); }
.about__features svg { width: 22px; height: 22px; flex: none; color: var(--green); margin-top: 2px; }
.about__visual { position: relative; }
.about__visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about__badge {
  position: absolute; left: -28px; bottom: 34px; background: #fff; padding: 22px 26px;
  border-radius: var(--radius); box-shadow: var(--shadow); display: flex; gap: 16px; align-items: center;
}
.about__badge .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about__badge .lbl { font-size: .86rem; color: var(--muted); line-height: 1.4; }
.about__badge .since { color: var(--blue); font-weight: 800; }

/* Stats band */
.stats { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.stats__deco {
  position: absolute; inset: 0; z-index: 0; opacity: .6;
  background-image:
    radial-gradient(620px 440px at 14% 18%, rgba(255,255,255,.10), transparent 62%),
    radial-gradient(720px 520px at 88% 92%, rgba(41,171,226,.30), transparent 60%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, auto, 62px 62px, 62px 62px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 35%, transparent 80%);
  mask-image: radial-gradient(circle at 50% 45%, #000 35%, transparent 80%);
}
.stats .container { position: relative; z-index: 1; }
.stats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px 24px; text-align: center; }
.stats__grid .stat { position: relative; padding: 6px; }
.stat__ic {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); color: #fff;
  transition: transform .4s var(--ease), background .4s;
}
.stat:hover .stat__ic { transform: translateY(-4px); background: rgba(255,255,255,.16); }
.stat__ic svg { width: 27px; height: 27px; }
.stat .count { font-size: clamp(2.4rem,4.5vw,3.6rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.stat .count .suffix { font-size: .55em; color: var(--green-bright); margin-left: 2px; }
.stat .label { margin-top: 10px; font-size: .98rem; color: rgba(255,255,255,.78); }

/* =============================================================
   PRODUCTS
   ============================================================= */
.products { background: var(--paper); }
.prod__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.prod-card {
  position: relative; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column; min-height: 320px; border: 1px solid var(--line);
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-card__media { position: relative; height: 220px; overflow: hidden; background: var(--navy); }
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prod-card:hover .prod-card__media img { transform: scale(1.07); }
.prod-card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(0,30,60,.55)); }
.prod-card__tag {
  position: absolute; z-index:2; top: 16px; left: 16px; background: rgba(255,255,255,.92);
  color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px;
}
.prod-card__body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.prod-card__body h3 { font-size: 1.32rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.prod-card__body p { color: var(--muted); font-size: .98rem; margin-bottom: 16px; flex: 1; }
.prod-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.prod-card__tags li { font-size: .78rem; color: var(--slate); background: var(--paper-2); padding: 5px 11px; border-radius: 8px; font-weight: 600; }
.prod-card__more { display:inline-flex; align-items:center; gap:7px; color: var(--blue); font-weight: 700; font-size: .94rem; }
.prod-card__more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.prod-card:hover .prod-card__more svg { transform: translateX(4px); }

/* =============================================================
   CAPABILITIES
   ============================================================= */
.caps { background: var(--white); }
.caps__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.cap::before {
  content:""; position:absolute; left:0; top:0; height:4px; width:100%; transform: scaleX(0);
  transform-origin: left; background: var(--grad-blue); transition: transform .45s var(--ease);
}
.cap:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cap:hover::before { transform: scaleX(1); }
.cap__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--paper-2); color: var(--blue); margin-bottom: 20px; transition: background .4s, color .4s; }
.cap:hover .cap__icon { background: var(--grad-blue); color: #fff; }
.cap__icon svg { width: 28px; height: 28px; }
.cap h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 8px; }
.cap p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.cap__spec { display: flex; gap: 8px; flex-wrap: wrap; }
.cap__spec li { font-size: .76rem; font-weight: 700; color: var(--blue-700); background: var(--paper); padding: 5px 10px; border-radius: 7px; border: 1px solid var(--line); }

/* =============================================================
   PROCESS (EP qualification timeline)
   ============================================================= */
.process { background: var(--navy); color: #fff; overflow: hidden; }
.process__bg { position:absolute; inset:0; background: radial-gradient(800px 500px at 85% 10%, rgba(41,171,226,.22), transparent 60%); }
.process .container { position: relative; z-index: 1; }
.process__steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 20px; }
.pstep { position: relative; padding-top: 40px; }
.pstep__num {
  position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; font-weight: 800; color: var(--cyan-bright);
}
.pstep::before { content:""; position:absolute; top: 21px; left: 52px; right: -10px; height: 2px; background: linear-gradient(90deg, rgba(41,171,226,.5), rgba(255,255,255,.05)); }
.process__steps .pstep:last-child::before { display:none; }
.pstep h4 { font-size: 1.04rem; font-weight: 800; margin: 14px 0 8px; }
.pstep p { font-size: .88rem; color: rgba(255,255,255,.62); }

/* =============================================================
   GLOBAL NETWORK
   ============================================================= */
.global { background: var(--paper); overflow: hidden; }
.global__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: center; }
.global__map { position: relative; }
.worldmap { position: relative; }
.worldmap > img { width: 100%; height: auto; display: block; }
.kr-pin { position: absolute; width: 0; height: 0; }
.kr-dot { position: absolute; left: -7px; top: -7px; width: 14px; height: 14px; border-radius: 50%; background: #e0526b; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(224,82,107,.5); z-index: 2; }
.kr-ring { position: absolute; left: -7px; top: -7px; width: 14px; height: 14px; border-radius: 50%; background: rgba(224,82,107,.5); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0%{ transform: scale(1); opacity:.8;} 80%,100%{ transform: scale(4); opacity:0;} }
.kr-label { position: absolute; right: 14px; top: -12px; white-space: nowrap; background: #fff; color: #c0334d; font-size: .76rem; font-weight: 800; padding: 4px 10px; border-radius: 7px; box-shadow: var(--shadow); z-index: 3; }
.kr-label::before { content:""; position:absolute; right:-5px; top:50%; transform:translateY(-50%); border:5px solid transparent; border-left-color:#fff; }
.global__legend { display: flex; gap: 22px; margin-top: 22px; font-size: .86rem; color: var(--slate); flex-wrap: wrap; }
.global__legend i { display:inline-block; width:11px; height:11px; border-radius:50%; margin-right:7px; vertical-align: middle; }
.global__copy h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); font-weight: 800; line-height: 1.18; letter-spacing:-.03em; margin: 16px 0 18px; }
.global__copy > p { color: var(--slate); font-size: 1.05rem; margin-bottom: 26px; }
.global__mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gmini { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; }
.gmini b { font-size: 1.7rem; font-weight: 900; color: var(--blue); display:block; line-height:1; }
.gmini span { font-size: .85rem; color: var(--muted); }

/* =============================================================
   QUALITY / CTA split
   ============================================================= */
.quality { background: var(--navy); color: #fff; overflow: hidden; }
.quality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.quality__img { position: relative; min-height: 520px; }
.quality__img img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.quality__img::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, transparent, rgba(6,23,38,.6)); }
.quality__copy { padding: clamp(48px,6vw,84px); display:flex; flex-direction: column; justify-content: center; }
.quality__copy h2 { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; line-height: 1.12; letter-spacing:-.03em; margin: 18px 0 20px; }
.quality__copy h2 .l { display:block; }
.quality__copy h2 .accent { color: var(--green-bright); }
.quality__copy p { color: rgba(255,255,255,.74); font-size: 1.06rem; margin-bottom: 30px; max-width: 460px; }
.certs { display: flex; flex-wrap: wrap; gap: 12px; }
.certs li { display:flex; align-items:center; gap:9px; padding: 10px 16px; border:1px solid rgba(255,255,255,.18); border-radius: 999px; font-weight:700; font-size:.9rem; background: rgba(255,255,255,.04); }
.certs li svg { width:16px; height:16px; color: var(--green-bright); }

/* applications inline */
.apps { background: var(--white); }
.apps__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.app {
  text-align: center; padding: 30px 16px; border-radius: var(--radius); border:1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s;
}
.app:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--paper); }
.app__icon { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; display:grid; place-items:center; background: var(--grad-blue); color:#fff; }
.app__icon svg { width: 30px; height: 30px; }
.app h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 6px; }
.app p { font-size: .84rem; color: var(--muted); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact__info h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); font-weight: 800; line-height:1.16; letter-spacing:-.03em; margin: 16px 0 18px; }
.contact__info > p { color: var(--slate); font-size: 1.05rem; margin-bottom: 32px; }
.cinfo { display: flex; flex-direction: column; gap: 18px; }
.cinfo li { display:flex; gap: 16px; align-items:flex-start; }
.cinfo .ic { width: 46px; height: 46px; flex:none; border-radius: 12px; background:#fff; border:1px solid var(--line); display:grid; place-items:center; color: var(--blue); }
.cinfo .ic svg { width: 21px; height: 21px; }
.cinfo .t { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.cinfo .v { font-size: 1.04rem; font-weight: 700; color: var(--ink); }
.cinfo .v.sm { font-size: .96rem; font-weight: 600; color: var(--slate); }
.contact__card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,3.5vw,44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-size: .86rem; font-weight: 700; margin-bottom: 8px; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--paper); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,114,188,.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-msg { font-size: .92rem; font-weight: 600; margin-top: 14px; padding: 12px 16px; border-radius: 10px; display:none; }
.form-msg.ok { display:block; background: rgba(122,185,41,.12); color: #4e7d10; border:1px solid rgba(122,185,41,.3); }
.form-msg.err { background: rgba(224,54,76,.1); color: #c0263a; border:1px solid rgba(224,54,76,.32); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { margin: 20px 0; font-size: .95rem; max-width: 320px; }
.footer h5 { color: #fff; font-size: .98rem; font-weight: 800; margin-bottom: 18px; letter-spacing: .02em; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .92rem; transition: color .25s; }
.footer ul a:hover { color: var(--cyan-bright); }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items:center; transition: background .3s, transform .3s; }
.footer__social a:hover { background: var(--blue); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; color:#fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; font-size: .85rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal-left { opacity:0; transform: translateX(-40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.in { opacity:1; transform:none; }
.reveal-right { opacity:0; transform: translateX(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.in { opacity:1; transform:none; }

/* back-to-top */
.totop {
  position: fixed; right: 26px; bottom: 26px; z-index: 90; width: 50px; height: 50px;
  border-radius: 14px; background: var(--grad-blue); color:#fff; display:grid; place-items:center;
  box-shadow: 0 10px 26px rgba(0,114,188,.4); opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(.9); transition: all .4s var(--ease);
}
.totop.show { opacity: 1; pointer-events:auto; transform: none; }
.totop:hover { transform: translateY(-4px); }
.totop svg { width: 22px; height: 22px; }

/* scroll progress bar */
.scrollbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 110; background: var(--grad-blue); transition: width .1s linear; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .about__grid, .global__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .quality__grid { grid-template-columns: 1fr; }
  .quality__img { min-height: 340px; }
  .caps__grid { grid-template-columns: repeat(2,1fr); }
  .process__steps { grid-template-columns: repeat(3,1fr); }
  .pstep::before { display:none; }
  .apps__grid { grid-template-columns: repeat(3,1fr); }
  .hero__img { width: 78%; opacity: .35; }
}
@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav, .header-cta .btn-ghost { display: none; }
  .logo-img { height: 42px; }
  .header.scrolled .logo-img { height: 38px; }
  .burger { display: block; }
  .nav.open {
    display: flex; position: fixed; inset: var(--nav-h) 0 0 0; flex-direction: column;
    background: rgba(6,23,38,.97); backdrop-filter: blur(14px); padding: 40px 24px; gap: 8px; justify-content: flex-start;
  }
  .nav.open a { color:#fff; font-size: 1.3rem; padding: 14px 0; width:100%; border-bottom:1px solid rgba(255,255,255,.08); }
  .nav.open a::after { display:none; }
  .header.menu-open { background: rgba(6,23,38,.97); }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 36px 16px; }
  .stats__grid .stat::after { display:none; }
  .prod__grid { grid-template-columns: 1fr; }
  .caps__grid, .form-row { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 26px; }
  .pstep { padding-top: 0; padding-left: 60px; }
  .pstep__num { top: 50%; transform: translateY(-50%); }
  .global__mini { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .about__badge { left: 12px; }
  .hero__stats { gap: 28px; }
}
@media (max-width: 460px) {
  .apps__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
}

/* link cards (home: industries & customer support) */
a.prod-card, a.app { color: inherit; text-decoration: none; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app .app__more { display:inline-flex; align-items:center; gap:6px; color: var(--blue); font-weight: 700; font-size: .85rem; margin-top: 14px; }
.app .app__more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.app:hover .app__more svg { transform: translateX(4px); }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-grid { grid-template-columns: 1fr; } }

/* =============================================================
   MEGA MENU
   ============================================================= */
.nav__top {
  position: relative; font-weight: 600; font-size: .98rem; color: rgba(255,255,255,.9);
  transition: color .25s; padding: 6px 0;
}
.nav__top::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--grad-blue); transition: width .3s var(--ease);
}
.nav__top:hover::after, .nav__top.active::after { width: 100%; }

.megapanel {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
  background: rgba(7,22,37,.97); backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px rgba(0,0,0,.4);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.megapanel.open { opacity: 1; visibility: visible; transform: none; }
.megapanel__inner { width: min(100% - 48px, var(--container)); margin-inline: auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; padding: 34px 0 38px; align-items: start; }
.megacol h4 { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); letter-spacing: .01em; }
.megacol h4 .en { display:block; font-size: .68rem; font-weight: 600; color: var(--cyan-bright); letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
.megacol ul li { margin-bottom: 3px; }
.megacol a.sub {
  display: flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.66);
  padding: 7px 10px; border-radius: 8px; transition: background .2s, color .2s, padding .2s;
}
.megacol a.sub::before { content:""; width:5px; height:5px; border-radius:50%; background: var(--cyan); opacity:0; transition: opacity .2s, transform .2s; transform: scale(.5); }
.megacol a.sub:hover { background: rgba(255,255,255,.07); color: #fff; padding-left: 12px; }
.megacol a.sub:hover::before { opacity:1; transform: scale(1); }
.megacol a.sub.active { color: var(--cyan-bright); }

/* =============================================================
   PAGE BANNER (sub-pages)
   ============================================================= */
.pagehero {
  position: relative; padding: calc(var(--nav-h) + 70px) 0 64px; color: #fff; overflow: hidden;
  background: var(--navy);
}
.pagehero__bg { position:absolute; inset:0; z-index:0; opacity:.32; background-size: cover; background-position: center; }
.pagehero::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(120deg, rgba(4,16,29,.95) 0%, rgba(7,34,58,.82) 45%, rgba(0,114,188,.5) 100%);
}
.pagehero .container { position: relative; z-index: 2; }
.pagehero .eyebrow { color: var(--cyan-bright); }
.pagehero .eyebrow::before { background: var(--cyan-bright); }
.pagehero h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 900; letter-spacing: -.03em; margin: 16px 0 14px; }
.pagehero p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 640px; }
.crumb { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 22px; flex-wrap: wrap; }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }
.crumb .cur { color: var(--cyan-bright); font-weight: 600; }

/* =============================================================
   PAGE CONTENT BLOCKS
   ============================================================= */
.page { background: var(--white); }
.prose { max-width: 820px; }
.prose p { color: var(--slate); font-size: 1.06rem; margin-bottom: 18px; }
.prose h3 { font-size: 1.5rem; font-weight: 800; margin: 34px 0 14px; letter-spacing: -.02em; }
.prose .hl { color: var(--blue); font-weight: 700; }
.lead-lg { font-size: clamp(1.2rem,2vw,1.5rem); font-weight: 700; line-height: 1.5; color: var(--ink); margin-bottom: 24px; letter-spacing: -.02em; }

.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split2 img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.split2.rev .split2__media { order: 2; }

.infogrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
.infocard { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.infocard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.infocard .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--paper-2); color: var(--blue); display:grid; place-items:center; margin-bottom: 16px; }
.infocard .ic svg { width: 26px; height: 26px; }
.infocard h4 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }
.infocard p { color: var(--muted); font-size: .95rem; }

/* spec table */
.spectable { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: .94rem; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.spectable th, .spectable td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.spectable thead th { background: var(--navy); color:#fff; font-weight: 700; font-size: .9rem; letter-spacing: .02em; }
.spectable tbody tr:nth-child(even) { background: var(--paper); }
.spectable tbody tr:hover { background: var(--paper-2); }
.spectable td:first-child { font-weight: 700; color: var(--ink); }

/* feature list */
.flist { display: grid; gap: 14px; margin-top: 10px; }
.flist li { display:flex; gap: 14px; align-items:flex-start; padding: 16px 20px; background: var(--paper); border-radius: var(--radius-sm); border:1px solid var(--line); }
.flist .n { width: 30px; height: 30px; flex:none; border-radius: 9px; background: var(--grad-blue); color:#fff; font-weight: 800; font-size:.9rem; display:grid; place-items:center; }
.flist b { display:block; font-size: 1.02rem; margin-bottom: 3px; }
.flist span { color: var(--muted); font-size: .94rem; }

/* CTA strip */
.ctastrip { background: var(--grad-deep); color:#fff; border-radius: var(--radius); padding: clamp(32px,4vw,52px); display:flex; align-items:center; justify-content:space-between; gap: 28px; flex-wrap: wrap; }
.ctastrip h3 { font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 800; letter-spacing:-.02em; }
.ctastrip p { color: rgba(255,255,255,.8); margin-top: 8px; }

/* history timeline */
.timeline { position: relative; max-width: 820px; margin-top: 10px; }
.timeline::before { content:""; position:absolute; left: 13px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), var(--cyan), transparent); }
.tl-item { position: relative; padding: 0 0 30px 52px; }
.tl-item::before { content:""; position:absolute; left: 6px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background:#fff; border: 4px solid var(--blue); box-shadow: 0 0 0 4px rgba(0,114,188,.12); }
.tl-item .yr { font-size: 1.1rem; font-weight: 900; color: var(--blue); }
.tl-item p { color: var(--slate); margin-top: 4px; }

/* location */
.locinfo { display: grid; gap: 16px; }
.locinfo li { display:flex; gap: 14px; align-items:flex-start; }
.locinfo .ic { width: 44px; height:44px; flex:none; border-radius: 11px; background: var(--paper-2); color: var(--blue); display:grid; place-items:center; }
.locinfo .ic svg { width: 20px; height: 20px; }
.locinfo .t { font-size: .8rem; color: var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.locinfo .v { font-size: 1.04rem; font-weight: 700; }
.mapbox { width: 100%; aspect-ratio: 16/10; border:0; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper-2); }

/* board: notice list */
.board { border-top: 2px solid var(--ink); }
.board-empty { text-align:center; color: var(--muted); padding: 56px 20px; font-size: .98rem; border:1px dashed var(--line); border-radius: var(--radius-sm); background: var(--paper); }
.board__row { display:grid; grid-template-columns: 70px 1fr 130px; gap: 16px; align-items:center; padding: 20px 14px; border-bottom:1px solid var(--line); transition: background .2s; }
.board__row:hover { background: var(--paper); }
.board__row .no { color: var(--muted); font-weight: 700; text-align:center; }
.board__row .ti { font-weight: 600; color: var(--ink); display:flex; align-items:center; gap:10px; }
.board__row .ti .tag { font-size:.7rem; font-weight:800; color:#fff; background: var(--blue); padding:3px 8px; border-radius:6px; }
.board__row .dt { color: var(--muted); font-size: .9rem; text-align:right; }

/* library list */
.libitem { display:flex; align-items:center; gap:18px; padding: 20px; border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; transition: border-color .25s, box-shadow .25s, transform .25s; }
.libitem:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.libitem .fi { width: 48px; height:48px; flex:none; border-radius:11px; background: var(--paper-2); color: var(--blue); display:grid; place-items:center; }
.libitem .fi svg { width:24px; height:24px; }
.libitem > div { min-width: 0; }
.libitem b { display:block; font-size: 1.02rem; overflow-wrap: anywhere; word-break: break-word; }
.libitem span { color: var(--muted); font-size:.86rem; overflow-wrap: anywhere; }
.libitem .dl { margin-left:auto; flex:none; color: var(--blue); font-weight:700; font-size:.9rem; display:inline-flex; gap:6px; align-items:center; white-space:nowrap; }
@media (max-width: 520px) {
  .libitem { flex-wrap: wrap; gap: 12px; }
  .libitem .dl { margin-left: 60px; }
}

/* gallery */
.gallery { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gcard { border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); background:#fff; border:1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.gcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gcard__img { aspect-ratio: 4/3; overflow:hidden; }
.gcard__img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gcard:hover .gcard__img img { transform: scale(1.06); }
.gcard__cap { padding: 16px 18px; font-weight: 600; font-size: .96rem; }

.notice-box { background: var(--paper); border:1px dashed var(--silver); border-radius: var(--radius-sm); padding: 16px 20px; color: var(--muted); font-size: .9rem; margin-top: 30px; }

/* =============================================================
   FULLPAGE — right-side section pagination dots
   ============================================================= */
.fp-dots {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 80; display: none; flex-direction: column; gap: 15px;
}
@media (min-width: 1025px) { .fp-dots { display: flex; } }
.fp-dots a { position: relative; width: 14px; height: 14px; display: block; }
.fp-dots .d {
  position: absolute; inset: 3px; border-radius: 50%;
  background: rgba(130,150,170,.5); transition: all .3s var(--ease);
}
.fp-dots a:hover .d { background: var(--blue); inset: 2px; }
.fp-dots a.active .d { inset: 0; background: var(--grad-blue); box-shadow: 0 0 0 4px rgba(0,114,188,.18); }
.fp-dots .lbl {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%) translateX(6px);
  white-space: nowrap; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 7px; opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.fp-dots .lbl::after { content:""; position:absolute; right:-4px; top:50%; transform:translateY(-50%); border:4px solid transparent; border-left-color: var(--ink); }
.fp-dots a:hover .lbl { opacity: 1; transform: translateY(-50%) translateX(0); }

/* =============================================================
   FULLPAGE SCROLL (home, desktop) — each panel fits one screen
   ============================================================= */
@media (min-width: 1025px) {
  /* The JS in home.js drives smooth eased section-to-section scrolling.
     (No CSS scroll-snap here — it would fight the JS easing animation.) */

  /* each panel fills exactly one screen, content centered */
  section[data-panel]:not(.hero):not(.quality) {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding-block: clamp(14px, 3vh, 44px);
  }
  .quality { padding: 0; }
  .quality__grid { min-height: 100vh; }
  .quality__copy { padding: clamp(28px, 4vw, 60px); }
  .quality__copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.7rem); margin: 14px 0 16px; }
  .quality__copy p { margin-bottom: 20px; font-size: 1rem; }

  /* compact section heads (home only — sub-pages keep full size) */
  body.home .section-head { margin-bottom: clamp(14px, 2.4vh, 32px); }
  body.home .section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.3rem); }
  body.home .section-head p { font-size: 1rem; }

  /* products → single compact row of 4 */
  .prod__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .prod-card { min-height: 0; }
  .prod-card__media { height: clamp(104px, 15vh, 168px); }
  .prod-card__body { padding: 16px 18px 18px; }
  .prod-card__body h3 { font-size: 1.04rem; margin-bottom: 6px; }
  .prod-card__body p { font-size: .84rem; margin-bottom: 11px; }
  .prod-card__tags { margin-bottom: 11px; gap: 6px; }
  .prod-card__tags li { font-size: .68rem; padding: 4px 8px; }

  /* capabilities → compact 3×2 */
  .caps__grid { gap: 14px; }
  .cap { padding: 18px 22px; }
  .cap__icon { width: 44px; height: 44px; margin-bottom: 11px; border-radius: 12px; }
  .cap__icon svg { width: 23px; height: 23px; }
  .cap h3 { font-size: 1.04rem; margin-bottom: 5px; }
  .cap p { font-size: .85rem; margin-bottom: 10px; }
  .cap__spec li { font-size: .69rem; padding: 4px 8px; }

  /* about → shorter visual + tighter copy */
  .about__grid { gap: 48px; }
  .about__visual img { aspect-ratio: 1 / 1; max-height: 62vh; }
  .about__copy p { font-size: 1rem; margin-bottom: 13px; }
  .about__features { margin-top: 18px; gap: 12px; }
  .about__badge { padding: 16px 20px; }

  /* contact → compact form */
  .contact__card { padding: 28px; }
  .contact__info > p { margin-bottom: 20px; }
  .field { margin-bottom: 12px; }
  .field input, .field select { padding: 11px 14px; }
  .field textarea { min-height: 78px; padding: 11px 14px; }
  .cinfo { gap: 12px; }
  .form-note { margin-top: 10px; }

  /* process / global tighten */
  .process__steps { margin-top: 12px; }
  .global__copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
  .global__mini { gap: 14px; }
}

/* =============================================================
   MEGA MENU / PAGES — RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .megapanel { display: none; }
  .split2, .split2.rev .split2__media { grid-template-columns: 1fr; order: 0; }
  .split2 { grid-template-columns: 1fr; gap: 32px; }
  .infogrid, .gallery { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .infogrid, .gallery { grid-template-columns: 1fr; }
  .board__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 8px; }
  .board__row .no, .board__row .dt { text-align:left; }
  .ctastrip { flex-direction: column; align-items: flex-start; }
}

/* mobile slide-in menu (mega accordion) */
.mobnav { display: none; }
@media (max-width: 760px) {
  .mobnav {
    display: block; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 95;
    background: rgba(6,23,38,.98); backdrop-filter: blur(14px);
    padding: 18px 24px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .header.menu-open .mobnav { transform: none; }
  .m-cat { width:100%; border-bottom:1px solid rgba(255,255,255,.08); }
  .m-cat > button {
    width:100%; display:flex; justify-content:space-between; align-items:center;
    color:#fff; font-size:1.16rem; font-weight:700; padding:17px 2px; background:none;
  }
  .m-cat > button .chev { transition: transform .3s; width:20px; height:20px; }
  .m-cat.open > button .chev { transform: rotate(180deg); }
  .m-sub { max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
  .m-cat.open .m-sub { max-height: 460px; }
  .m-sub a { display:block; color:rgba(255,255,255,.72); font-size:1rem; padding:12px 0 12px 16px; }
  .m-sub a:last-child { padding-bottom: 18px; }
  .mobnav__cta { margin-top: 26px; display:flex; flex-direction:column; gap: 12px; }
  .mobnav__cta .btn { width:100%; justify-content:center; }
}
