:root {
  --blue-950: #06142d;
  --blue-900: #08245a;
  --blue-800: #073b9a;
  --blue-700: #0b55d8;
  --blue-600: #0f66ff;
  --blue-100: #eaf3ff;
  --blue-050: #f5f9ff;
  --cyan: #51c9ff;
  --text: #10213f;
  --muted: #627087;
  --line: rgba(12, 88, 214, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(10, 38, 88, 0.14);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 56px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(8,36,90,0.08);
  backdrop-filter: blur(20px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 224px; flex: 0 0 auto; }
.brand img { width: 224px; height: auto; object-fit: contain; display:block; }
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 48px; font-size: 15px; font-weight: 650; color: #1c2942; }
.nav-menu a { position: relative; padding: 32px 0; transition: color .2s ease; }
.nav-menu a::after {
  content: ""; position: absolute; left: 50%; bottom: 20px; width: 0; height: 3px; border-radius: 999px;
  background: var(--blue-600); transform: translateX(-50%); transition: width .2s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue-700); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 28px; }
.header-cta {
  min-width: 150px; height: 50px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; gap: 15px;
  color: #fff; font-weight: 800; font-size: 14px; background: linear-gradient(135deg,#0f66ff,#063b9b);
  box-shadow: 0 16px 34px rgba(15,102,255,.24); transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 42px rgba(15,102,255,.3); }
.header-cta i { width: 25px; height: 25px; border-radius: 50%; border: 1px solid rgba(255,255,255,.62); display: grid; place-items: center; font-style: normal; font-size: 17px; line-height: 1; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--blue-950); margin: 6px 0; border-radius: 2px; }

.section-bleed { position: relative; overflow: hidden; }
.hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(244,249,255,.98) 0%, rgba(237,246,255,.94) 42%, rgba(227,241,255,.72) 72%, rgba(219,237,255,.9) 100%),
    radial-gradient(circle at 74% 22%, rgba(81,201,255,.28), transparent 34%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(255,255,255,.48) 54.1% 55.2%, transparent 55.3% 100%),
    linear-gradient(125deg, transparent 0 69%, rgba(15,102,255,.08) 69.1% 70%, transparent 70.1% 100%);
  pointer-events: none;
}
.hero-bg-grid::after {
  content: ""; position: absolute; left: 31%; top: 80px; width: 310px; height: 190px; opacity: .18;
  background-image: radial-gradient(circle, #0b55d8 1.2px, transparent 1.3px); background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at center, black 0 58%, transparent 72%);
}
.hero-inner { position: relative; z-index: 2; min-height: 620px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 36px; padding: 58px 0 50px; }
.hero-copy { max-width: 560px; }
.kicker { margin: 0 0 22px; color: var(--blue-700); font-size: 13px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
h1, h2 { margin: 0; color: var(--blue-950); letter-spacing: -.055em; }
h1 { font-size: clamp(42px, 5.5vw, 64px); line-height: 1.06; font-weight: 920; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; font-weight: 880; }
.hero-text { max-width: 500px; margin: 24px 0 30px; color: #5e6d83; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 34px; }
.btn { height: 52px; padding: 0 23px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; font-size: 14px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { min-width: 170px; color: #fff; background: linear-gradient(135deg,#0f66ff,#073b9a); box-shadow: 0 16px 36px rgba(15,102,255,.24); }
.btn-outline { min-width: 180px; color: #0a48b8; background: rgba(255,255,255,.54); border: 1.4px solid rgba(10,72,184,.72); }
.btn-outline:hover { border-color: var(--blue-600); box-shadow: 0 16px 30px rgba(15,102,255,.12); }
.btn span { font-size: 22px; line-height: 1; transform: translateY(-1px); }
.hero-badges { display: grid; grid-template-columns: repeat(4, auto); gap: 23px; align-items: start; }
.badge-item { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; min-width: 112px; }
.badge-item b { display: block; color: #13223d; font-size: 12px; line-height: 1.12; }
.badge-item small { display: block; margin-top: 3px; color: #5d6a7c; font-size: 11px; line-height: 1.1; }
.badge-icon, .quality-icon, .cta-icon { position: relative; display: grid; place-items: center; color: var(--blue-700); }
.badge-icon { width: 28px; height: 28px; }
.globe::before { content:""; width: 25px; height: 25px; border: 2px solid currentColor; border-radius: 50%; background: linear-gradient(90deg, transparent 47%, currentColor 48% 52%, transparent 53%), linear-gradient(0deg, transparent 47%, currentColor 48% 52%, transparent 53%); opacity: .9; }
.shield::before { content:""; width: 22px; height: 25px; border: 2px solid currentColor; clip-path: polygon(50% 0,100% 18%,88% 78%,50% 100%,12% 78%,0 18%); }
.tools::before { content:""; width: 23px; height: 23px; border: 2px solid currentColor; transform: rotate(45deg); border-radius: 5px; }
.headset::before { content:""; width: 25px; height: 19px; border: 2px solid currentColor; border-bottom: 0; border-radius: 14px 14px 0 0; }
.headset::after { content:""; position:absolute; bottom:2px; width: 6px; height: 12px; left:3px; border:2px solid currentColor; border-radius: 3px; box-shadow: 16px 0 0 -2px #fff, 16px 0 0 0 currentColor; }
.material::before { content:""; width: 24px; height: 10px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 0 7px 0 -2px #eef7ff, 0 7px 0 0 currentColor, 0 14px 0 -2px #eef7ff, 0 14px 0 0 currentColor; }

.hero-visual { position: relative; min-height: 490px; align-self: stretch; }
.world-map { position:absolute; left:0; top:42px; width: 360px; height: 220px; opacity:.11; background-image: radial-gradient(circle,#0b55d8 1.4px,transparent 1.5px); background-size: 9px 9px; mask-image: radial-gradient(ellipse at center, black 0 60%, transparent 78%); }
.cityline { position: absolute; right: -30px; bottom: 78px; width: 420px; height: 310px; opacity: .48; background: linear-gradient(180deg, transparent 0 28%, rgba(24,91,159,.12) 28% 100%), linear-gradient(90deg, transparent 0 8%, rgba(50,112,180,.35) 8% 13%, transparent 13% 20%, rgba(50,112,180,.28) 20% 26%, transparent 26% 35%, rgba(50,112,180,.38) 35% 40%, transparent 40% 48%, rgba(50,112,180,.25) 48% 52%, transparent 52% 62%, rgba(50,112,180,.45) 62% 69%, transparent 69% 100%); clip-path: polygon(0 100%,0 62%,8% 62%,8% 46%,14% 46%,14% 100%,20% 100%,20% 70%,28% 70%,28% 100%,35% 100%,35% 38%,42% 38%,42% 100%,49% 100%,49% 56%,55% 56%,55% 100%,62% 100%,62% 22%,69% 22%,69% 100%,78% 100%,78% 50%,86% 50%,86% 100%,100% 100%); }
.platform { position: absolute; left: 40px; right: -10px; bottom: 28px; height: 96px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,255,255,.98), rgba(204,228,250,.72) 54%, rgba(116,171,225,.28) 74%, transparent 76%); box-shadow: 0 32px 60px rgba(26,80,146,.24), inset 0 -6px 0 rgba(15,102,255,.34), inset 0 -11px 0 rgba(81,201,255,.35); }
.product-render { position: absolute; border: 1px solid rgba(55,79,105,.22); background: linear-gradient(135deg,#f8fbff 0%,#d7e2ec 44%,#99aabd 100%); box-shadow: 18px 32px 42px rgba(47,74,107,.22), inset 2px 2px 0 rgba(255,255,255,.92), inset -8px -8px 18px rgba(75,95,117,.17); }
.product-render::before { content:""; position:absolute; inset:12px; border:1px solid rgba(40,60,82,.18); background: linear-gradient(90deg,rgba(255,255,255,.24),rgba(255,255,255,0)); }
.cabinet-left { width:170px; height:310px; left:135px; bottom:102px; border-radius:8px; }
.cabinet-main { width:195px; height:388px; right:108px; bottom:108px; border-radius:8px; background: linear-gradient(135deg,#f7fbff,#bdccd9 48%,#7d8f9f 100%); }
.cabinet-main::before { inset:18px; background: linear-gradient(90deg,rgba(26,45,68,.12),transparent 22%), repeating-linear-gradient(180deg,transparent 0 33px,rgba(29,52,79,.22) 34px 36px); }
.open-door { position:absolute; right:18px; bottom:106px; width:86px; height:376px; border-radius:0 7px 7px 0; background:linear-gradient(125deg,#eff6ff,#aebdcb 56%,#6c7e91); box-shadow:16px 28px 38px rgba(28,56,95,.2), inset 2px 0 0 rgba(255,255,255,.75); transform:skewY(-8deg); border:1px solid rgba(55,79,105,.22); }
.box-small { width:160px; height:172px; left:245px; bottom:72px; border-radius:7px; z-index:3; }
.box-wide { width:222px; height:140px; right:140px; bottom:72px; border-radius:8px; z-index:4; }
.junction-box { width:115px; height:138px; right:8px; bottom:76px; border-radius:8px; z-index:5; }
.handle { position:absolute; right:13px; top:50%; width:8px; height:42px; border-radius:999px; background:#283a4e; box-shadow: inset 0 1px 0 rgba(255,255,255,.55); transform: translateY(-50%); }
.lock { position:absolute; left:18px; top:50%; width:10px; height:10px; border-radius:50%; background:#f5f8fb; border:2px solid #697b8c; transform:translateY(-50%); }
.window { position:absolute; left:26px; right:24px; top:42px; height:78px; border-radius:4px; background:linear-gradient(180deg,rgba(10,22,38,.78),rgba(10,22,38,.48)); border:5px solid rgba(255,255,255,.42); box-shadow: inset 0 0 18px rgba(0,0,0,.35); }
.window::after { content:""; position:absolute; left:18px; right:18px; top:32px; height:18px; background:repeating-linear-gradient(90deg,#172335 0 14px,#24364c 14px 20px); opacity:.85; }
.rail { position:absolute; left:40px; right:40px; height:4px; background:rgba(24,47,75,.55); border-radius:5px; }
.rail-a { top:96px; } .rail-b { top:176px; } .rail-c { top:256px; }
.junction-box span { position:absolute; width:9px; height:9px; border-radius:50%; background:radial-gradient(circle,#f4f7fb,#5c6c7b); }
.junction-box span:nth-child(1){left:14px;top:14px}.junction-box span:nth-child(2){right:14px;top:14px}.junction-box span:nth-child(3){left:14px;bottom:14px}.junction-box span:nth-child(4){right:14px;bottom:14px}

.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 36px; }
.section-title.compact { margin-bottom: 26px; }
.products-section { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-height:190px; padding:28px 28px 24px; display:grid; grid-template-columns:1fr 160px; gap:12px; align-items:end; border:1px solid rgba(8,36,90,.12); border-radius:9px; background:#fff; box-shadow:0 18px 48px rgba(8,36,90,.06); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; overflow:hidden; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(15,102,255,.28); box-shadow:0 24px 58px rgba(8,36,90,.11); }
.card-icon { width:50px; height:50px; margin-bottom:22px; border-radius:50%; color:var(--blue-700); background:#eaf3ff; display:grid; place-items:center; }
.card-icon::before { content:""; width:24px; height:24px; border:2px solid currentColor; border-radius:4px; box-shadow: inset 8px 0 0 rgba(15,102,255,.08); }
.icon-oem::before { transform: rotate(45deg); border-radius: 5px; }
.product-card h3 { margin:0 0 8px; color:var(--blue-950); font-size:19px; letter-spacing:-.025em; }
.product-card p { margin:0 0 15px; color:#5f6e85; font-size:13px; line-height:1.45; }
.product-card a { color: var(--blue-700); font-size:13px; font-weight:850; }
.card-product { position:relative; height:130px; align-self:end; }
.card-product::before { content:""; position:absolute; right:0; bottom:-6px; width:130px; height:104px; border-radius:6px; background:linear-gradient(135deg,#f9fbff,#cad7e5 55%,#8fa2b8); border:1px solid rgba(44,62,84,.18); box-shadow:12px 16px 28px rgba(35,68,105,.14), inset 2px 2px 0 rgba(255,255,255,.92); }
.card-product::after { content:""; position:absolute; right:20px; bottom:28px; width:90px; height:34px; border-radius:3px; background:#182433; border:4px solid rgba(255,255,255,.5); }
.card-product-tall::before { width:118px; height:144px; bottom:-12px; }
.card-product-tall::after { display:none; }
.card-product-open::before { width:118px; height:144px; bottom:-12px; }
.card-product-open::after { right:-16px; bottom:-10px; width:45px; height:138px; transform:skewY(-7deg); border-radius:0 5px 5px 0; background:linear-gradient(120deg,#dbe8f5,#6d7e91); border:1px solid rgba(44,62,84,.18); }

.quality-strip { padding:36px 0 34px; background:linear-gradient(180deg,#edf6ff,#f8fbff); border-top:1px solid rgba(8,36,90,.08); border-bottom:1px solid rgba(8,36,90,.08); }
.quality-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.quality-item { min-height:86px; padding:6px 28px; display:grid; grid-template-columns:48px 1fr; gap:18px; align-items:center; border-right:1px solid rgba(8,36,90,.12); }
.quality-item:last-child { border-right:0; }
.quality-icon { width:46px; height:46px; }
.quality-item b { display:block; color:var(--blue-950); font-size:16px; margin-bottom:5px; }
.quality-item p { margin:0; color:#627087; font-size:12px; line-height:1.35; }

.capability-section { background: #fff; }
.capability-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:34px; align-items:stretch; }
.capability-panel { position:relative; overflow:hidden; padding:42px; border-radius:18px; background:radial-gradient(circle at 20% 0%,rgba(81,201,255,.32),transparent 32%), linear-gradient(135deg,#08245a,#06142d); color:#fff; box-shadow:0 30px 70px rgba(6,20,45,.18); }
.capability-panel::after { content:""; position:absolute; right:-80px; bottom:-80px; width:230px; height:230px; border-radius:50%; border:34px solid rgba(255,255,255,.06); }
.capability-panel .kicker { color:#bfe8ff; }
.capability-panel h2 { color:#fff; margin-bottom:18px; }
.capability-panel p { color:rgba(255,255,255,.68); margin:0; font-size:15px; }
.capability-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.capability-card { padding:28px; min-height:176px; border-radius:16px; background:#fff; border:1px solid rgba(8,36,90,.10); box-shadow:0 16px 44px rgba(8,36,90,.06); }
.capability-card span { width:34px; height:34px; margin-bottom:18px; border-radius:9px; color:#fff; background:linear-gradient(135deg,#0f66ff,#51c9ff); display:grid; place-items:center; font-size:12px; font-weight:900; }
.capability-card b { display:block; color:var(--blue-950); font-size:17px; margin-bottom:8px; }
.capability-card p { margin:0; color:#627087; font-size:14px; }

.cta-section { position:relative; overflow:hidden; color:#fff; background:linear-gradient(90deg,rgba(6,20,45,.94),rgba(8,59,154,.95)), radial-gradient(circle at 18% 50%,rgba(81,201,255,.2),transparent 34%); }
.cta-section::before { content:""; position:absolute; left:20px; top:18px; width:260px; height:150px; opacity:.22; background-image:radial-gradient(circle,#fff 1px,transparent 1.5px); background-size:10px 10px; mask-image:radial-gradient(ellipse at center, black 0 55%, transparent 72%); }
.cta-inner { position:relative; z-index:2; min-height:150px; display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; padding:34px 0; }
.cta-copy { display:grid; grid-template-columns:70px 1fr; gap:24px; align-items:center; max-width:630px; }
.cta-icon { width:68px; height:68px; border-radius:50%; color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); }
.cta-section h2 { color:#fff; font-size:26px; margin-bottom:8px; }
.cta-section p { margin:0; color:rgba(255,255,255,.74); font-size:15px; }
.cta-actions { display:flex; align-items:center; gap:20px; }
.btn-white { min-width:200px; color:#0741a7; background:#fff; box-shadow:0 18px 34px rgba(0,0,0,.14); }
.btn-ghost { min-width:190px; color:#fff; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.62); }
.site-footer { padding:28px 0; background:#06142d; color:rgba(255,255,255,.58); font-size:13px; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.footer-inner p { margin:0; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .nav-menu { gap:26px; }
  .hero-inner { grid-template-columns:1fr; padding-top:44px; }
  .hero-visual { min-height:470px; }
  .hero-badges { grid-template-columns:repeat(2,minmax(130px,1fr)); }
  .product-grid, .capability-grid { grid-template-columns:1fr; }
  .quality-grid { grid-template-columns:repeat(2,1fr); }
  .quality-item:nth-child(2) { border-right:0; }
  .quality-item:nth-child(1), .quality-item:nth-child(2) { border-bottom:1px solid rgba(8,36,90,.12); }
  .cta-inner { grid-template-columns:1fr; }
}
@media (max-width: 820px) {
  .container { width:min(100% - 32px,var(--container)); }
  .site-header, .nav-wrap { height:auto; }
  .nav-wrap { padding:16px 0; }
  .brand { width:185px; }
  .brand img { width:185px; }
  .nav-toggle { display:block; order:3; }
  .header-cta { margin-left:auto; min-width:126px; height:44px; }
  .nav-menu { position:absolute; left:0; right:0; top:100%; display:none; flex-direction:column; align-items:flex-start; gap:0; padding:8px 28px 20px; background:rgba(255,255,255,.96); border-bottom:1px solid rgba(8,36,90,.08); box-shadow:0 20px 35px rgba(8,36,90,.08); }
  .nav-menu.open { display:flex; }
  .nav-menu a { padding:14px 0; }
  .nav-menu a::after { bottom:7px; left:0; transform:none; }
  .hero { min-height:auto; }
  .hero-inner { min-height:auto; }
  .hero-visual { min-height:380px; transform:scale(.82); transform-origin:top center; margin-bottom:-60px; }
  .product-card { grid-template-columns:1fr; }
  .card-product { display:none; }
  .capability-cards { grid-template-columns:1fr; }
  .cta-copy { grid-template-columns:1fr; }
  .cta-actions { flex-direction:column; align-items:stretch; }
  .footer-inner { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 560px) {
  h1 { font-size:40px; }
  .hero-text { font-size:15px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn { width:100%; }
  .hero-badges, .quality-grid { grid-template-columns:1fr; }
  .quality-item { border-right:0; border-bottom:1px solid rgba(8,36,90,.12); }
  .quality-item:last-child { border-bottom:0; }
  .hero-visual { display:none; }
  .section { padding:54px 0; }
  .capability-panel { padding:30px; }
  .header-cta i { display:none; }
}


/* Contact visibility upgrades */
.contact-ribbon { position: sticky; top: 86px; z-index: 45; background: linear-gradient(90deg, #08245a, #0b55d8); color: #fff; box-shadow: 0 12px 30px rgba(8,36,90,.12); }
.contact-ribbon-inner { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 13px; }
.contact-ribbon a { color: #fff; font-weight: 850; }
.contact-ribbon span { color: rgba(255,255,255,.82); }
.hero-contact-line { margin: -8px 0 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-contact-line a, .inline-contact a { display:inline-flex; align-items:center; min-height:38px; padding:0 15px; border-radius:999px; background:#fff; color:var(--blue-800); border:1px solid rgba(11,85,216,.18); font-size:13px; font-weight:850; box-shadow:0 10px 22px rgba(8,36,90,.06); }
.header-cta { min-width: 148px; }
.section-contact-card { margin-top:26px; padding:18px 22px; border-radius:12px; background:linear-gradient(90deg,#f5f9ff,#fff); border:1px solid rgba(12,88,214,.16); display:flex; align-items:center; justify-content:space-between; gap:18px; color:var(--text); box-shadow:0 14px 34px rgba(8,36,90,.06); }
.section-contact-card b { color:var(--blue-950); }
.section-contact-card span { color:#526179; font-size:14px; }
.section-contact-card a { color:var(--blue-700); font-weight:850; }
.compact-contact { max-width: 760px; margin-left:auto; margin-right:auto; }
.inline-contact { display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.floating-contact { position: fixed; right: 18px; bottom: 18px; z-index: 100; display: flex; gap: 9px; padding: 8px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid rgba(12,88,214,.16); box-shadow: 0 18px 42px rgba(8,36,90,.22); backdrop-filter: blur(14px); }
.floating-contact a { min-width: 92px; text-align:center; padding: 11px 16px; border-radius: 999px; background: var(--blue-700); color:#fff; font-size:13px; font-weight:900; }
.floating-contact a:nth-child(2) { background: var(--blue-950); }
.footer-contact a { color:#fff; font-weight:850; }
.photo-credit { font-size:11px; color:rgba(255,255,255,.42); }

/* Real photo hero replacement */
.hero-photo { min-height: 520px; display:flex; align-items:center; justify-content:center; }
.hero-photo img { width: 100%; max-width: 620px; height: 430px; object-fit: cover; object-position: center; border-radius: 10px; box-shadow: 0 28px 70px rgba(8,36,90,.16); border: 1px solid rgba(255,255,255,.72); }
.hero-photo::after { content:""; position:absolute; left:12%; right:10%; bottom:42px; height:54px; border-radius:50%; background: radial-gradient(ellipse at center, rgba(11,85,216,.22), transparent 68%); filter: blur(8px); z-index:-1; }

/* Added content modules */
.process-section { background: #fff; }
.process-grid { display:grid; grid-template-columns:.92fr 1.08fr; gap:34px; align-items:center; }
.process-copy { padding: 40px; border-radius: 18px; background: linear-gradient(135deg,#f5f9ff,#fff); border:1px solid rgba(8,36,90,.10); box-shadow:0 16px 44px rgba(8,36,90,.06); }
.process-copy p { color:#627087; margin:0; }
.process-steps { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.process-steps div { padding:24px; min-height:168px; border-radius:16px; background:#fff; border:1px solid rgba(8,36,90,.11); box-shadow:0 16px 44px rgba(8,36,90,.055); }
.process-steps span { width:34px; height:34px; margin-bottom:15px; border-radius:9px; color:#fff; background:linear-gradient(135deg,#0f66ff,#51c9ff); display:grid; place-items:center; font-size:12px; font-weight:900; }
.process-steps b { display:block; margin-bottom:8px; color:var(--blue-950); }
.process-steps p { margin:0; color:#627087; font-size:13px; }
.applications-section { background: linear-gradient(180deg,#f8fbff,#fff); }
.application-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:14px; max-width:1000px; margin:0 auto; }
.application-tags span { padding:13px 18px; border-radius:999px; background:#fff; border:1px solid rgba(12,88,214,.16); color:#12335f; font-size:14px; font-weight:850; box-shadow:0 12px 28px rgba(8,36,90,.055); }
.inspection-section { background:#fff; }
.inspection-grid { display:grid; grid-template-columns:1fr 1fr; gap:38px; align-items:center; }
.inspection-photos { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.inspection-photos img { width:100%; height:330px; object-fit:cover; border-radius:14px; border:1px solid rgba(8,36,90,.10); box-shadow:0 18px 44px rgba(8,36,90,.08); }
.inspection-copy { padding: 34px; }
.inspection-copy p { color:#627087; }
.inspection-copy li { margin:8px 0; color:#4d5c72; }
.detail-section { background: #f8fbff; }
.detail-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.detail-card { padding:26px; border-radius:16px; background:#fff; border:1px solid rgba(8,36,90,.10); box-shadow:0 16px 44px rgba(8,36,90,.055); }
.detail-card b { display:block; color:var(--blue-950); margin-bottom:8px; }
.detail-card p { margin:0; color:#627087; font-size:14px; }
.real-photo-section { background:#fff; }
.real-photo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.real-photo-grid img { width:100%; height:230px; object-fit:cover; border-radius:12px; border:1px solid rgba(8,36,90,.10); box-shadow:0 16px 38px rgba(8,36,90,.07); }
.drawing-cta { padding: 48px 0; background: linear-gradient(90deg,#edf6ff,#fff); border-top:1px solid rgba(8,36,90,.08); border-bottom:1px solid rgba(8,36,90,.08); }
.drawing-inner { display:grid; grid-template-columns:1fr auto; gap:34px; align-items:center; }
.drawing-inner h2 { margin-bottom:10px; }
.drawing-inner p { color:#627087; margin:0; max-width:660px; }
.drawing-actions { display:flex; gap:16px; flex-wrap:wrap; }

@media (max-width:1050px){
  .contact-ribbon { top:86px; }
  .contact-ribbon-inner { flex-wrap:wrap; gap:12px; padding:8px 0; }
  .process-grid, .inspection-grid, .drawing-inner { grid-template-columns:1fr; }
  .detail-grid, .real-photo-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px){
  .contact-ribbon { position: static; }
  .contact-ribbon-inner { justify-content:flex-start; }
  .hero-photo { min-height: 360px; }
  .hero-photo img { height:320px; }
  .section-contact-card { flex-direction:column; align-items:flex-start; }
  .process-steps, .inspection-photos { grid-template-columns:1fr; }
}
@media (max-width:560px){
  .detail-grid, .real-photo-grid { grid-template-columns:1fr; }
  .floating-contact { left:12px; right:12px; justify-content:center; }
  .floating-contact a { flex:1; }
  .hero-contact-line a, .inline-contact a { width:100%; justify-content:center; }
}


/* Clean logo + stable SVG icons: avoids font/glyph rendering glitches */
.brand { display:flex; align-items:center; }
.brand img { background: transparent !important; mix-blend-mode: normal; }
.badge-icon::before, .badge-icon::after,
.quality-icon::before, .quality-icon::after,
.cta-icon::before, .cta-icon::after,
.card-icon::before, .card-icon::after { content: none !important; display: none !important; }
.badge-icon, .quality-icon, .cta-icon, .card-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 78% 78%;
  flex: 0 0 auto;
}
.badge-icon.globe, .quality-icon.globe { background-image: url('../assets/icon-globe.svg'); }
.badge-icon.shield, .quality-icon.shield { background-image: url('../assets/icon-shield.svg'); }
.badge-icon.tools, .quality-icon.tools { background-image: url('../assets/icon-tools.svg'); }
.badge-icon.headset, .quality-icon.headset, .cta-icon.headset { background-image: url('../assets/icon-headset.svg'); }
.quality-icon.material { background-image: url('../assets/icon-material.svg'); }
.card-icon.icon-panel { background-image: url('../assets/icon-panel.svg'); }
.card-icon.icon-cabinet { background-image: url('../assets/icon-cabinet.svg'); }
.card-icon.icon-oem { background-image: url('../assets/icon-oem.svg'); }
.cta-icon.headset { background-color: rgba(255,255,255,.10); background-size: 52% 52%; filter: brightness(0) invert(1); }
.card-icon { background-color:#eaf3ff; border-radius:50%; }

/* Emphasis only: move drawing CTA forward and make contact obvious; other sections keep original layout. */
.header-cta {
  min-width: 252px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: .01em;
}
.contact-ribbon {
  background: linear-gradient(90deg, #06142d 0%, #073b9a 48%, #0f66ff 100%);
}
.contact-ribbon-inner {
  min-height: 50px;
  font-size: 14px;
}
.contact-ribbon-inner a:first-child {
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #073b9a;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.contact-ribbon-inner a:first-child strong { color: #06142d; }
.strong-contact { gap: 14px; margin: -4px 0 28px; }
.strong-contact a {
  min-height: 58px;
  padding: 9px 18px;
  border-radius: 14px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,85,216,.22);
}
.strong-contact a small {
  color: #5d6a7c;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.strong-contact a b { color: #073b9a; font-size: 16px; line-height: 1.2; }
.strong-contact .whatsapp-highlight {
  background: linear-gradient(135deg,#0f66ff,#073b9a);
  border-color: rgba(15,102,255,.3);
  box-shadow: 0 18px 36px rgba(15,102,255,.24);
}
.strong-contact .whatsapp-highlight small,
.strong-contact .whatsapp-highlight b { color: #fff; }
.featured-drawing {
  padding: 78px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(81,201,255,.28), transparent 28%),
    linear-gradient(135deg, #06142d 0%, #073b9a 52%, #0f66ff 100%);
  border: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.featured-drawing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle,#fff 1px,transparent 1.5px);
  background-size: 12px 12px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}
.featured-drawing .drawing-inner {
  position: relative;
  z-index: 2;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
}
.featured-drawing .kicker { color: #bfe8ff; }
.featured-drawing h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  max-width: 760px;
}
.featured-drawing p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  max-width: 720px;
  margin-top: 18px;
}
.drawing-contact-note {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.drawing-contact-note strong {
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.drawing-contact-note a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}
.featured-drawing .drawing-actions {
  justify-content: flex-end;
  align-items: stretch;
  flex-direction: column;
  max-width: 410px;
  margin-left: auto;
  width: 100%;
}
.featured-drawing .btn {
  width: 100%;
  height: 64px;
  border-radius: 12px;
  font-size: 15px;
}
.featured-drawing .btn-primary {
  background: #ffffff;
  color: #073b9a;
  box-shadow: 0 24px 46px rgba(0,0,0,.18);
}
.featured-drawing .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.62);
}
.big-whatsapp::before {
  content: "WhatsApp";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  margin-right: -8px;
  border-radius: 999px;
  background: #073b9a;
  color: #fff;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.inline-contact a:first-child,
.section-contact-card a[href*="wa.me"],
.footer-contact a[href*="wa.me"] {
  color: #073b9a;
  font-weight: 950;
}
.floating-contact a:first-child {
  min-width: 170px;
  background: linear-gradient(135deg,#0f66ff,#073b9a);
  box-shadow: 0 14px 30px rgba(15,102,255,.28);
}
.floating-contact a:first-child::after { content: " +86 130 7703 5511"; }
@media (max-width: 1050px) {
  .featured-drawing .drawing-inner { grid-template-columns: 1fr; }
  .featured-drawing .drawing-actions { margin-left: 0; max-width: 100%; }
}
@media (max-width: 820px) {
  .header-cta { min-width: 184px; font-size: 12px; }
  .header-cta span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 138px; }
  .contact-ribbon-inner a:first-child { width: 100%; justify-content: center; display:flex; }
  .featured-drawing { padding: 58px 0; }
}
@media (max-width: 560px) {
  .strong-contact a { width: 100%; }
  .drawing-contact-note a { width: 100%; justify-content: center; }
  .floating-contact a:first-child::after { content: ""; }
}




/* Photo-led final back-half layout */
.photo-led-section {
  padding: 66px 7%;
  background: #ffffff;
}

.photo-led-blue {
  background: #f4f8ff;
}

.photo-led-card {
  max-width: 1260px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 38px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 16px 36px rgba(20, 54, 96, .07);
  padding: 22px;
}

.photo-led-card.reverse {
  grid-template-columns: .88fr 1.12fr;
}

.photo-led-image {
  overflow: hidden;
  background: #eef5ff;
  border: 1px solid #dce5f1;
}

.photo-led-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.photo-led-image.tall img {
  object-fit: cover;
  object-position: center top;
}

.photo-led-image.wide img {
  object-fit: cover;
  object-position: center center;
}

.photo-led-copy {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-led-copy h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: #101a31;
  margin: 0 0 16px;
}

.photo-led-copy p {
  font-size: 16px;
  color: #526273;
  line-height: 1.75;
  margin: 0 0 22px;
}

.compact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 26px;
}

.compact-points span {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #d9e6f6;
  color: #004aad;
  font-size: 13px;
  font-weight: 850;
}

.blue-link-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  background: #004aad;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 850;
  font-size: 14px;
}

.factory-gallery-large {
  padding: 66px 7% 76px;
  background: linear-gradient(180deg, #ffffff, #eef5ff);
}

.large-gallery-grid {
  max-width: 1260px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}

.large-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #dce5f1;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 54, 96, .07);
}

.large-gallery-grid .main-photo {
  grid-row: span 2;
  object-position: center top;
}

.gallery-contact-bar {
  max-width: 1260px;
  margin: 24px auto 0;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 12px 26px rgba(20, 54, 96, .06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.gallery-contact-bar strong {
  color: #101a31;
}

.gallery-contact-bar a {
  color: #004aad;
  font-weight: 850;
}

.headset svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

@media (max-width: 1000px) {
  .photo-led-card,
  .photo-led-card.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 16px;
  }

  .photo-led-image img {
    min-height: 360px;
  }

  .photo-led-copy {
    padding: 20px 8px 8px;
  }

  .large-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .large-gallery-grid img,
  .large-gallery-grid .main-photo {
    grid-row: auto;
    height: 340px;
  }
}

@media (max-width: 560px) {
  .photo-led-section,
  .factory-gallery-large {
    padding-left: 5%;
    padding-right: 5%;
  }

  .photo-led-image img {
    min-height: 300px;
  }

  .blue-link-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .large-gallery-grid img,
  .large-gallery-grid .main-photo {
    height: 280px;
  }

  .gallery-contact-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Final dark dotted CTA block */
.dark-dot-cta {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #061b36;
  color: #ffffff;
}

.dark-dot-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 45%, rgba(45, 132, 255, .28), transparent 26%),
    radial-gradient(circle at 86% 28%, rgba(0, 170, 255, .18), transparent 28%),
    linear-gradient(135deg, #05152b 0%, #06264d 56%, #004aad 100%);
}

.dark-dot-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(255,255,255,.75) 1px, transparent 1.2px);
  background-size: 13px 13px;
}

.dark-dot-bg::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -55%;
  width: 55%;
  height: 180%;
  background: rgba(255,255,255,.08);
  transform: skewX(-18deg);
}

.dark-dot-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 7%;
  display: grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 46px;
  align-items: center;
}

.dark-dot-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.dark-dot-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.dark-dot-icon svg {
  width: 38px;
  height: 38px;
  fill: #ffffff;
}

.dark-dot-kicker {
  margin: 0 0 8px;
  color: #9fd0ff;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 900;
}

.dark-dot-left h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: #ffffff;
}

.dark-dot-left p {
  margin: 0;
  color: #d9ebff;
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}

.dark-dot-actions {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.dark-white-btn,
.dark-outline-btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
  font-size: 15px;
}

.dark-white-btn {
  background: #ffffff;
  color: #004aad;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.dark-outline-btn {
  border: 1px solid rgba(255,255,255,.62);
  color: #ffffff;
  background: rgba(255,255,255,.08);
}

.dark-white-btn span,
.dark-outline-btn span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.dark-white-btn span {
  border: 1px solid rgba(0,74,173,.35);
}

.dark-outline-btn span {
  border: 1px solid rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .dark-dot-inner {
    grid-template-columns: 1fr;
    padding: 46px 5%;
    gap: 28px;
  }

  .dark-dot-left {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .dark-dot-left {
    flex-direction: column;
  }

  .dark-white-btn,
  .dark-outline-btn {
    font-size: 13px;
    padding: 0 16px;
  }
}


/* Multi-page subpage styles */
.subpage-main {
  background: #ffffff;
}

.sub-hero {
  min-height: 440px;
  padding: 72px 7%;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 30%, rgba(0, 86, 207, .14), transparent 28%),
    linear-gradient(105deg, #edf6ff 0%, #ffffff 58%, #e7f2ff 100%);
  border-bottom: 1px solid #dce8f6;
}

.sub-hero h1 {
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 22px;
  color: #101a31;
}

.sub-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: #526273;
  max-width: 660px;
  margin: 0;
}

.sub-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #dce5f1;
  box-shadow: 0 18px 40px rgba(20, 54, 96, .08);
  background: #ffffff;
}

.sub-section {
  padding: 70px 7%;
  background: #ffffff;
}

.sub-section.soft {
  background: #f4f8ff;
}

.sub-card-grid {
  max-width: 1260px;
  margin: 30px auto 0;
  display: grid;
  gap: 24px;
}

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

.sub-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.sub-card-grid article {
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 14px 30px rgba(20, 54, 96, .055);
  padding: 22px;
}

.sub-card-grid article img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 18px;
  border: 1px solid #e1e8f2;
}

.sub-card-grid h3 {
  font-size: 21px;
  color: #101a31;
  margin: 0 0 10px;
}

.sub-card-grid p,
.sub-card-grid li {
  font-size: 14px;
  line-height: 1.65;
  color: #526273;
}

.sub-card-grid ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.two-col-feature {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.two-col-feature h2,
.contact-info-panel h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.14;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  color: #101a31;
}

.two-col-feature p,
.contact-info-panel p {
  font-size: 16px;
  color: #526273;
  line-height: 1.75;
}

.two-col-feature img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #dce5f1;
  box-shadow: 0 18px 40px rgba(20, 54, 96, .08);
}

.sub-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.sub-list div {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 10px 24px rgba(20, 54, 96, .05);
}

.sub-list strong,
.sub-list span {
  display: block;
}

.sub-list strong {
  color: #101a31;
  margin-bottom: 5px;
}

.sub-list span {
  color: #526273;
  font-size: 14px;
}

.solution-page-grid {
  max-width: 1260px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-page-grid article {
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 14px 30px rgba(20, 54, 96, .055);
}

.solution-page-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
}

.solution-page-grid h3,
.solution-page-grid p {
  padding: 0 20px;
}

.solution-page-grid h3 {
  font-size: 19px;
  margin: 18px 0 8px;
}

.solution-page-grid p {
  color: #526273;
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 20px;
}

.contact-page-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.blue-link-btn.light {
  background: #ffffff;
  color: #004aad;
  border: 1px solid #c9dcf4;
}

.contact-info-panel {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 16px 36px rgba(20, 54, 96, .07);
  padding: 36px;
}

.contact-big-list {
  display: grid;
  gap: 16px;
}

.contact-big-list a {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: #004aad;
  color: #ffffff;
}

.contact-big-list a:nth-child(2) {
  background: #10213b;
}

.contact-big-list strong {
  font-size: 16px;
}

.contact-big-list span {
  font-size: 19px;
  font-weight: 900;
}

.subpage-cta {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .sub-hero,
  .two-col-feature,
  .contact-info-panel {
    grid-template-columns: 1fr;
  }

  .sub-card-grid.three,
  .sub-card-grid.four,
  .solution-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-hero img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .sub-hero,
  .sub-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .sub-card-grid.three,
  .sub-card-grid.four,
  .solution-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    padding: 22px;
  }

  .contact-big-list span {
    font-size: 16px;
  }
}





/* Engineer Contact Page */
.engineer-contact-page {
  background: #ffffff;
}

.engineer-contact-hero {
  min-height: 560px;
  padding: 86px 7%;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 32%, rgba(0, 86, 207, .16), transparent 28%),
    linear-gradient(105deg, #edf6ff 0%, #ffffff 58%, #e7f2ff 100%);
  border-bottom: 1px solid #dce8f6;
}

.engineer-contact-copy h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.05em;
  color: #101a31;
  margin: 0 0 22px;
}

.engineer-contact-copy p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.75;
  color: #526273;
  margin: 0;
}

.engineer-quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.engineer-quick-points span {
  padding: 11px 15px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d2e2f7;
  color: #004aad;
  font-weight: 850;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(20, 54, 96, .05);
}

.engineer-contact-card {
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 18px 42px rgba(20, 54, 96, .10);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.engineer-card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #e4edf8;
}

.engineer-card-title strong,
.engineer-card-title span {
  display: block;
}

.engineer-card-title strong {
  color: #101a31;
  font-size: 21px;
  margin-bottom: 6px;
}

.engineer-card-title span {
  color: #526273;
  font-size: 14px;
}

.engineer-contact-card a {
  display: grid;
  gap: 7px;
  padding: 24px 26px;
  border-radius: 6px;
}

.engineer-contact-card a span {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.engineer-contact-card a strong {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.2;
}

.engineer-whatsapp {
  background: #004aad;
  color: #ffffff;
}

.engineer-email {
  background: #f2f7ff;
  color: #004aad;
  border: 1px solid #d2e2f7;
}

.engineer-process-section {
  padding: 60px 7% 76px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: start;
  background: #ffffff;
}

.engineer-process-section h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -.035em;
  margin: 0;
  color: #101a31;
}

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

.engineer-process-grid div {
  padding: 22px;
  border: 1px solid #dce5f1;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 54, 96, .055);
}

.engineer-process-grid strong,
.engineer-process-grid span {
  display: block;
}

.engineer-process-grid strong {
  color: #101a31;
  font-size: 17px;
  margin-bottom: 8px;
}

.engineer-process-grid span {
  color: #526273;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .engineer-contact-hero,
  .engineer-process-section {
    grid-template-columns: 1fr;
  }

  .engineer-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .engineer-contact-hero,
  .engineer-process-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .engineer-contact-card {
    padding: 18px;
  }

  .engineer-contact-card a {
    padding: 20px;
  }
}


/* Mobile UI Global Fix */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .header {
    height: auto !important;
    min-height: 72px;
    padding: 12px 5% !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .logo img {
    width: 168px !important;
    max-height: 54px !important;
    object-fit: contain !important;
  }

  .quote-btn {
    margin: 0 !important;
    padding: 11px 14px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
  }

  .quote-btn span {
    display: none !important;
  }

  .nav {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding: 6px 0 2px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav::-webkit-scrollbar {
    display: none !important;
  }

  .nav a {
    flex: 0 0 auto !important;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    background: #f2f7ff !important;
    color: #18324f !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .nav a.active,
  .nav a:hover {
    color: #ffffff !important;
    background: #004aad !important;
  }

  .nav a.active::after {
    display: none !important;
  }

  .hero,
  .sub-hero,
  .engineer-contact-hero,
  .simple-contact-hero {
    min-height: auto !important;
    padding: 34px 5% 28px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    overflow: hidden !important;
  }

  .hero h1,
  .sub-hero h1,
  .engineer-contact-copy h1,
  .simple-contact-copy h1 {
    font-size: 36px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 16px !important;
  }

  .hero p,
  .sub-hero p,
  .engineer-contact-copy p,
  .simple-contact-copy p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions,
  .contact-page-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 22px 0 !important;
  }

  .btn,
  .blue-link-btn,
  .white-btn,
  .outline-btn,
  .dark-white-btn,
  .dark-outline-btn {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .feature-row div {
    background: rgba(255,255,255,.72) !important;
    border: 1px solid #dce8f6 !important;
    border-radius: 10px !important;
    padding: 12px !important;
    grid-template-columns: 28px 1fr !important;
  }

  .feature-row b {
    font-size: 22px !important;
  }

  .feature-row strong {
    font-size: 11px !important;
  }

  .feature-row span {
    font-size: 10px !important;
  }

  .hero-visual {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-visual img,
  .sub-hero img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top !important;
  }

  .products,
  .quality-band,
  .coordinated-showcase,
  .photo-led-section,
  .factory-gallery-large,
  .real-photos,
  .sub-section,
  .engineer-process-section,
  .simple-send-section {
    padding: 42px 5% !important;
  }

  .section-title.center {
    text-align: left !important;
  }

  .section-title h2,
  .quality-copy h2,
  .photo-led-copy h3,
  .two-col-feature h2,
  .contact-info-panel h2,
  .engineer-process-section h2,
  .simple-send-section h2 {
    font-size: 28px !important;
    line-height: 1.16 !important;
  }

  .product-cards,
  .quality-grid,
  .sub-card-grid.three,
  .sub-card-grid.four,
  .solution-page-grid,
  .engineer-process-grid,
  .simple-send-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .product-cards article {
    min-height: auto !important;
    grid-template-columns: 48px 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  .product-cards article img {
    grid-column: 1 / -1 !important;
    height: auto !important;
    max-height: 230px !important;
    width: 100% !important;
    object-fit: contain !important;
    margin-top: 8px !important;
  }

  .quality-grid div {
    border-right: 0 !important;
    border-bottom: 1px solid #d3e1f5 !important;
    padding: 16px 0 !important;
    grid-template-columns: 48px 1fr !important;
  }

  .quality-grid div:last-child {
    border-bottom: 0 !important;
  }

  .photo-led-card,
  .photo-led-card.reverse,
  .showcase-cards article,
  .two-col-feature,
  .contact-info-panel,
  .engineer-contact-hero,
  .simple-contact-hero {
    grid-template-columns: 1fr !important;
  }

  .photo-led-card,
  .showcase-cards article {
    padding: 14px !important;
    gap: 16px !important;
  }

  .photo-led-image img,
  .showcase-cards article img,
  .two-col-feature img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    background: #eef5ff !important;
  }

  .photo-led-copy {
    padding: 14px 4px 4px !important;
  }

  .compact-points {
    gap: 8px !important;
  }

  .compact-points span {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  .large-gallery-grid,
  .photo-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    gap: 14px !important;
  }

  .large-gallery-grid img,
  .large-gallery-grid .main-photo,
  .photo-grid img,
  .solution-page-grid img,
  .sub-card-grid article img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    background: #eef5ff !important;
  }

  .gallery-contact-bar,
  .contact-mini-card,
  .photo-contact-note {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .dark-dot-inner {
    grid-template-columns: 1fr !important;
    padding: 42px 5% !important;
    gap: 24px !important;
  }

  .dark-dot-left {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .dark-dot-left h2 {
    font-size: 30px !important;
  }

  .dark-dot-actions {
    width: 100% !important;
  }

  .footer {
    padding: 28px 5% 96px !important;
  }

  .floating-contact {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    justify-content: center !important;
    border-radius: 999px !important;
    padding: 8px !important;
    z-index: 999 !important;
  }

  .floating-contact a {
    flex: 1 !important;
    text-align: center !important;
    padding: 12px 10px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .sub-hero h1,
  .engineer-contact-copy h1,
  .simple-contact-copy h1 {
    font-size: 32px !important;
  }

  .feature-row {
    grid-template-columns: 1fr !important;
  }

  .header {
    grid-template-columns: 1fr !important;
  }

  .quote-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .logo img {
    width: 156px !important;
  }

  .engineer-contact-card,
  .simple-contact-card,
  .contact-info-panel {
    padding: 18px !important;
  }

  .engineer-contact-card a,
  .simple-contact-card a,
  .contact-big-list a {
    padding: 18px !important;
  }

  .engineer-contact-card a strong,
  .simple-contact-card strong,
  .contact-big-list span {
    font-size: 17px !important;
    word-break: break-word !important;
  }
}


/* Mobile Width Overflow Fix */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

img,
video,
svg {
  max-width: 100%;
}

@media (max-width: 900px) {
  body {
    position: relative;
    overflow-x: hidden !important;
  }

  .header,
  .hero,
  .products,
  .quality-band,
  .coordinated-showcase,
  .photo-led-section,
  .factory-gallery-large,
  .real-photos,
  .dark-dot-cta,
  .sub-hero,
  .sub-section,
  .engineer-contact-hero,
  .engineer-process-section,
  .simple-contact-hero,
  .simple-send-section,
  .contact-strip,
  .footer {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .hero,
  .sub-hero,
  .engineer-contact-hero,
  .simple-contact-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .products,
  .quality-band,
  .coordinated-showcase,
  .photo-led-section,
  .factory-gallery-large,
  .real-photos,
  .sub-section,
  .engineer-process-section,
  .simple-send-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .nav {
    max-width: 100% !important;
  }

  .nav a {
    max-width: none !important;
  }

  .hero-copy,
  .hero-visual,
  .sub-hero > *,
  .engineer-contact-copy,
  .engineer-contact-card,
  .simple-contact-copy,
  .simple-contact-card,
  .photo-led-card,
  .photo-led-copy,
  .photo-led-image,
  .dark-dot-inner,
  .dark-dot-actions,
  .dark-dot-left,
  .two-col-feature,
  .contact-info-panel,
  .large-gallery-grid,
  .photo-grid,
  .product-cards,
  .quality-grid,
  .sub-card-grid,
  .solution-page-grid,
  .engineer-process-grid,
  .simple-send-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-visual img,
  .sub-hero img,
  .photo-led-image img,
  .large-gallery-grid img,
  .photo-grid img,
  .product-cards img,
  .sub-card-grid img,
  .solution-page-grid img,
  .two-col-feature img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dark-white-btn,
  .dark-outline-btn,
  .white-btn,
  .outline-btn,
  .blue-link-btn,
  .btn,
  .quote-btn,
  .engineer-contact-card a,
  .simple-contact-card a,
  .contact-big-list a {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .floating-contact {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
  }

  .floating-contact a {
    min-width: 0 !important;
    white-space: nowrap !important;
  }

  .dark-dot-bg::after,
  .hero::after {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .hero,
  .sub-hero,
  .engineer-contact-hero,
  .simple-contact-hero,
  .products,
  .quality-band,
  .coordinated-showcase,
  .photo-led-section,
  .factory-gallery-large,
  .real-photos,
  .sub-section,
  .engineer-process-section,
  .simple-send-section,
  .header {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .floating-contact {
    left: 8px !important;
    right: 8px !important;
    max-width: calc(100vw - 16px) !important;
  }
}
