:root {
  --navy-900:#06101f;
  --navy-800:#0b1830;
  --navy-700:#102747;
  --blue-500:#0a7cff;
  --blue-400:#34c7ff;
  --line:#dfe7f2;
  --text:#0b172a;
  --muted:#627089;
  --surface:#f7faff;
  --white:#fff;
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --shadow:0 20px 40px rgba(4,20,44,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans KR",sans-serif;color:var(--text);background:#fff;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1240px,calc(100% - 48px));margin-inline:auto}
.site-header{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(4,11,22,.78);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.08)}
.nav-wrap{height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:inline-flex;align-items:center;gap:10px;color:#fff;font-weight:900;letter-spacing:-.03em}
.brand-mark{width:32px;height:32px;border:2px solid currentColor;border-radius:50%;display:grid;place-items:center;font-size:18px;font-weight:900;transform:skew(-8deg)}
.brand-text{font-size:20px}
.main-nav{display:flex;gap:36px;color:rgba(255,255,255,.9);font-size:15px;font-weight:700}
.main-nav a{white-space:nowrap}
.main-nav a:hover{color:#8cddff}
.nav-actions{display:flex;gap:16px;align-items:center;color:#fff}
.lang{font-size:12px;color:#c9d8ea}
.mobile-menu{display:none;background:none;border:0;color:#fff;font-size:26px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:15px 22px;border-radius:10px;font-weight:800;border:1px solid rgba(255,255,255,.25);transition:.25s ease;white-space:nowrap}
.btn:hover{transform:translateY(-2px)}
.btn-small{padding:10px 15px;background:var(--blue-500);border-color:var(--blue-500);font-size:13px}
/* Language Switcher Styling */
.language-switcher {
  position: relative;
  display: inline-block;
}
.language-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.language-current:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}
.language-current img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.language-current strong {
  font-weight: 700;
  letter-spacing: 0.03em;
}
.language-current i {
  font-style: normal;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}
.language-switcher.active .language-current i {
  transform: rotate(180deg);
}
.language-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0b1830;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 6px;
  min-width: 110px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 200;
}
.language-switcher.active .language-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.language-menu a:hover {
  background: var(--blue-500);
  color: #fff;
}
.language-menu a img {
  width: 18px;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
}
.btn-primary{background:linear-gradient(135deg,#0869ff,#0ea0ff);color:#fff;border-color:transparent;box-shadow:0 14px 28px rgba(7,118,255,.28)}
.btn-ghost{color:#fff;background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.34)}
.hero{position:relative;min-height:840px;padding-top:76px;background:#030a14;overflow:hidden}
.hero-media{position:absolute;inset:76px 0 0 0;background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 34%,rgba(4,11,22,.30) 66%,rgba(4,11,22,.18) 100%),url('assets/product-hero.webp');background-size:cover;background-position:center center}
.hero-shade{position:absolute;inset:0;background:radial-gradient(circle at 70% 42%,rgba(0,123,255,.28),transparent 30%),linear-gradient(180deg,transparent 70%,rgba(3,10,20,.7))}
.hero-inner{position:relative;z-index:2;display:flex;align-items:center;min-height:740px}
.hero-copy{width:min(620px,100%);color:#fff;padding-top:28px}
.eyebrow{margin:0 0 16px;font-size:13px;font-weight:900;letter-spacing:.14em;color:#63d1ff}
.hero h1{margin:0 0 22px;font-size:64px;line-height:1.12;letter-spacing:-.06em}
.hero-lead{margin:0 0 34px;color:#cedbee;font-size:18px;max-width:560px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:52px}
.hero-features{display:flex;gap:28px;flex-wrap:wrap}
.hero-features div{display:grid;gap:8px;color:#fff;font-size:12px;font-weight:800;line-height:1.2;text-align:center;justify-items:center}
.hero-features i{font-style:normal;color:#00a8ff;font-size:28px}
.section{padding:88px 0}
.section-overview{padding-top:56px}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:28px}
.section-head.left-align{justify-content:flex-start}
.section-no{margin:0 0 10px;color:var(--blue-500);font-weight:900;font-size:14px;letter-spacing:.08em}
.section h2{margin:0;font-size:38px;line-height:1.16;letter-spacing:-.05em}
.section-desc{color:var(--muted);font-size:17px}
.link-more{color:var(--blue-500);font-weight:800}
.thumb-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:16px}
.thumb-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:16px;box-shadow:0 12px 28px rgba(12,40,89,.05)}
.thumb-img{height:112px;border-radius:12px;background-size:cover;background-position:center;margin-bottom:14px}
.thumb-card h3{margin:0 0 6px;font-size:18px;letter-spacing:-.03em}
.thumb-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.45}
.solutions-wrap{background:var(--surface)}
.solution-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.solution-card{position:relative;overflow:hidden;min-height:228px;border-radius:20px;padding:24px;display:flex;flex-direction:column;justify-content:flex-end;color:#fff;background-size:cover;background-position:center;box-shadow:0 20px 40px rgba(5,23,52,.14)}
.solution-card.large{grid-column:span 1}
.solution-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,11,22,.10),rgba(4,11,22,.88) 78%),radial-gradient(circle at 82% 18%,rgba(17,170,255,.32),transparent 36%)}
.solution-card>*{position:relative;z-index:1}
.card-number{color:#8cdfff;font-weight:900;font-size:15px}
.solution-card h3{margin:8px 0 8px;font-size:28px;letter-spacing:-.04em}
.solution-card p{margin:0 0 18px;color:#d9e6f4;max-width:280px}
.solution-card a{align-self:flex-start;padding:8px 14px;border:1px solid rgba(255,255,255,.36);border-radius:8px;font-weight:800;font-size:14px;background:rgba(255,255,255,.04)}
.products{background:#fff}
.product-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:14px}
.product-grid article{border:1px solid var(--line);border-radius:999px 999px 18px 18px;background:#fff;padding:18px 12px 22px;text-align:center;box-shadow:0 12px 24px rgba(10,44,89,.06)}
.product-grid article.active{border-color:var(--blue-500);box-shadow:0 20px 34px rgba(10,124,255,.16)}
.product-grid h3{margin:0 0 3px;font-size:14px;letter-spacing:-.02em}
.product-grid p{margin:0;color:var(--muted);font-size:11px;font-weight:700}
.product-icon{width:90px;height:90px;margin:0 auto 14px;border-radius:50%;background:radial-gradient(circle at 30% 20%,#fff,#dbe5f1 62%,#90a0b4);border:1px solid #dde5ef;position:relative}
.product-icon::after{content:"";position:absolute;background:linear-gradient(135deg,#1d2837,#f1f4f8 52%,#1d2837)}
.icon-pump::after{inset:28px 20px;border-radius:24px 24px 16px 16px}
.icon-valve::after{inset:26px 18px 30px;border-radius:12px}
.icon-prop::after{width:44px;height:30px;left:23px;top:30px;border-radius:8px}
.icon-cart::after{width:22px;height:46px;left:34px;top:22px;border-radius:10px}
.icon-manifold::after{inset:23px;border-radius:10px}
.icon-cylinder::after{width:52px;height:18px;left:18px;top:36px;border-radius:18px}
.icon-sensor::after{width:24px;height:38px;left:33px;top:25px;border-radius:14px}
.icon-power::after{width:42px;height:42px;left:24px;top:24px;border-radius:10px}
.company-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:26px;align-items:start}
.company-copy{background:#fff}
.feature-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:28px}
.feature-cards article{border:1px solid var(--line);border-radius:18px;padding:22px;background:#fff;box-shadow:0 10px 24px rgba(12,40,89,.05)}
.feature-cards h3{margin:0 0 10px;font-size:20px;letter-spacing:-.03em}
.feature-cards p{margin:0;color:var(--muted);font-size:15px}
.highlight-panels{display:grid;gap:16px}
.highlight-card{position:relative;min-height:260px;border-radius:24px;padding:28px;color:#fff;background-size:cover;background-position:center;overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end;box-shadow:0 18px 34px rgba(4,22,50,.16)}
.highlight-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,11,22,.18),rgba(4,11,22,.90) 76%)}
.highlight-card>*{position:relative;z-index:1}
.highlight-card span{font-size:13px;color:#7edaff;font-weight:900;letter-spacing:.12em}
.highlight-card h3{margin:8px 0 0;font-size:26px;line-height:1.18;letter-spacing:-.04em;max-width:460px}
.process{background:#fff}
.process-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.process-grid article{position:relative;text-align:center;padding-top:8px}
.process-grid article:not(:last-child)::after{content:"→";position:absolute;right:-14px;top:36px;color:var(--blue-500);font-weight:900}
.process-grid span{width:72px;height:72px;margin:0 auto 16px;border-radius:50%;display:grid;place-items:center;background:#fff;border:1px solid #c7dbfb;color:var(--blue-500);font-weight:900;box-shadow:0 12px 24px rgba(10,124,255,.10)}
.process-grid h3{margin:0 0 8px;font-size:18px;letter-spacing:-.03em}
.process-grid p{margin:0;color:var(--muted);font-size:14px;line-height:1.5}
.contact-section{padding:72px 0;background:linear-gradient(135deg,#07111f,#0b2340);color:#fff}
.cta-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:46px;align-items:center}
.contact-section h2{margin:0 0 16px;font-size:42px;line-height:1.2;letter-spacing:-.05em}
.contact-section p{margin:0;color:#d0ddec}
.cta-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.cta-actions .btn{min-height:72px}
.site-footer{background:#06101f;color:#fff;padding:58px 0 24px}
.footer-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:34px}
.footer-grid h4{margin:0 0 16px;font-size:16px}
.footer-grid a,.footer-grid p{display:block;margin:0 0 8px;color:#b8c7d9;font-size:14px}
.footer-brand p{max-width:280px}
.footer-bottom{display:flex;gap:24px;align-items:center;border-top:1px solid rgba(255,255,255,.1);padding-top:22px;margin-top:38px;color:#9eb0c6;font-size:13px}
.footer-bottom span:last-child{margin-left:auto}
@media (max-width:1200px){
  .thumb-grid{grid-template-columns:repeat(4,1fr)}
  .product-grid{grid-template-columns:repeat(4,1fr)}
  .solution-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr 1fr}
}
@media (max-width:980px){
  .main-nav{
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    background:rgba(4,11,22,.97);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    flex-direction:column;
    padding:24px;
    gap:20px;
    z-index:90;
  }
  .main-nav.active{
    display:flex;
  }
  /* Keep language-switcher visible in header beside mobile-menu instead of hiding whole nav-actions */
  .nav-actions {
    display: flex;
    gap: 10px;
  }
  .nav-actions .btn {
    display: none !important; /* Hide inquiry button only on mobile */
  }
  .mobile-menu{
    display:block;
    order: 3; /* Place hamburger menu at the far right */
  }
  .nav-actions {
    order: 2; /* Place language switcher next to hamburger menu */
  }
  .brand {
    order: 1;
  }
  .hero{min-height:760px}
  .hero h1{font-size:50px}
  .container{width:min(100% - 32px,1240px)}
  .company-grid,.cta-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid article::after{display:none !important}
}
@media (max-width:680px){
  .hero-media{background-position:70% center}
  .hero h1{font-size:38px}
  .hero-lead{font-size:16px}
  .hero-actions,.cta-actions{display:grid;grid-template-columns:1fr}
  .hero-features{gap:16px}
  .section{padding:68px 0}
  .section h2,.contact-section h2{font-size:30px}
  .thumb-grid,.product-grid,.solution-grid,.feature-cards,.process-grid{grid-template-columns:1fr}
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 8px;
  }
  .section-head{display:block}
  .footer-bottom{display:grid;gap:8px}
  .footer-bottom span:last-child{margin-left:0}
  
}


/* Product page */
.product-hero{
  position:relative;
  min-height:620px;
  padding-top:76px;
  background:#030a14;
  overflow:hidden;
}
.product-hero-bg{
  position:absolute;
  inset:76px 0 0 0;
  background-image:
    linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.82) 38%,rgba(4,11,22,.34) 100%),
    url('assets/product-hero.webp');
  background-size:cover;
  background-position:center right;
}
.product-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 45%,rgba(0,124,255,.28),transparent 32%),
    linear-gradient(180deg,transparent 70%,rgba(3,10,20,.75));
}
.product-hero-inner{
  position:relative;
  z-index:2;
  min-height:544px;
  display:grid;
  grid-template-columns:1.2fr .55fr;
  align-items:center;
  gap:42px;
  color:#fff;
}
.product-hero h1{
  margin:0 0 22px;
  font-size:58px;
  line-height:1.12;
  letter-spacing:-.06em;
  word-break:keep-all;
}
.product-hero p{
  max-width:630px;
  color:#d2deec;
  font-size:18px;
}
.product-hero-panel{
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  backdrop-filter:blur(18px);
  border-radius:28px;
  padding:34px;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}
.product-hero-panel span{
  display:block;
  color:#71d8ff;
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
}
.product-hero-panel strong{
  display:block;
  margin:12px 0;
  font-size:72px;
  line-height:1;
  letter-spacing:-.06em;
}
.product-intro{background:#fff}
.product-intro-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:40px;
  align-items:start;
}
.value-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.value-grid article{
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  background:#fff;
  box-shadow:0 12px 28px rgba(12,40,89,.05);
}
.value-grid span{
  color:var(--blue-500);
  font-weight:900;
}
.value-grid h3{
  margin:10px 0 8px;
  font-size:20px;
  letter-spacing:-.03em;
}
.value-grid p{
  margin:0;
  color:var(--muted);
}
.product-tabs-wrap{
  position:sticky;
  top:76px;
  z-index:40;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-block:1px solid var(--line);
}
.product-tabs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:14px 0;
}
.product-tabs a{
  flex:0 0 auto;
  padding:10px 16px;
  border:1px solid #cddbed;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  color:#28405f;
  background:#fff;
}
.product-catalog{
  background:var(--surface);
}
.catalog-section{
  margin-top:44px;
}
.catalog-section:first-of-type{
  margin-top:0;
}
.catalog-title{
  margin:0 0 18px;
  color:#0c2544;
  font-size:24px;
  letter-spacing:-.04em;
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.catalog-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 36px rgba(10,36,74,.07);
}
.catalog-visual{
  height:220px;
  position:relative;
  background:
    radial-gradient(circle at 70% 35%,rgba(10,124,255,.18),transparent 30%),
    linear-gradient(135deg,#edf4fc,#ffffff 46%,#dce6f3);
  overflow:hidden;
}
.catalog-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.0),rgba(255,255,255,.5),rgba(255,255,255,.0)),
    repeating-linear-gradient(0deg,transparent 0 22px,rgba(10,124,255,.04) 23px 24px);
}
.catalog-visual::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-45%);
  background:linear-gradient(135deg,#172335 0%,#f3f6fa 42%,#68798e 56%,#111827 100%);
  box-shadow:0 22px 44px rgba(0,0,0,.23);
}
.visual-control-valve::after{width:118px;height:92px;border-radius:18px}
.visual-solenoid::after{width:150px;height:58px;border-radius:16px}
.visual-proportional::after{width:124px;height:76px;border-radius:18px}
.visual-modular::after{width:116px;height:116px;border-radius:18px}
.visual-cartridge::after{width:42px;height:142px;border-radius:22px}
.visual-logic::after{width:130px;height:86px;border-radius:44px}
.visual-pump::after{width:132px;height:108px;border-radius:60px 60px 26px 26px}
.visual-cylinder::after{width:170px;height:42px;border-radius:999px}
.visual-orbit::after{width:118px;height:118px;border-radius:50%}
.visual-sensor::after{width:50px;height:138px;border-radius:28px}
.visual-filter::after{width:86px;height:138px;border-radius:20px}
.visual-cooler::after{width:154px;height:94px;border-radius:14px}
.visual-coil::after{width:104px;height:104px;border-radius:36px}
.visual-manifold::after{width:146px;height:116px;border-radius:18px}
.visual-powerpack::after{width:164px;height:108px;border-radius:18px}
.visual-accumulator::after{width:70px;height:150px;border-radius:38px}
.catalog-body{
  padding:24px;
}
.catalog-body span{
  display:block;
  margin-bottom:8px;
  color:var(--blue-500);
  font-weight:900;
  font-size:12px;
  letter-spacing:.12em;
}
.catalog-body h4{
  margin:0 0 10px;
  font-size:24px;
  letter-spacing:-.04em;
}
.catalog-body p{
  min-height:58px;
  margin:0 0 18px;
  color:var(--muted);
}
.catalog-body ul{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  padding:0;
  margin:0;
}
.catalog-body li{
  padding:7px 10px;
  border-radius:999px;
  background:#eef6ff;
  color:#195da5;
  font-size:12px;
  font-weight:800;
}
.custom-engineering{
  background:#fff;
}
.custom-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:42px;
  align-items:center;
}
.spec-card{
  border-radius:28px;
  padding:34px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 10%,rgba(35,196,255,.30),transparent 34%),
    linear-gradient(135deg,#07111f,#0d2c50);
  box-shadow:0 24px 52px rgba(4,20,44,.18);
}
.spec-card h3{
  margin:0 0 18px;
  font-size:26px;
  letter-spacing:-.04em;
}
.spec-card ul{
  margin:0 0 24px;
  padding-left:20px;
  color:#d7e5f5;
}
.spec-card li{
  margin:9px 0;
}

@media (max-width:1100px){
  .product-hero-inner,.product-intro-grid,.custom-grid{grid-template-columns:1fr}
  .catalog-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .product-hero h1{font-size:32px}
  .product-hero-inner{min-height:600px}
  .product-hero-panel strong{font-size:56px}
  .value-grid,.catalog-grid{grid-template-columns:1fr}
  .catalog-visual{height:190px}
  .product-tabs-wrap{top:76px}
}


/* Company page */
.company-hero{
  position:relative;
  min-height:660px;
  padding-top:76px;
  background:#030a14;
  overflow:hidden;
}
.company-hero-bg{
  position:absolute;
  inset:76px 0 0 0;
  background-image:
    linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.32) 100%),
    url('assets/company-hero.webp');
  background-size:cover;
  background-position:center right;
}
.company-hero-shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 45%,rgba(0,124,255,.28),transparent 32%),
    linear-gradient(180deg,transparent 70%,rgba(3,10,20,.75));
}
.company-hero-inner{
  position:relative;
  z-index:2;
  min-height:584px;
  display:flex;
  align-items:center;
}
.company-hero-copy{
  width:min(650px,100%);
  color:#fff;
}
.company-hero h1{
  margin:0 0 22px;
  font-size:64px;
  line-height:1.12;
  letter-spacing:-.06em;
}
.company-hero p{
  max-width:620px;
  color:#d2deec;
  font-size:18px;
}
.company-identity{
  background:#fff;
}
.identity-grid{
  display:grid;
  grid-template-columns:1fr .78fr;
  gap:44px;
  align-items:center;
}
.identity-card{
  min-height:330px;
  border-radius:30px;
  padding:36px;
  color:#fff;
  background:
    radial-gradient(circle at 76% 24%,rgba(52,199,255,.32),transparent 34%),
    linear-gradient(135deg,#07111f,#0b2a4e);
  box-shadow:0 24px 60px rgba(4,20,44,.18);
}
.identity-card span{
  color:#71d8ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}
.identity-card strong{
  display:block;
  margin:18px 0;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.05em;
}
.identity-card p{
  color:#d5e4f5;
  margin:0;
}
.vision-section{
  background:var(--surface);
}
.vision-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.vision-grid article{
  min-height:250px;
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  background:#fff;
  box-shadow:0 16px 34px rgba(12,40,89,.06);
}
.vision-grid span{
  display:block;
  color:var(--blue-500);
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
  margin-bottom:18px;
}
.vision-grid h3{
  margin:0 0 12px;
  font-size:25px;
  line-height:1.2;
  letter-spacing:-.04em;
}
.vision-grid p{
  margin:0;
  color:var(--muted);
}
.dark-company{
  background:#07111f;
  color:#fff;
}
.dark-company-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:stretch;
}
.dark-photo{
  min-height:480px;
  border-radius:30px;
  padding:34px;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.dark-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(4,11,22,.12),rgba(4,11,22,.88) 78%);
}
.dark-photo>*{
  position:relative;
  z-index:1;
}
.dark-photo span{
  color:#7edaff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}
.dark-photo h3{
  margin:10px 0 0;
  font-size:34px;
  line-height:1.14;
  letter-spacing:-.05em;
}
.dark-copy{
  padding:20px 0;
}
.dark-copy h2{
  color:#fff;
}
.dark-copy p{
  color:#cddbeb;
  font-size:17px;
}
.competence-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:28px;
}
.competence-list div{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:20px;
  background:rgba(255,255,255,.04);
}
.competence-list strong{
  display:block;
  color:#6fd6ff;
  font-size:24px;
  margin-bottom:8px;
}
.competence-list span{
  color:#fff;
  font-weight:800;
}
.history-section{
  background:#fff;
}
.history-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:42px;
}
.history-list{
  border-top:2px solid #132a48;
}
.history-list article{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:20px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.history-list span{
  color:var(--blue-500);
  font-size:28px;
  font-weight:900;
  line-height:1;
}
.history-list p{
  margin:0;
  color:#2d3c50;
  font-size:18px;
  font-weight:700;
}
.organization-section{
  background:var(--surface);
}
.business-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.business-grid article{
  position:relative;
  overflow:hidden;
  min-height:260px;
  border-radius:24px;
  padding:26px;
  color:#fff;
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:0 18px 36px rgba(4,20,44,.14);
}
.business-grid article::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(4,11,22,.08),rgba(4,11,22,.88) 80%);
}
.business-grid article>*{
  position:relative;
  z-index:1;
}
.business-grid h3{
  margin:0 0 8px;
  font-size:26px;
  letter-spacing:-.04em;
}
.business-grid p{
  margin:0;
  color:#dce8f5;
}
.location-section{
  background:#fff;
}
.location-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:42px;
  align-items:center;
}
.contact-info-box{
  margin-top:28px;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  background:#fff;
  box-shadow:0 14px 32px rgba(12,40,89,.06);
}
.contact-info-box p{
  margin:10px 0;
  color:#31435a;
}
.contact-info-box strong{
  display:inline-block;
  width:80px;
  color:var(--blue-500);
}
.map-placeholder{
  min-height:360px;
  border-radius:30px;
  padding:34px;
  background:
    radial-gradient(circle at 70% 30%,rgba(10,124,255,.24),transparent 32%),
    linear-gradient(135deg,#f1f6fc,#ffffff);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.map-placeholder span{
  color:var(--blue-500);
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
}
.map-placeholder p{
  max-width:420px;
  margin:10px 0 0;
  color:var(--muted);
}
@media (max-width:1100px){
  .identity-grid,.dark-company-grid,.history-grid,.location-grid{grid-template-columns:1fr}
  .business-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .company-hero h1{font-size:40px}
  .company-hero p{font-size:16px}
  .vision-grid,.competence-list,.business-grid{grid-template-columns:1fr}
  .history-list article{grid-template-columns:1fr;gap:6px}
  .identity-card strong{font-size:36px}
}


/* Recruit page */
.recruit-hero{
  position:relative;min-height:660px;padding-top:76px;background:#030a14;overflow:hidden;
}
.recruit-hero-bg{
  position:absolute;inset:76px 0 0 0;
  background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.30) 100%),url('assets/recruit-hero.webp');
  background-size:cover;background-position:center right;
}
.recruit-hero::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 72% 45%,rgba(0,124,255,.26),transparent 32%),linear-gradient(180deg,transparent 70%,rgba(3,10,20,.75));}
.recruit-hero-inner{position:relative;z-index:2;min-height:584px;display:flex;align-items:center}
.recruit-hero-copy{width:min(650px,100%);color:#fff}
.recruit-hero h1{margin:0 0 22px;font-size:62px;line-height:1.12;letter-spacing:-.06em}
.recruit-hero p{max-width:620px;color:#d2deec;font-size:18px}
.recruit-value{background:#fff}
.recruit-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:42px;align-items:start}
.recruit-panels{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.recruit-panels article{border:1px solid var(--line);border-radius:20px;padding:24px;background:#fff;box-shadow:0 12px 28px rgba(12,40,89,.05)}
.recruit-panels span{color:var(--blue-500);font-size:12px;font-weight:900;letter-spacing:.12em}
.recruit-panels h3{margin:10px 0 8px;font-size:22px;letter-spacing:-.03em}
.recruit-panels p{margin:0;color:var(--muted)}
.recruit-culture{background:var(--surface)}
.culture-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.culture-grid article{border-radius:22px;padding:28px;background:#fff;border:1px solid var(--line);box-shadow:0 16px 34px rgba(12,40,89,.06)}
.culture-grid strong{display:block;color:var(--blue-500);font-size:26px;margin-bottom:12px}
.culture-grid h3{margin:0 0 10px;font-size:22px;letter-spacing:-.03em}
.culture-grid p{margin:0;color:var(--muted)}
.positions-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.positions-grid article{border-radius:24px;padding:28px;background:#07111f;color:#fff;box-shadow:0 18px 36px rgba(4,20,44,.14)}
.positions-grid span{display:block;color:#79daff;font-size:12px;font-weight:900;letter-spacing:.12em;margin-bottom:14px}
.positions-grid h3{margin:0 0 10px;font-size:26px;letter-spacing:-.04em}
.positions-grid p{margin:0 0 18px;color:#d5e2f1}
.positions-grid ul{margin:0;padding-left:18px;color:#dce8f5}
.positions-grid li{margin:8px 0}
.benefit-process{background:#fff}
.bp-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.benefit-card,.process-card{border-radius:28px;padding:34px;background:linear-gradient(135deg,#07111f,#0d2c50);color:#fff;box-shadow:0 24px 52px rgba(4,20,44,.18)}
.benefit-card h3,.process-card h3{margin:0 0 18px;font-size:28px;letter-spacing:-.04em}
.benefit-list,.step-list{display:grid;gap:12px}
.benefit-list div,.step-list div{display:grid;grid-template-columns:48px 1fr;gap:12px;align-items:flex-start;padding:14px 0;border-top:1px solid rgba(255,255,255,.12)}
.benefit-list div:first-child,.step-list div:first-child{border-top:0;padding-top:0}
.benefit-list strong,.step-list strong{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.12);color:#79daff}
.benefit-list span,.step-list span{color:#fff;font-weight:700;line-height:1.5}
@media (max-width:1100px){
  .recruit-grid,.bp-grid{grid-template-columns:1fr}
  .culture-grid{grid-template-columns:repeat(2,1fr)}
  .positions-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .recruit-hero h1{font-size:40px}
  .recruit-hero p{font-size:16px}
  .recruit-panels,.culture-grid,.positions-grid{grid-template-columns:1fr}
}


/* Legal pages */
.legal-hero{
  position:relative;
  padding-top:76px;
  background:
    radial-gradient(circle at 78% 28%,rgba(10,124,255,.26),transparent 32%),
    linear-gradient(135deg,#07111f,#0b2340);
  color:#fff;
}
.legal-hero-inner{
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.legal-hero h1{
  margin:0 0 16px;
  font-size:56px;
  line-height:1.12;
  letter-spacing:-.06em;
}
.legal-hero p{
  max-width:720px;
  margin:0;
  color:#d2deec;
  font-size:18px;
}
.legal-section{
  background:#f7faff;
  padding:72px 0 96px;
}
.legal-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:32px;
  align-items:start;
}
.legal-aside{
  position:sticky;
  top:104px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:24px;
  box-shadow:0 16px 34px rgba(12,40,89,.06);
}
.legal-aside strong{
  display:block;
  margin-bottom:16px;
  color:var(--blue-500);
  font-size:13px;
  letter-spacing:.12em;
}
.legal-aside a{
  display:block;
  padding:12px 0;
  border-top:1px solid #edf2f8;
  color:#24364f;
  font-weight:800;
}
.legal-aside p{
  margin:20px 0 0;
  padding-top:18px;
  border-top:1px solid #edf2f8;
  color:var(--muted);
  font-size:14px;
}
.legal-document{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  padding:44px;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.legal-note{
  margin:0 0 34px;
  padding:18px 20px;
  border-radius:16px;
  background:#eef6ff;
  color:#1d5f9f;
  font-weight:700;
}
.legal-document h2{
  margin:38px 0 14px;
  padding-top:26px;
  border-top:1px solid #edf2f8;
  font-size:24px;
  line-height:1.25;
  letter-spacing:-.04em;
}
.legal-document h2:first-of-type{
  margin-top:0;
  padding-top:0;
  border-top:0;
}
.legal-document p,
.legal-document li{
  color:#40516a;
  font-size:16px;
}
.legal-document ul{
  margin:0 0 18px;
  padding-left:22px;
}
.legal-document li{
  margin:7px 0;
}
.legal-document a{
  color:var(--blue-500);
  font-weight:900;
}
.legal-table{
  display:grid;
  gap:12px;
  margin:18px 0 8px;
}
.legal-table div{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:16px;
  border:1px solid #e1e9f4;
  border-radius:14px;
  padding:16px;
  background:#fbfdff;
}
.legal-table strong{
  color:#0b2b52;
}
.legal-table span{
  color:#52637a;
}
.legal-contact{
  margin-top:16px;
  border-radius:16px;
  padding:18px;
  background:#f7faff;
  border:1px solid #e1e9f4;
}
.legal-contact p{
  margin:8px 0;
}
.legal-contact strong{
  display:inline-block;
  width:150px;
  color:var(--blue-500);
}
.footer-bottom a{
  color:#9eb0c6;
  font-size:13px;
}
.footer-bottom a:hover{
  color:#fff;
}
@media (max-width:900px){
  .legal-layout{grid-template-columns:1fr}
  .legal-aside{position:static}
}
@media (max-width:640px){
  .legal-hero h1{font-size:36px}
  .legal-document{padding:28px 20px}
  .legal-table div{grid-template-columns:1fr}
}


/* Solution detail pages */
.solution-hero{position:relative;min-height:680px;padding-top:76px;background:#030a14;overflow:hidden}
.solution-hero .solution-hero-bg{position:absolute;inset:76px 0 0 0;background-size:cover;background-position:center right}
.solution-hero::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 74% 42%,rgba(0,124,255,.24),transparent 30%),linear-gradient(180deg,transparent 70%,rgba(3,10,20,.78))}
.solution-hero-agri .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.24) 100%),url('assets/solution-agri-hero.webp')}
.solution-hero-special .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.24) 100%),url('assets/solution-special-hero.webp')}
.solution-hero-inner{position:relative;z-index:2;min-height:604px;display:flex;align-items:center}
.solution-hero-copy{width:min(760px,100%);color:#fff}
.solution-hero h1{margin:0 0 20px;font-size:58px;line-height:1.12;letter-spacing:-.06em}
.solution-hero p{max-width:650px;color:#d2deec;font-size:18px}
.solution-intro{background:#fff}
.intro-grid{display:grid;grid-template-columns:1fr .92fr;gap:34px;align-items:center}
.intro-media img{width:100%;display:block;border-radius:28px;box-shadow:0 20px 42px rgba(12,40,89,.12)}
.bullet-points{display:grid;gap:14px;margin-top:28px}
.bullet-points div{display:grid;gap:6px;padding:18px 20px;border:1px solid var(--line);border-radius:18px;background:#fbfdff;box-shadow:0 10px 24px rgba(12,40,89,.04)}
.bullet-points strong{font-size:18px;letter-spacing:-.02em}
.bullet-points span{color:var(--muted)}
.solution-showcase{background:var(--surface)}
.detail-card-grid{display:grid;gap:18px}
.detail-card-grid.three{grid-template-columns:repeat(3,1fr)}
.detail-media-card{overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 18px 34px rgba(12,40,89,.07)}
.detail-media-card img{width:100%;height:260px;object-fit:cover;display:block}
.detail-body{padding:24px}
.detail-body span{display:block;margin-bottom:8px;color:var(--blue-500);font-size:12px;font-weight:900;letter-spacing:.12em}
.detail-body h3{margin:0 0 10px;font-size:26px;line-height:1.2;letter-spacing:-.04em}
.detail-body p{margin:0;color:var(--muted)}
.capabilities-section{background:#fff}
.capabilities-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:32px;align-items:start}
.capability-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.capability-list article{padding:24px;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:0 14px 28px rgba(12,40,89,.05)}
.capability-list strong{display:block;margin-bottom:12px;color:var(--blue-500);font-size:26px;line-height:1}
.capability-list h3{margin:0 0 8px;font-size:22px;letter-spacing:-.03em}
.capability-list p{margin:0;color:var(--muted)}
.process-band{background:var(--surface)}
.process-grid.alt{grid-template-columns:repeat(4,1fr)}
.process-grid.alt article{padding:28px 18px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:0 12px 24px rgba(12,40,89,.05)}
.process-grid.alt article:not(:last-child)::after{display:none}
.process-grid.alt span{width:66px;height:66px}
.thumb-card h3 a{color:inherit}
.thumb-card h3 a:hover{color:var(--blue-500)}
@media (max-width:1100px){
  .intro-grid,.capabilities-grid{grid-template-columns:1fr}
  .detail-card-grid.three{grid-template-columns:1fr 1fr}
  .process-grid.alt{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:740px){
  .solution-hero h1{font-size:38px}
  .solution-hero p{font-size:16px}
  .detail-card-grid.three,.capability-list,.process-grid.alt{grid-template-columns:1fr}
  .detail-media-card img{height:220px}
}


.solution-hero-construction .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.24) 100%),url('assets/solution-construction-hero.webp')}
.solution-hero-defense .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 40%,rgba(4,11,22,.24) 100%),url('assets/solution-defense-hero.webp')}
.solution-hero-marine .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.22) 100%),url('assets/solution-marine-hero.webp')}


.solution-hero-medbio .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 40%,rgba(4,11,22,.18) 100%),url('assets/solution-medbio-hero.webp')}
.solution-hero-industrial .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.2) 100%),url('assets/solution-industrial-hero.webp')}
.solution-hero-mobile .solution-hero-bg{background-image:linear-gradient(90deg,rgba(4,11,22,.98) 0%,rgba(4,11,22,.84) 38%,rgba(4,11,22,.22) 100%),url('assets/solution-mobile-hero.webp')}

.company-solution-links{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}


/* Catalog-applied update */
.site-logo{
  display:block;
  width:174px;
  height:auto;
  max-height:34px;
  object-fit:contain;
}
.brand{
  min-width:174px;
}
.footer-brand .site-logo{
  width:180px;
  max-height:36px;
}
.catalog-products{
  background:#f7faff;
}
.catalog-products .section-head{
  align-items:flex-start;
}
.catalog-products .section-desc{
  max-width:520px;
  margin:0;
}
.catalog-dev-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.catalog-dev-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 36px rgba(10,36,74,.07);
}
.catalog-dev-image{
  background:#eef3f9;
  border-bottom:1px solid var(--line);
}
.catalog-dev-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.catalog-dev-body{
  padding:24px;
}
.catalog-dev-body span{
  display:block;
  margin-bottom:8px;
  color:var(--blue-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}
.catalog-dev-body h3{
  margin:0 0 10px;
  font-size:23px;
  line-height:1.25;
  letter-spacing:-.04em;
}
.catalog-dev-body p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.dev-shortcuts{
  background:#07111f;
  color:#fff;
}
.dev-shortcut-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.dev-shortcut-card{
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  box-shadow:0 14px 32px rgba(0,0,0,.18);
}
.dev-shortcut-card span{
  display:block;
  color:#75d8ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.dev-shortcut-card h3{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:-.04em;
}
.dev-shortcut-card p{
  margin:0 0 16px;
  color:#d5e2f1;
  font-size:14px;
}
.dev-shortcut-card a{
  display:inline-flex;
  color:#fff;
  font-weight:900;
}
@media (max-width:1100px){
  .catalog-dev-grid{grid-template-columns:repeat(2,1fr)}
  .dev-shortcut-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:700px){
  .site-logo{width:142px}
  .brand{min-width:142px}
  .catalog-dev-grid,.dev-shortcut-grid{grid-template-columns:1fr}
  .catalog-dev-image img{height:220px}
}


/* Agricultural major products sample page */
.major-products-page{background:linear-gradient(180deg,#031020 0%,#071b36 56%,#06101e 100%);color:#fff;min-height:100vh}
.agri-major-hero{position:relative;overflow:hidden;padding:148px 0 72px;background:radial-gradient(circle at 15% 15%,rgba(32,95,255,.22),transparent 26%),linear-gradient(135deg,#031020 0%,#07214d 100%)}
.agri-major-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,11,22,.92) 0%,rgba(4,11,22,.72) 45%,rgba(4,11,22,.28) 100%);opacity:.45;pointer-events:none}
.agri-major-hero .container{position:relative;z-index:1}
.agri-major-kicker{display:inline-block;margin-bottom:18px;padding-left:16px;border-left:3px solid #2f87ff;color:#56a8ff;font-weight:800;letter-spacing:.08em}
.agri-major-hero h1{margin:0 0 14px;font-size:72px;line-height:1.05;letter-spacing:-.055em;color:#fff}
.agri-major-hero p{max-width:720px;color:#d7e5f6;font-size:20px;line-height:1.7}
.agri-major-section{padding:0 0 92px}
.agri-major-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:-8px}
.agri-product-card{display:flex;flex-direction:column;min-height:100%;overflow:hidden;border-radius:26px;border:1px solid rgba(255,255,255,.14);background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));box-shadow:0 24px 60px rgba(0,0,0,.25);backdrop-filter:blur(10px)}
.agri-product-card .thumb{aspect-ratio:4/5;overflow:hidden;background:rgba(255,255,255,.07)}
.agri-product-card .thumb img{width:100%;height:100%;object-fit:cover;display:block}
.agri-product-card .body{padding:24px 22px 24px}
.agri-product-card .eyebrow{display:block;margin-bottom:12px;color:#2294ff;font-size:12px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.agri-product-card h3{margin:0 0 16px;color:#fff;font-size:22px;line-height:1.24;letter-spacing:-.045em;min-height:56px}
.agri-product-card .line{width:32px;height:3px;border-radius:999px;background:#2f87ff;margin-bottom:18px}
.agri-product-card p{margin:0;color:#d1deee;font-size:15px;line-height:1.7;min-height:84px}
.agri-product-card .icon-link{display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:999px;margin-top:22px;border:1px solid rgba(255,255,255,.22);color:#73b8ff;font-size:24px}
.agri-summary-bar{display:flex;gap:18px;flex-wrap:wrap;margin-top:28px;padding:18px 22px;border-radius:20px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12)}
.agri-summary-bar div{flex:1 1 180px}
.agri-summary-bar strong{display:block;color:#fff;margin-bottom:8px;font-size:15px}
.agri-summary-bar span{color:#d1deee;font-size:14px;line-height:1.65}
.agri-page-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.agri-page-actions .btn{min-width:180px}
.major-products-page .site-footer{margin-top:0;background:#040b15}
.major-products-page .site-header{background:rgba(2,8,18,.82);backdrop-filter:blur(10px)}
@media (max-width:1400px){.agri-major-grid{grid-template-columns:repeat(3,1fr)}.agri-major-hero h1{font-size:62px}}
@media (max-width:1024px){.agri-major-grid{grid-template-columns:repeat(2,1fr)}.agri-major-hero h1{font-size:52px}.agri-major-hero p{font-size:18px}}
@media (max-width:640px){.agri-major-grid{grid-template-columns:1fr}.agri-major-hero{padding:132px 0 56px}.agri-major-hero h1{font-size:40px}.agri-product-card h3{min-height:0}.agri-product-card p{min-height:0}}


/* Product detail pages */
.product-detail-page{
  background:#f7faff;
  color:var(--text);
}
.product-detail-hero{
  position:relative;
  padding:148px 0 82px;
  color:#fff;
  background:
    radial-gradient(circle at 75% 18%,rgba(45,145,255,.26),transparent 30%),
    linear-gradient(135deg,#031020 0%,#071f42 62%,#031020 100%);
  overflow:hidden;
}
.product-detail-hero::before{
  content:"";
  position:absolute;
  inset:76px 0 0 auto;
  width:52%;
  background:var(--detail-bg) center/cover no-repeat;
  opacity:.26;
  mask-image:linear-gradient(90deg,transparent 0%,#000 26%,#000 100%);
}
.product-detail-hero .container{
  position:relative;
  z-index:1;
}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:28px;
  color:#a9c6e9;
  font-size:14px;
  font-weight:700;
}
.breadcrumb a{color:#dbeeff}
.breadcrumb span{color:#5c87b9}
.product-detail-hero .eyebrow{
  display:inline-block;
  padding-left:16px;
  border-left:3px solid #2f87ff;
}
.product-detail-hero h1{
  margin:0 0 18px;
  max-width:800px;
  color:#fff;
  font-size:58px;
  line-height:1.12;
  letter-spacing:-.06em;
}
.product-detail-hero p{
  max-width:720px;
  color:#d5e2f1;
  font-size:18px;
  line-height:1.72;
}
.detail-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}
.product-detail-main{
  margin-top:-38px;
  padding-bottom:90px;
  position:relative;
  z-index:2;
}
.detail-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.detail-image-card,
.detail-info-card,
.detail-panel{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.08);
  overflow:hidden;
}
.detail-image-card img{
  width:100%;
  display:block;
}
.detail-image-caption{
  padding:18px 22px;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid var(--line);
  background:#fbfdff;
}
.detail-info-card{
  padding:32px;
}
.detail-info-card h2{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.18;
  letter-spacing:-.05em;
}
.detail-info-card p{
  color:var(--muted);
}
.spec-list{
  display:grid;
  gap:12px;
  margin:24px 0 0;
}
.spec-list div{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:16px;
  padding:14px 0;
  border-top:1px solid #edf2f8;
}
.spec-list strong{
  color:#123157;
}
.spec-list span{
  color:#52637a;
}
.detail-panels{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}
.detail-panel{
  padding:26px;
}
.detail-panel span{
  display:block;
  margin-bottom:12px;
  color:var(--blue-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}
.detail-panel h3{
  margin:0 0 10px;
  font-size:24px;
  letter-spacing:-.04em;
}
.detail-panel p{
  margin:0;
  color:var(--muted);
}
.detail-flow{
  margin-top:28px;
  border-radius:28px;
  padding:34px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 20%,rgba(52,199,255,.24),transparent 34%),
    linear-gradient(135deg,#07111f,#0d2c50);
}
.detail-flow h2{
  margin:0 0 22px;
  font-size:32px;
  letter-spacing:-.05em;
}
.detail-flow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.detail-flow-grid div{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.05);
}
.detail-flow-grid strong{
  display:block;
  color:#79daff;
  font-size:24px;
  margin-bottom:8px;
}
.detail-flow-grid span{
  color:#d9e7f5;
  font-weight:700;
}
.related-products{
  margin-top:28px;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.related-card{
  display:block;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 12px 26px rgba(12,40,89,.05);
}
.related-card img{
  width:100%;
  height:120px;
  object-fit:cover;
  display:block;
}
.related-card span{
  display:block;
  padding:14px;
  color:#1b3554;
  font-size:14px;
  font-weight:900;
  line-height:1.35;
}
@media (max-width:1100px){
  .detail-layout{grid-template-columns:1fr}
  .detail-panels{grid-template-columns:1fr 1fr}
  .detail-flow-grid{grid-template-columns:repeat(2,1fr)}
  .related-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:680px){
  .product-detail-hero h1{font-size:38px}
  .product-detail-hero::before{width:100%;opacity:.16}
  .detail-info-card{padding:24px}
  .detail-panels,.detail-flow-grid,.related-grid{grid-template-columns:1fr}
  .spec-list div{grid-template-columns:1fr;gap:4px}
}

.agri-product-card{text-decoration:none;color:inherit}
.agri-product-card:hover{transform:translateY(-4px);transition:.25s ease;border-color:rgba(47,135,255,.55)}


/* General product category detail pages */
.category-detail-page{
  background:#f7faff;
}
.category-hero{
  position:relative;
  padding:148px 0 90px;
  color:#fff;
  background:
    radial-gradient(circle at 76% 24%,rgba(10,124,255,.28),transparent 32%),
    linear-gradient(135deg,#031020 0%,#082145 62%,#031020 100%);
  overflow:hidden;
}
.category-hero::before{
  content:"";
  position:absolute;
  right:6%;
  top:132px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:
    radial-gradient(circle at 34% 28%,rgba(255,255,255,.9),rgba(255,255,255,.28) 42%,rgba(10,124,255,.14) 70%,transparent 72%);
  opacity:.14;
  filter:blur(2px);
}
.category-hero .container{
  position:relative;
  z-index:1;
}
.category-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,560px);
  gap:42px;
  align-items:center;
}
.category-hero .breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:26px;
  color:#a9c6e9;
  font-size:14px;
  font-weight:700;
}
.category-hero .breadcrumb a{color:#dbeeff}
.category-hero .breadcrumb span{color:#5c87b9}
.category-hero h1{
  margin:0 0 18px;
  font-size:64px;
  line-height:1.1;
  letter-spacing:-.06em;
}
.category-hero p{
  max-width:720px;
  color:#d5e2f1;
  font-size:18px;
  line-height:1.72;
}
.category-hero-visual{
  position:relative;
  min-height:360px;
  border-radius:34px;
  background:
    radial-gradient(circle at 48% 38%,rgba(52,199,255,.26),transparent 40%),
    linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
  display:grid;
  place-items:center;
  backdrop-filter:blur(14px);
}
.category-hero-visual .catalog-visual{
  width:250px;
  height:250px;
  border-radius:28px;
  background:
    radial-gradient(circle at 70% 35%,rgba(10,124,255,.24),transparent 30%),
    linear-gradient(135deg,#edf4fc,#ffffff 46%,#dce6f3);
  transform:scale(1.25);
  box-shadow:0 26px 70px rgba(0,0,0,.28);
}
.category-detail-main{
  padding:76px 0 96px;
}
.category-overview{
  display:grid;
  grid-template-columns:1fr .88fr;
  gap:28px;
  align-items:start;
}
.category-copy,
.category-spec-box,
.category-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.category-copy{
  padding:36px;
}
.category-copy h2{
  margin:0 0 16px;
  font-size:38px;
  line-height:1.18;
  letter-spacing:-.05em;
}
.category-copy p{
  color:var(--muted);
}
.category-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:26px;
}
.category-points div{
  border:1px solid #e3edf8;
  border-radius:18px;
  padding:18px;
  background:#fbfdff;
}
.category-points strong{
  display:block;
  margin-bottom:8px;
  color:var(--blue-500);
  font-size:13px;
  letter-spacing:.08em;
}
.category-points span{
  color:#33445a;
  font-weight:800;
}
.category-spec-box{
  padding:32px;
}
.category-spec-box h3{
  margin:0 0 18px;
  font-size:28px;
  letter-spacing:-.04em;
}
.category-spec-list{
  display:grid;
  gap:0;
}
.category-spec-list div{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:14px;
  padding:14px 0;
  border-top:1px solid #edf2f8;
}
.category-spec-list div:first-child{border-top:0}
.category-spec-list strong{color:#123157}
.category-spec-list span{color:#52637a}
.category-section-title{
  margin:72px 0 24px;
}
.category-section-title h2{
  margin:0;
  font-size:38px;
  letter-spacing:-.05em;
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.category-card{
  padding:28px;
}
.category-card span{
  display:block;
  margin-bottom:12px;
  color:var(--blue-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}
.category-card h3{
  margin:0 0 10px;
  font-size:24px;
  letter-spacing:-.04em;
}
.category-card p{
  margin:0;
  color:var(--muted);
}
.category-dark-panel{
  margin-top:28px;
  border-radius:30px;
  padding:36px;
  color:#fff;
  background:
    radial-gradient(circle at 84% 18%,rgba(52,199,255,.22),transparent 34%),
    linear-gradient(135deg,#07111f,#0d2c50);
  box-shadow:0 24px 60px rgba(4,20,44,.16);
}
.category-dark-panel h2{
  margin:0 0 20px;
  font-size:34px;
  letter-spacing:-.05em;
}
.category-process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.category-process div{
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:20px;
  background:rgba(255,255,255,.05);
}
.category-process strong{
  display:block;
  color:#79daff;
  font-size:24px;
  margin-bottom:8px;
}
.category-process span{
  color:#d9e7f5;
  font-weight:800;
}
.product-detail-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  color:var(--blue-500);
  font-weight:900;
}
.catalog-card .product-detail-link{
  font-size:14px;
}
@media (max-width:1100px){
  .category-hero-grid,.category-overview{grid-template-columns:1fr}
  .category-hero-visual{max-width:520px}
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .category-process{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .category-hero h1{font-size:40px}
  .category-hero{padding:132px 0 64px}
  .category-points,.category-grid,.category-process{grid-template-columns:1fr}
  .category-copy,.category-spec-box,.category-dark-panel{padding:24px}
  .category-spec-list div{grid-template-columns:1fr;gap:4px}
}


/* Company page - new-wave.kr content applied */
.company-page{
  background:#f7faff;
}
.company-hero-v2{
  position:relative;
  min-height:760px;
  padding:150px 0 100px;
  color:#fff;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(3,13,27,.95) 0%,rgba(3,13,27,.84) 48%,rgba(3,13,27,.50) 100%),
    url('assets/company-hero.webp') right center/cover no-repeat,
    linear-gradient(135deg,#061226,#0b2b58);
}
.company-hero-v2::after{
  content:"";
  position:absolute;
  inset:auto -10% -34% auto;
  width:58%;
  aspect-ratio:1/1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(56,166,255,.18),transparent 62%);
}
.company-hero-v2 .container{
  position:relative;
  z-index:2;
}
.company-hero-v2 .eyebrow{
  display:inline-block;
  padding-left:16px;
  border-left:3px solid #2f87ff;
}
.company-hero-v2 h1{
  margin:18px 0 20px;
  max-width:860px;
  color:#fff;
  font-size:72px;
  line-height:1.06;
  letter-spacing:-.065em;
}
.company-hero-v2 .hero-lead{
  max-width:760px;
  color:#d9e8f8;
  font-size:20px;
  line-height:1.8;
}
.company-hero-meta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:42px;
  max-width:980px;
}
.company-hero-meta div{
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:20px;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
}
.company-hero-meta strong{
  display:block;
  margin-bottom:8px;
  color:#7dd9ff;
  font-size:13px;
  letter-spacing:.08em;
}
.company-hero-meta span{
  color:#fff;
  font-weight:900;
  line-height:1.45;
}
.company-section{
  padding:92px 0;
}
.company-section.alt{
  background:#fff;
}
.company-section.dark{
  color:#fff;
  background:
    radial-gradient(circle at 88% 18%,rgba(55,170,255,.2),transparent 36%),
    linear-gradient(135deg,#06101e,#0b2b58);
}
.company-section .section-head{
  align-items:flex-end;
}
.company-greeting-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}
.greeting-card,
.company-info-card,
.philosophy-card,
.cert-card,
.facility-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.greeting-card{
  padding:42px;
}
.greeting-card h2{
  margin:0 0 22px;
  font-size:42px;
  letter-spacing:-.055em;
}
.greeting-card p{
  color:#4b5c72;
  font-size:17px;
  line-height:1.9;
}
.greeting-quote{
  margin:28px 0;
  padding:24px;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(135deg,#0b2b58,#1466c3);
  font-size:24px;
  font-weight:900;
  letter-spacing:-.04em;
}
.company-info-card{
  overflow:hidden;
}
.company-info-card .image{
  min-height:260px;
  background:url('assets/hero-main.webp') center/cover no-repeat;
}
.company-info-card .info-body{
  padding:28px;
}
.info-list{
  display:grid;
  gap:0;
}
.info-list div{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  padding:14px 0;
  border-top:1px solid #edf2f8;
}
.info-list div:first-child{border-top:0}
.info-list strong{color:#17385f}
.info-list span{color:#52637a}
.business-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.business-card{
  border-radius:28px;
  padding:34px !important;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.business-card h3{
  margin:0 0 22px;
  font-size:30px;
  letter-spacing:-.05em;
  margin-top:0 !important;
}
.business-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.business-list span{
  display:block;
  padding:14px 16px;
  border-radius:14px;
  color:#193a61;
  background:#f2f7fd;
  font-weight:800;
}
.history-timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.history-item{
  position:relative;
  border:1px solid rgba(255,255,255,.13);
  border-radius:24px;
  padding:26px;
  background:rgba(255,255,255,.06);
}
.history-item strong{
  display:block;
  margin-bottom:14px;
  color:#78d7ff;
  font-size:28px;
  letter-spacing:-.04em;
}
.history-item ul{
  margin:0;
  padding-left:18px;
  color:#dceaf8;
  line-height:1.8;
}
.philosophy-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.philosophy-card{
  padding:26px 20px;
  text-align:center;
}
.philosophy-card .icon{
  width:72px;
  height:72px;
  margin:0 auto 18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#174b9b,#71d4ff);
  font-size:28px;
  font-weight:900;
}
.philosophy-card h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.04em;
}
.philosophy-card p{
  margin:0;
  color:#64748b;
  font-size:15px;
}
.cert-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.cert-card{
  padding:28px;
}
.cert-card span{
  display:block;
  color:var(--blue-500);
  font-weight:900;
  font-size:13px;
  letter-spacing:.1em;
  margin-bottom:12px;
}
.cert-card h3{
  margin:0 0 14px;
  font-size:25px;
  letter-spacing:-.04em;
}
.cert-card p{
  color:#56677d;
  margin:0;
  line-height:1.7;
}
.process-company{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:12px;
}
.process-company div{
  position:relative;
  border-radius:20px;
  padding:22px 14px;
  text-align:center;
  color:#fff;
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
}
.process-company strong{
  display:block;
  color:#79daff;
  font-size:20px;
  margin-bottom:10px;
}
.process-company span{
  font-weight:800;
  line-height:1.5;
}
.tools-table{
  margin-top:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius:22px;
}
.tools-table table{
  width:100%;
  border-collapse:collapse;
}
.tools-table th,
.tools-table td{
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.tools-table th{
  text-align:left;
  color:#7dd9ff;
  background:rgba(255,255,255,.06);
}
.tools-table td{
  color:#e7f1fa;
}
.facility-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.facility-card{
  overflow:hidden;
}
.facility-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.facility-card div{
  padding:22px;
}
.facility-card h3{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:-.04em;
}
.facility-card p{
  margin:0;
  color:#64748b;
}
.quality-panel{
  margin-top:28px;
  border-radius:30px;
  padding:36px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 18%,rgba(77,210,255,.22),transparent 34%),
    linear-gradient(135deg,#07111f,#0d2c50);
}
.quality-panel h3{
  margin:0 0 14px;
  font-size:32px;
  letter-spacing:-.05em;
}
.quality-panel p{
  max-width:860px;
  color:#d9e7f5;
  line-height:1.8;
}
.competitive-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.competitive-card{
  border-radius:24px;
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
}
.competitive-card h3{
  margin:0 0 12px;
  font-size:23px;
  letter-spacing:-.04em;
}
.competitive-card p{
  color:#5d6d82;
  margin:0;
}
@media (max-width:1200px){
  .company-hero-meta,.cert-grid,.facility-grid,.competitive-grid{grid-template-columns:repeat(2,1fr)}
  .history-timeline{grid-template-columns:repeat(2,1fr)}
  .philosophy-grid{grid-template-columns:repeat(3,1fr)}
  .process-company{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:900px){
  .company-hero-v2 h1{font-size:50px}
  .company-greeting-grid,.business-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .company-hero-v2{padding:130px 0 70px;min-height:auto}
  .company-hero-v2 h1{font-size:38px}
  .company-hero-meta,.history-timeline,.philosophy-grid,.cert-grid,.facility-grid,.competitive-grid,.process-company{grid-template-columns:1fr}
  .greeting-card,.business-card,.quality-panel{padding:26px}
  .business-list{grid-template-columns:1fr}
  .info-list div{grid-template-columns:1fr;gap:4px}
}


/* Patent and certification section */
.ip-cert-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:start;
}
.ip-panel{
  border:1px solid var(--line);
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
  overflow:hidden;
}
.ip-panel-head{
  padding:30px 32px;
  color:#fff;
  background:
    radial-gradient(circle at 86% 18%,rgba(122,218,255,.26),transparent 34%),
    linear-gradient(135deg,#07111f,#0d2c50);
}
.ip-panel-head span{
  display:block;
  margin-bottom:10px;
  color:#7dd9ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}
.ip-panel-head h3{
  margin:0;
  color:#fff;
  font-size:32px;
  letter-spacing:-.05em;
}
.ip-list{
  display:grid;
  gap:0;
}
.ip-list article{
  display:grid;
  grid-template-columns:94px 1fr;
  gap:18px;
  padding:22px 30px;
  border-top:1px solid #edf2f8;
}
.ip-list article:first-child{
  border-top:0;
}
.ip-list strong{
  display:inline-flex;
  width:74px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#0b4fa9;
  background:#edf6ff;
  font-size:14px;
  font-weight:900;
}
.ip-list h4{
  margin:0 0 8px;
  color:#17385f;
  font-size:19px;
  letter-spacing:-.03em;
}
.ip-list p{
  margin:0;
  color:#637389;
  line-height:1.65;
}
.cert-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  padding:28px;
}
.cert-mini{
  border:1px solid #e5eef8;
  border-radius:20px;
  padding:20px;
  background:#fbfdff;
}
.cert-mini span{
  display:block;
  margin-bottom:10px;
  color:var(--blue-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}
.cert-mini h4{
  margin:0 0 8px;
  font-size:20px;
  letter-spacing:-.04em;
}
.cert-mini p{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.6;
}
.company-visual-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  color:#dbeeff;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
@media (max-width:1000px){
  .ip-cert-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .ip-list article{grid-template-columns:1fr;gap:10px;padding:20px}
  .cert-mini-grid{grid-template-columns:1fr;padding:20px}
}

/* Clean logo and integrated product catalogue */
.site-logo{
  width:220px;
  height:auto;
  max-height:58px;
  object-fit:contain;
}
.footer-brand .site-logo{
  width:210px;
}
.product-remote-card .catalog-visual,
.product-line-card .catalog-visual{
  background:#f3f6fa;
}
.product-remote-card img,
.product-line-card img,
.product-category-hero-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 24px 48px rgba(0,0,0,.24));
  border-radius: var(--radius-xl);
}
.product-remote-card .catalog-visual{
  padding:18px;
  background:linear-gradient(135deg,#f7f9fc,#edf2f8);
}
.product-category-hero-img{
  width:100%;
  height:auto;
  padding:0;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-lineup-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.product-line-card{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.product-line-card .line-img{
  height:220px;
  padding:20px;
  background:#f4f7fb;
}
.product-line-card .line-img img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.product-line-card .line-body{
  padding:24px;
}
.product-line-card span{
  display:block;
  color:var(--blue-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.product-line-card h3{
  margin:0 0 10px;
  font-size:24px;
  letter-spacing:-.04em;
}
.product-line-card p{
  margin:0;
  color:#617186;
}
.catalog-dev-card{
  display:block;
  color:inherit;
  text-decoration:none;
}
.catalog-dev-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 62px rgba(12,40,89,.13);
}
.catalog-dev-image{
  background:linear-gradient(135deg,#f7f9fc,#edf2f8);
}
.catalog-dev-image img{
  object-fit:contain !important;
  padding:10px;
}
.catalog-detail-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.catalog-detail-image{
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 20px 42px rgba(12,40,89,.08);
  padding:28px;
}
.catalog-detail-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}
.catalog-detail-copy{
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 20px 42px rgba(12,40,89,.08);
  padding:34px;
}
.catalog-detail-copy h2{
  margin:0 0 18px;
  font-size:38px;
  letter-spacing:-.05em;
}
.catalog-detail-copy p{
  color:#52637a;
  line-height:1.8;
}
.catalog-detail-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}
.catalog-detail-points article{
  border:1px solid #e5eef8;
  border-radius:20px;
  padding:22px;
  background:#fbfdff;
}
.catalog-detail-points span{
  color:var(--blue-500);
  font-weight:900;
  font-size:12px;
  letter-spacing:.12em;
}
.catalog-detail-points h3{
  margin:10px 0 8px;
  font-size:22px;
}
.catalog-detail-points p{
  margin:0;
  color:#66778b;
}
@media (max-width:1000px){
  .product-lineup-grid,.catalog-detail-layout{grid-template-columns:1fr}
}
@media (max-width:700px){
  .product-lineup-grid,.catalog-detail-points{grid-template-columns:1fr}
  .site-logo,.footer-brand .site-logo{width:180px}
}


/* 2026-06 board pages, GNB update, company trust-tone refinement */
.business-card.trust-tone{
  position:relative;
  overflow:hidden;
  min-height:390px;
  border:1px solid #dbe7f3;
  background:
    linear-gradient(155deg,#ffffff 0%,#f4f8fc 48%,#e8eef6 100%);
  box-shadow:0 24px 56px rgba(14,39,72,.10);
}
.business-card.trust-tone::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 86% 16%,rgba(28,111,202,.12),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,0));
  pointer-events:none;
}
.business-card.trust-tone h3,
.business-card.trust-tone .business-list{
  position:relative;
  z-index:1;
}
.business-card.trust-tone h3{
  color:#0b2748;
  font-size:28px;
  border-bottom:1px solid #dce6f1;
  padding-bottom:18px;
  margin-top:0 !important;
  margin-bottom:24px;
}
.business-card.trust-tone .business-list span{
  background:#fff;
  color:#12345a;
  border:1px solid #dce7f3;
  box-shadow:0 8px 20px rgba(12,40,89,.05);
}
.business-card.trust-service{
  margin-top:0 !important;
}
.business-grid.align-top{
  align-items:start;
}

.board-hero{
  position:relative;
  padding:150px 0 82px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 18%,rgba(31,139,255,.28),transparent 34%),
    linear-gradient(135deg,#061226,#0b2b58 70%,#061226);
  overflow:hidden;
}
.board-hero::after{
  content:"";
  position:absolute;
  right:-12%;
  bottom:-54%;
  width:60%;
  aspect-ratio:1/1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(98,209,255,.18),transparent 64%);
}
.board-hero .container{
  position:relative;
  z-index:1;
}
.board-hero h1{
  margin:14px 0 18px;
  color:#fff;
  font-size:58px;
  line-height:1.12;
  letter-spacing:-.06em;
}
.board-hero p{
  max-width:760px;
  color:#d8e8f7;
  font-size:18px;
  line-height:1.75;
}
.board-layout{
  padding:72px 0 96px;
  background:#f7faff;
}
.board-toolbar{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  margin-bottom:22px;
}
.board-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.board-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 18px;
  border-radius:999px;
  border:1px solid #d7e4f2;
  background:#fff;
  color:#29405c;
  font-weight:900;
}
.board-tab.active{
  color:#fff;
  border-color:#1177e8;
  background:linear-gradient(135deg,#1677ff,#1fa7ff);
}
.board-search{
  display:flex;
  gap:10px;
}
.board-search input,
.board-form input,
.board-form select,
.board-form textarea{
  width:100%;
  border:1px solid #d7e4f2;
  border-radius:14px;
  padding:14px 16px;
  color:#10253f;
  background:#fff;
  font:inherit;
  outline:none;
}
.board-search input{
  min-width:260px;
}
.board-table-wrap{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.board-table{
  width:100%;
  border-collapse:collapse;
}
.board-table th,
.board-table td{
  padding:19px 20px;
  border-bottom:1px solid #edf2f8;
  text-align:left;
}
.board-table th{
  color:#17385f;
  font-size:14px;
  background:#f4f8fd;
}
.board-table td{
  color:#4f6076;
}
.board-table tr:last-child td{
  border-bottom:0;
}
.board-table .post-title{
  color:#071a33;
  font-weight:900;
  letter-spacing:-.02em;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#eef6ff;
  color:#1177e8;
  font-size:12px;
  font-weight:900;
}
.badge.gray{
  color:#52637a;
  background:#eef2f6;
}
.badge.notice{
  color:#fff;
  background:#0e5ec9;
}
.board-actions{
  display:flex;
  gap:10px;
  margin-top:22px;
  justify-content:flex-end;
}
.board-form-card,
.board-view-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
  padding:34px;
}
.board-form{
  display:grid;
  gap:18px;
}
.form-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.board-form label{
  display:grid;
  gap:8px;
  color:#17385f;
  font-weight:900;
}
.board-form textarea{
  min-height:260px;
  resize:vertical;
  line-height:1.7;
}
.file-drop{
  border:1px dashed #b9cce2;
  border-radius:18px;
  background:#f8fbff;
  padding:28px;
  color:#617186;
  text-align:center;
}
.board-view-head{
  padding-bottom:24px;
  border-bottom:1px solid #edf2f8;
}
.board-view-head h2{
  margin:12px 0 14px;
  font-size:38px;
  letter-spacing:-.05em;
}
.board-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:#6b7c91;
}
.board-view-body{
  padding:30px 0;
  color:#3d4f66;
  line-height:1.9;
  font-size:17px;
}
.viewer-box{
  margin-top:26px;
  border:1px solid #dfe8f3;
  border-radius:22px;
  overflow:hidden;
  background:#f7faff;
}
.viewer-toolbar{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:14px 18px;
  background:#eef5fc;
  border-bottom:1px solid #dfe8f3;
}
.viewer-canvas{
  min-height:360px;
  padding:34px;
  background:#fff;
}
.viewer-page{
  min-height:280px;
  border:1px solid #e2eaf4;
  border-radius:18px;
  background:
    linear-gradient(135deg,rgba(22,119,255,.04),rgba(255,255,255,0) 48%),
    #fff;
  padding:32px;
}
.viewer-page h3{
  margin:0 0 14px;
  font-size:26px;
  letter-spacing:-.04em;
}
.viewer-page p{
  color:#5f7085;
  line-height:1.8;
}
.home-notice-section{
  padding:70px 0;
  background:#fff;
}
.home-notice-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.home-notice-card{
  display:block;
  padding:26px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 38px rgba(12,40,89,.06);
  color:inherit;
}
.home-notice-card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 58px rgba(12,40,89,.1);
}
.home-notice-card h3{
  margin:12px 0 10px;
  font-size:24px;
  letter-spacing:-.04em;
}
.home-notice-card p{
  color:#617186;
}
@media (max-width:900px){
  .board-toolbar,.board-search{flex-direction:column;align-items:stretch}
  .board-table{min-width:760px}
  .form-grid-2,.home-notice-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .board-hero h1{font-size:40px}
  .board-form-card,.board-view-card{padding:24px}
}


/* 2026-06-24 refinement: logo fix, product hero upgrade, business card top alignment */
.site-header .brand{min-width:0;flex:0 0 auto}
.site-logo{width:190px !important;max-height:42px !important;height:auto;display:block;object-fit:contain}
.footer-brand .site-logo{width:190px !important;max-height:42px !important}

.product-hero.product-hero-refined{
  position:relative;
  padding:132px 0 92px;
  background:
    radial-gradient(circle at 82% 24%, rgba(23,122,255,.24), transparent 23%),
    linear-gradient(135deg,#020914 0%,#041327 32%,#072044 58%,#041327 100%);
  overflow:hidden;
}
.product-hero.product-hero-refined::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 34%, rgba(98,185,255,.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 38%, rgba(0,0,0,.18));
  pointer-events:none;
}
.product-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(520px, 1.05fr);
  gap:48px;
  align-items:center;
}
.product-hero-copy h1{
  margin:0 0 22px;
  color:#f5fbff;
  font-size:62px;
  line-height:1.08;
  letter-spacing:-.065em;
}
.product-hero-copy > p{
  max-width:630px;
  margin:0 0 24px;
  color:#d7e4f2;
  font-size:18px;
  line-height:1.8;
}
.product-hero-points{display:flex;flex-wrap:wrap;gap:10px 12px;margin-bottom:30px}
.product-hero-points span{
  display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;
  border:1px solid rgba(146,192,255,.26);background:rgba(255,255,255,.06);color:#ebf4ff;
  font-weight:800;font-size:13px;letter-spacing:.01em;backdrop-filter:blur(8px)
}
.product-hero-card{
  position:relative;
  min-height:560px;
  border:1px solid rgba(136,181,255,.18);
  border-radius:34px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.03));
  box-shadow:0 30px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}
.product-hero-card img{width:100%;height:100%;display:block;object-fit:cover}
.product-hero-card::after{
  content:"";position:absolute;inset:auto 0 0 0;height:34%;
  background:linear-gradient(180deg, rgba(4,14,28,0), rgba(4,14,28,.80));
}
.product-hero-overlay-card{
  position:absolute;left:26px;bottom:24px;z-index:1;
  max-width:280px;padding:22px 22px 20px;border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(10,26,52,.76), rgba(6,18,39,.88));
  box-shadow:0 18px 46px rgba(0,0,0,.28);backdrop-filter:blur(14px)
}
.product-hero-stat span{display:block;color:#7ed4ff;font-size:12px;font-weight:900;letter-spacing:.16em}
.product-hero-stat strong{display:block;margin:10px 0 8px;color:#fff;font-size:62px;line-height:1;letter-spacing:-.06em}
.product-hero-stat p{margin:0;color:#d8e6f4;font-size:14px;line-height:1.65}

.company-section .business-grid.align-top{grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch}
.company-section .business-grid.align-top .business-card{align-self:stretch;margin-top:0 !important;min-height:360px;padding-top:34px}
.company-section .business-grid.align-top .business-card h3{min-height:52px;display:flex;align-items:flex-end}
.company-section .business-grid.align-top .business-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.company-section .business-grid.align-top .business-list span{min-height:68px;display:flex;align-items:center}

@media (max-width: 1180px){
  .product-hero-grid{grid-template-columns:1fr;gap:28px}
  .product-hero-card{min-height:500px}
}
@media (max-width: 768px){
  .site-logo{width:156px !important;max-height:34px !important}
  .product-hero.product-hero-refined{padding:118px 0 76px}
  .product-hero-copy h1{font-size:42px}
  .product-hero-copy > p{font-size:16px}
  .product-hero-card{min-height:360px;border-radius:26px}
  .product-hero-overlay-card{left:18px;right:18px;max-width:none;bottom:18px}
  .product-hero-stat strong{font-size:46px}
  .company-section .business-grid.align-top{grid-template-columns:1fr}
  .company-section .business-grid.align-top .business-list{grid-template-columns:1fr}
}


/* Specification image section */
.spec-image-section{
  margin-top:72px;
}
.spec-image-section .category-section-title{
  margin:0 0 24px;
}
.spec-image-intro{
  max-width:860px;
  margin:0 0 24px;
  color:#52637a;
  font-size:17px;
  line-height:1.8;
}
.spec-image-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.spec-image-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 20px 42px rgba(12,40,89,.07);
}
.spec-image-card-header{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  padding:24px 26px;
  border-bottom:1px solid #edf2f8;
  background:linear-gradient(135deg,#fbfdff,#f3f8ff);
}
.spec-image-card-header span{
  display:block;
  margin-bottom:8px;
  color:var(--blue-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}
.spec-image-card-header h3{
  margin:0;
  font-size:24px;
  letter-spacing:-.045em;
}
.spec-image-card-header a{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  color:#0b4fa9;
  background:#eaf4ff;
  font-size:13px;
  font-weight:900;
}
.spec-image-figure{
  padding:24px;
  background:#fff;
}
.spec-image-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  border:1px solid #e5edf6;
  background:#fff;
}
.spec-image-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  color:#33445a;
  background:#f7faff;
  border:1px solid #e2edf8;
}
.spec-quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 28px;
}
.spec-quick-links a{
  display:inline-flex;
  padding:9px 13px;
  border:1px solid #d9e7f5;
  border-radius:999px;
  color:#23425f;
  background:#fff;
  font-size:13px;
  font-weight:800;
}
@media (max-width:900px){
  .spec-image-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .spec-image-card-header{display:block}
  .spec-image-card-header a{margin-top:12px}
  .spec-image-figure{padding:16px}
}

/* Major product detail hero refinement */
.catalog-visual-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(27,128,255,.22), transparent 26%),
    linear-gradient(135deg,#06101f 0%,#0b2b58 54%,#06101f 100%);
}
.catalog-visual-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,11,24,.25), rgba(3,11,24,0) 44%),
    radial-gradient(circle at 86% 70%, rgba(72,198,255,.12), transparent 26%);
  pointer-events:none;
}
.catalog-visual-hero .container{
  position:relative;
  z-index:1;
}
.catalog-visual-hero .product-category-hero-img{
  width:100%;
  height:auto;
  padding:0;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none;
  display:flex;
  align-items:center;
  justify-content:center;
}
.catalog-visual-hero .product-category-hero-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(0deg, rgba(3,11,24,.18), transparent 50%);
  pointer-events:none;
}
.catalog-visual-hero .product-category-hero-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 24px 48px rgba(0,0,0,.24));
  border-radius: var(--radius-xl);
}
@media (max-width:900px){
  .catalog-visual-hero .product-category-hero-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 24px 48px rgba(0,0,0,.24));
  border-radius: var(--radius-xl);
}
}


/* Board hero image refinement - full brand-blended hero layout */
.board-hero.board-hero-resource,
.board-hero.board-hero-notice{
  position:relative;
  min-height:640px;
  padding:150px 0 86px;
  color:#fff;
  overflow:hidden;
  isolation:isolate;
  background:#030b16;
}

/* Shared background image treatment: full hero, right-weighted, naturally blended */
.board-hero.board-hero-resource::before,
.board-hero.board-hero-notice::before{
  content:"";
  position:absolute;
  inset:76px 0 0 0;
  background-image:
    linear-gradient(90deg,
      rgba(3,10,20,.99) 0%,
      rgba(3,10,20,.94) 28%,
      rgba(3,10,20,.74) 46%,
      rgba(3,10,20,.34) 68%,
      rgba(3,10,20,.18) 100%),
    var(--board-hero-image);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center right;
  pointer-events:none;
  z-index:0;
}

/* Shared cinematic blue glow */
.board-hero.board-hero-resource::after,
.board-hero.board-hero-notice::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 74% 42%,rgba(0,124,255,.22),transparent 31%),
    linear-gradient(180deg,transparent 68%,rgba(3,10,20,.72));
  pointer-events:none;
  z-index:1;
}

.board-hero.board-hero-resource .container,
.board-hero.board-hero-notice .container{
  position:relative;
  z-index:2;
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.board-hero.board-hero-resource h1,
.board-hero.board-hero-notice h1{
  max-width:620px;
  margin:14px 0 18px;
  color:#fff;
  font-size:58px;
  line-height:1.12;
  letter-spacing:-.06em;
}

.board-hero.board-hero-resource p,
.board-hero.board-hero-notice p{
  max-width:650px;
  color:#d8e8f7;
  font-size:18px;
  line-height:1.75;
}

.board-hero.board-hero-resource .hero-actions,
.board-hero.board-hero-notice .hero-actions{
  margin-top:24px;
  margin-bottom:0;
}

/* Resources: technical archive / engineering documentation mood */
.board-hero.board-hero-resource{
  --board-hero-image:url('assets/board-heroes/resources-hero.jpg');
}
.board-hero.board-hero-resource::before{
  background-image:
    linear-gradient(90deg,
      rgba(3,10,20,.99) 0%,
      rgba(3,10,20,.94) 26%,
      rgba(3,10,20,.73) 45%,
      rgba(3,10,20,.30) 67%,
      rgba(3,10,20,.12) 100%),
    var(--board-hero-image);
  background-position:center right;
}
.board-hero.board-hero-resource::after{
  background:
    radial-gradient(circle at 78% 42%,rgba(0,164,255,.25),transparent 30%),
    radial-gradient(circle at 54% 18%,rgba(58,190,255,.10),transparent 22%),
    linear-gradient(180deg,transparent 68%,rgba(3,10,20,.76));
}

/* Notices: official corporate announcement mood */
.board-hero.board-hero-notice{
  --board-hero-image:url('assets/board-heroes/notices-hero.jpg');
}
.board-hero.board-hero-notice::before{
  background-image:
    linear-gradient(90deg,
      rgba(3,10,20,1) 0%,
      rgba(3,10,20,.95) 30%,
      rgba(3,10,20,.76) 49%,
      rgba(3,10,20,.38) 70%,
      rgba(3,10,20,.16) 100%),
    var(--board-hero-image);
  background-position:center right;
  filter:saturate(.96) contrast(1.03);
}
.board-hero.board-hero-notice::after{
  background:
    radial-gradient(circle at 80% 38%,rgba(94,168,255,.20),transparent 30%),
    radial-gradient(circle at 68% 64%,rgba(255,255,255,.06),transparent 23%),
    linear-gradient(180deg,transparent 68%,rgba(3,10,20,.74));
}

@media (max-width:1100px){
  .board-hero.board-hero-resource,
  .board-hero.board-hero-notice{
    min-height:560px;
    padding:136px 0 72px;
  }
  .board-hero.board-hero-resource .container,
  .board-hero.board-hero-notice .container{
    min-height:360px;
  }
  .board-hero.board-hero-resource::before,
  .board-hero.board-hero-notice::before{
    background-position:center right -120px;
  }
}
@media (max-width:900px){
  .board-hero.board-hero-resource,
  .board-hero.board-hero-notice{
    min-height:auto;
    padding:124px 0 64px;
  }
  .board-hero.board-hero-resource .container,
  .board-hero.board-hero-notice .container{
    min-height:auto;
  }
  .board-hero.board-hero-resource::before,
  .board-hero.board-hero-notice::before{
    inset:76px 0 0 0;
    background-image:
      linear-gradient(180deg,
        rgba(3,10,20,.97) 0%,
        rgba(3,10,20,.89) 52%,
        rgba(3,10,20,.96) 100%),
      var(--board-hero-image);
    background-position:center;
  }
  .board-hero.board-hero-resource h1,
  .board-hero.board-hero-notice h1{
    font-size:42px;
  }
  .board-hero.board-hero-resource p,
  .board-hero.board-hero-notice p{
    font-size:16px;
  }
}


/* 2026-06 refined major-product hero image presentation */
.category-hero-grid{
  align-items:center;
}
.category-hero .detail-hero-actions{
  margin-top:30px;
}
@media (max-width: 1080px){
  .category-hero-grid{
    grid-template-columns:1fr;
  }
  .product-category-hero-img{
    max-width:720px;
    margin:12px auto 0;
  }
}


/* 2026-06 revised catalog hero blend layout from user-provided reference */
.catalog-visual-hero.catalog-visual-hero--blend{
  position:relative;
  overflow:hidden;
  min-height:660px;
  padding:138px 0 78px;
  background:
    radial-gradient(circle at 78% 36%, rgba(28,132,255,.16), transparent 18%),
    radial-gradient(circle at 86% 46%, rgba(26,214,255,.18), transparent 20%),
    linear-gradient(90deg, #031020 0%, #06204a 48%, #0a2c5d 100%);
}
.catalog-visual-hero.catalog-visual-hero--blend::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 84% 50%, rgba(44,154,255,.22), transparent 15%),
    radial-gradient(circle at 82% 50%, rgba(7,97,222,.24), transparent 28%),
    linear-gradient(90deg, rgba(3,12,24,.98) 0%, rgba(3,12,24,.94) 28%, rgba(3,12,24,.78) 44%, rgba(3,12,24,.42) 60%, rgba(3,12,24,.12) 72%, rgba(3,12,24,0) 82%);
  pointer-events:none;
  z-index:0;
}
.catalog-visual-hero.catalog-visual-hero--blend::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0) 18%),
    radial-gradient(circle at 92% 50%, rgba(58,182,255,.10), transparent 14%);
  pointer-events:none;
  z-index:0;
}
.catalog-visual-hero--blend .hero-blend-art{
  position:absolute;
  top:96px;
  right:0;
  bottom:0;
  width:min(63vw, 980px);
  background-image:var(--catalog-hero-image);
  background-repeat:no-repeat;
  background-position:right center;
  background-size:contain;
  pointer-events:none;
  z-index:1;
  filter:drop-shadow(0 32px 72px rgba(0,0,0,.22));
  -webkit-mask-image:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.08) 8%, rgba(0,0,0,.88) 18%, rgba(0,0,0,1) 26%, rgba(0,0,0,1) 100%);
  mask-image:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.08) 8%, rgba(0,0,0,.88) 18%, rgba(0,0,0,1) 26%, rgba(0,0,0,1) 100%);
}
.catalog-visual-hero--blend .category-hero-grid{
  position:relative;
  z-index:2;
  min-height:444px;
  display:block;
}
.catalog-visual-hero--blend .category-hero-grid > div:first-child{
  max-width:min(48vw, 680px);
  padding-top:10px;
}
.catalog-visual-hero--blend .product-category-hero-img{
  display:none;
}
.catalog-visual-hero--blend .breadcrumb{
  margin-bottom:34px;
}
.catalog-visual-hero--blend .eyebrow{
  margin-bottom:18px;
  color:#e3ecff;
  letter-spacing:.12em;
}
.catalog-visual-hero--blend h1{
  margin:0 0 18px;
  font-size:clamp(52px, 5.1vw, 84px);
  line-height:1.04;
  letter-spacing:-.07em;
  color:#fff;
}
.catalog-visual-hero--blend p{
  max-width:660px;
  font-size:clamp(18px, 1.4vw, 22px);
  line-height:1.65;
  color:#dbe8f8;
}
.catalog-visual-hero--blend .detail-hero-actions{
  margin-top:38px;
}
@media (max-width: 1280px){
  .catalog-visual-hero--blend .hero-blend-art{width:min(60vw, 860px)}
  .catalog-visual-hero--blend .category-hero-grid > div:first-child{max-width:min(50vw, 620px)}
}
@media (max-width: 1080px){
  .catalog-visual-hero.catalog-visual-hero--blend{
    min-height:initial;
    padding:128px 0 64px;
  }
  .catalog-visual-hero--blend .hero-blend-art{
    width:min(64vw, 760px);
    top:118px;
    opacity:.96;
  }
  .catalog-visual-hero--blend .category-hero-grid > div:first-child{max-width:min(58vw, 560px)}
}
@media (max-width: 900px){
  .catalog-visual-hero.catalog-visual-hero--blend{
    padding:118px 0 52px;
    min-height:initial;
  }
  .catalog-visual-hero--blend .hero-blend-art{
    display:none;
  }
  .catalog-visual-hero--blend .category-hero-grid{
    display:grid;
    grid-template-columns:1fr;
    min-height:initial;
    gap:26px;
  }
  .catalog-visual-hero--blend .category-hero-grid > div:first-child{
    max-width:none;
  }
  .catalog-visual-hero--blend .product-category-hero-img{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .catalog-visual-hero--blend .product-category-hero-img img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 20px 42px rgba(0,0,0,.26));
    border-radius: var(--radius-xl);
  }
}
@media (max-width: 640px){
  .catalog-visual-hero.catalog-visual-hero--blend{padding:108px 0 44px}
  .catalog-visual-hero--blend .breadcrumb{margin-bottom:22px}
  .catalog-visual-hero--blend h1{font-size:clamp(34px, 12vw, 52px);line-height:1.08}
  .catalog-visual-hero--blend p{font-size:16px;line-height:1.72}
}


/* Final logo sizing */
.site-logo{
  width:220px !important;
  max-height:46px !important;
  height:auto !important;
  display:block;
  object-fit:contain;
}
.brand{
  min-width:220px !important;
}
.footer-brand .site-logo{
  width:220px !important;
  max-height:46px !important;
}
@media (max-width:900px){
  .site-logo{width:178px !important;max-height:38px !important}
  .brand{min-width:178px !important}
}

/* Fix alignment for business cards in company page */
.company-section .business-grid.align-top {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  align-items: stretch !important;
}

/* Fix alignment for business cards in company page */
.company-section .business-grid.align-top {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  align-items: stretch !important;
}

.company-section .business-grid.align-top .business-card {
  margin-top: 0 !important;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.company-section .business-grid.align-top .business-card h3 {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  height: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: flex-end !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .company-section .business-grid.align-top {
    grid-template-columns: 1fr !important;
  }
  .company-section .business-grid.align-top .business-card:not(:first-child) {
    margin-top: 24px !important;
  }
}



/* 2026-07 Premium product lineup refinement */
.products.product-lineup-premium{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 16%,rgba(15,124,255,.11),transparent 28%),
    linear-gradient(180deg,#ffffff 0%,#f6faff 100%);
}
.products.product-lineup-premium::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(15,124,255,.24),transparent);
}
.product-lineup-head{
  align-items:flex-end;
  gap:28px;
  margin-bottom:32px;
}
.product-lineup-head .section-desc{
  max-width:720px;
  margin-top:12px;
  color:#506179;
}
.product-grid.product-grid-premium{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.product-card-premium{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:338px;
  overflow:hidden;
  border:1px solid rgba(142,169,204,.26);
  border-radius:26px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,251,255,.98));
  box-shadow:0 18px 44px rgba(11,42,85,.08);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card-premium::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 8%,rgba(15,124,255,.16),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,0),rgba(15,124,255,.035));
  opacity:.65;
  pointer-events:none;
}
.product-card-premium:hover{
  transform:translateY(-8px);
  border-color:rgba(15,124,255,.72);
  box-shadow:0 28px 70px rgba(15,76,145,.17);
}
.product-media{
  position:relative;
  height:178px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px 24px 18px;
  background:
    linear-gradient(135deg,#f7fbff 0%,#eef5fd 52%,#e6eef8 100%);
  border-bottom:1px solid rgba(142,169,204,.18);
}
.product-media::after{
  content:"";
  position:absolute;
  left:18%;
  right:18%;
  bottom:18px;
  height:16px;
  border-radius:50%;
  background:rgba(8,28,57,.12);
  filter:blur(12px);
}
.product-media img{
  position:relative;
  z-index:1;
  max-width:100%;
  max-height:126px;
  object-fit:contain;
  transform:scale(1.02);
  transition:transform .28s ease;
}
.product-card-premium:hover .product-media img{
  transform:scale(1.08);
}
.product-chip{
  position:absolute;
  left:18px;
  top:16px;
  z-index:2;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:#0f7cff;
  border:1px solid rgba(15,124,255,.16);
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 8px 18px rgba(10,44,89,.07);
}
.product-card-body{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  flex:1;
  padding:22px 22px 20px;
}
.product-card-body h3{
  margin:0 0 5px;
  color:#06162c;
  font-size:21px;
  line-height:1.25;
  letter-spacing:-.04em;
}
.product-en{
  margin:0 0 14px;
  color:#0f7cff;
  font-size:12px;
  font-weight:900;
}
.product-desc{
  margin:0 0 20px;
  color:#506179;
  font-size:14px;
  line-height:1.58;
}
.product-cta{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#0b274f;
  font-size:13px;
  font-weight:900;
}
.product-cta i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border-radius:999px;
  background:#0f7cff;
  color:#fff;
  font-style:normal;
  transition:transform .28s ease;
}
.product-card-premium:hover .product-cta i{
  transform:translateX(4px);
}
@media(max-width:1180px){
  .product-grid.product-grid-premium{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:640px){
  .product-grid.product-grid-premium{grid-template-columns:1fr}
  .product-lineup-head{align-items:flex-start}
  .product-card-premium{min-height:initial}
  .product-media{height:164px}
}

/* Scroll Up/Down Floating Navigator */
.scroll-navigator {
  position: fixed;
  right: 28px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.scroll-navigator.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 24, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(4, 16, 32, 0.3);
}
.scroll-btn:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 124, 255, 0.45);
}
.scroll-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .scroll-navigator {
    right: 18px;
    bottom: 24px;
    gap: 6px;
  }
  .scroll-btn {
    width: 38px;
    height: 38px;
  }
}
