
:root{
  --ink:#0f1f33;
  --muted:#5d6b7c;
  --brand:#0f766e;
  --brand-2:#18b981;
  --soft:#f5faf9;
  --line:#e3ebf0;
  --dark:#081626;
  --card:#ffffff;
  --radius:22px;
  --shadow:0 16px 42px rgba(15,31,51,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
img,video{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1160px,92vw);margin:auto}
.announcement{
  background:#eef8f6;
  border-bottom:1px solid var(--line);
  font-size:13px;
  color:#244054;
}
.announcement .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:9px 0;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.6px;
}
.logo-mark{
  width:40px;height:40px;border-radius:13px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;font-weight:900;
}
.menu{display:flex;gap:24px;align-items:center;font-size:15px;font-weight:800}
.menu a{color:#203247}
.menu a.active,.menu a:hover{color:var(--brand)}
.mobile-toggle{display:none;border:0;background:none;font-size:28px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:13px 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  transition:.2s ease;
}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 12px 28px rgba(15,118,110,.2)}
.btn-primary:hover{background:#0b5f59;transform:translateY(-2px)}
.btn-light{background:#fff;border-color:var(--line);color:var(--ink)}
.btn-light:hover{border-color:var(--brand);color:var(--brand)}
.btn-whatsapp{background:#20d366;color:#fff;box-shadow:0 12px 28px rgba(32,211,102,.2)}
.section{padding:78px 0}
.section-soft{background:var(--soft)}
.section-compact{padding:54px 0}
.hero{
  background:linear-gradient(135deg,#f5fbff 0%,#f1faf6 55%,#fff 100%);
  padding:64px 0 58px;
}
.hero-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:46px;
  align-items:center;
}
.eyebrow,.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  background:#e9fbf4;
  border:1px solid #c7f5e4;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:7px 12px;
  border-radius:999px;
}
h1,h2,h3,p{margin-top:0}
.hero h1,.page-hero h1{
  font-size:clamp(42px,5.2vw,68px);
  line-height:1.04;
  letter-spacing:-2px;
  margin:18px 0 18px;
}
.lead,.page-hero p{
  font-size:19px;
  color:var(--muted);
  max-width:680px;
}
.hero-actions,.dual-cta,.pill-row{display:flex;gap:12px;flex-wrap:wrap}
.hero-actions{margin-top:28px}
.hero-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:10px;
  box-shadow:var(--shadow);
}
.hero-card img,.hero-card video{border-radius:20px;width:100%;height:auto}
.kpi-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:30px}
.kpi,.summary-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 26px rgba(15,31,51,.05);
}
.kpi strong,.summary-box strong{display:block;font-size:24px;color:var(--brand);line-height:1.1}
.kpi span,.summary-box span{display:block;color:var(--muted);font-size:14px;font-weight:700;margin-top:6px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:36px;
  margin-bottom:34px;
}
.section-head h2{
  font-size:clamp(30px,3.6vw,46px);
  line-height:1.12;
  letter-spacing:-1.1px;
  margin:0;
}
.section-head p{color:var(--muted);max-width:560px;margin:0}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card,.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 12px 30px rgba(15,31,51,.06);
}
.card .body,.info-card{padding:24px}
.card h3,.info-card h3{font-size:22px;line-height:1.2;margin:12px 0 10px}
.card p,.info-card p{color:var(--muted);margin-bottom:14px}
.product-card img{width:100%;height:260px;object-fit:cover;background:#f7fbfd}
.product-card .svg-img{object-fit:contain;padding:26px;background:#f2faf8}
.link-arrow{font-weight:900;color:var(--brand)}
.feature-list{display:grid;gap:10px;margin:16px 0 0;padding:0;list-style:none}
.feature-list li{display:flex;gap:10px;color:#31445a}
.feature-list li:before{content:"✓";color:var(--brand);font-weight:900}
.split{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:center}
.visual-frame{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow);
}
.visual-frame img,.visual-frame video{width:100%;height:auto}
.video-card{padding:10px}
.video-card video{border-radius:20px;background:#000}
.steps{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;counter-reset:step}
.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
}
.step:before{
  counter-increment:step;
  content:counter(step);
  display:grid;
  place-items:center;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  margin-bottom:12px;
}
.spec-table{width:100%;border-collapse:collapse;background:#fff}
.spec-table td{padding:14px 12px;border-bottom:1px solid var(--line);vertical-align:top}
.spec-table tr:last-child td{border-bottom:0}
.spec-table td:first-child{font-weight:900;color:var(--ink);width:36%}
.catalog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.catalog-card{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 30px rgba(15,31,51,.06);
}
.catalog-card img{width:100%;height:100%;min-height:320px;object-fit:contain;background:#f3faf8;padding:28px}
.catalog-body{padding:24px}
.spec-list{display:grid;gap:0;margin:16px 0 20px;padding:0}
.spec-list div{display:grid;grid-template-columns:128px minmax(0,1fr);gap:12px;padding:10px 0;border-bottom:1px solid var(--line)}
.spec-list dt{font-weight:900;font-size:13px;text-transform:uppercase;letter-spacing:.04em}
.spec-list dd{margin:0;color:#405368;font-weight:700;font-size:14px;line-height:1.45}
.catalog-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.factory-photo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.factory-photo-card img{height:260px;object-fit:contain;background:#fff;width:100%}
.factory-photo-card .body{padding:18px}
.page-hero{
  background:linear-gradient(135deg,#f5fbff,#eef9f5);
  padding:62px 0 48px;
}
.breadcrumb{font-size:14px;font-weight:900;color:var(--brand);margin-bottom:16px}
.form{display:grid;gap:14px}
.form input,.form textarea,.form select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:15px 16px;
  font:inherit;
}
.form textarea{min-height:130px}
.notice{
  background:#fff8eb;
  border:1px solid #ffdfb8;
  color:#80511e;
  border-radius:16px;
  padding:14px 16px;
  font-weight:700;
}
.cta{
  background:linear-gradient(135deg,var(--brand),#064f4b);
  color:#fff;
  border-radius:30px;
  padding:42px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}
.cta h2{font-size:38px;line-height:1.1;margin-bottom:10px}
.cta p{color:#d8fff3;margin:0}
.bottom-actions{display:flex;gap:12px;justify-content:flex-end;flex-wrap:wrap}
.footer{background:#07101e;color:#cbd6e2;padding:54px 0 28px}
.footer-grid{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:30px;margin-bottom:28px}
.footer h4{color:#fff;margin:0 0 14px}
.footer a{display:block;color:#cbd6e2;margin:8px 0}
.copyright{border-top:1px solid rgba(255,255,255,.12);padding-top:20px;font-size:13px;color:#8ea1b7}
.side-inquiry{
  position:fixed;
  right:20px;
  top:46%;
  z-index:40;
  display:grid;
  gap:10px;
}
.side-inquiry a{
  display:flex;align-items:center;gap:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  box-shadow:var(--shadow);
  font-weight:900;
}
.side-inquiry small{display:block;font-weight:700;color:var(--muted);font-size:11px}
.side-inquiry__whatsapp{color:#0f766e}
.side-inquiry__quote{color:#0f766e}
@media(max-width:1100px){
  .hero-grid,.split,.cta{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .factory-photo-grid{grid-template-columns:repeat(2,1fr)}
  .catalog-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:900px){
  body{padding-bottom:78px}
  .announcement .container{display:block}
  .menu{display:none;position:absolute;left:0;right:0;top:72px;background:#fff;border-bottom:1px solid var(--line);padding:18px 4vw;flex-direction:column;align-items:flex-start}
  .menu.open{display:flex}
  .mobile-toggle{display:block}
  .nav{height:68px}
  .section{padding:58px 0}
  .section-head{display:block}
  .section-head p{margin-top:10px}
  .grid-2,.grid-3,.grid-4,.catalog-card{grid-template-columns:1fr}
  .catalog-card img{min-height:0;height:250px}
  .side-inquiry{left:12px;right:12px;top:auto;bottom:12px;grid-template-columns:1fr 1fr}
  .side-inquiry a{justify-content:center;padding:11px 10px}
  .side-inquiry small{display:none}
}
@media(max-width:560px){
  .hero h1,.page-hero h1{font-size:38px}
  .lead,.page-hero p{font-size:17px}
  .kpi-row,.factory-photo-grid,.steps,.footer-grid{grid-template-columns:1fr}
  .catalog-actions,.bottom-actions{grid-template-columns:1fr;display:grid}
  .btn{width:100%}
  .cta{padding:28px}
  .cta h2{font-size:28px}
}


/* v35 homepage logic refinement: clean custom grip socks factory flow */
.home-hero-v35{padding:66px 0 54px;background:linear-gradient(135deg,#f7fbff 0%,#eef9f5 52%,#ffffff 100%)}
.home-hero-v35 .hero-grid{grid-template-columns:.92fr 1.08fr;gap:42px;align-items:center}
.hero-copy-v35 h1{max-width:760px}.hero-copy-v35 .lead{max-width:680px}
.hero-media-v35{padding:12px;border-radius:30px}.hero-media-v35 img{border-radius:22px}
.hero-trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.hero-trust-row span{font-weight:900;color:var(--brand);background:#e9fbf4;border:1px solid #c7f5e4;border-radius:999px;padding:9px 12px;font-size:13px}
.best-for{font-weight:800;color:#24364c!important;margin-top:8px!important}.lead-small{font-size:18px;color:var(--muted);line-height:1.65;max-width:620px}.option-split-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:32px;align-items:center}.option-card-wrap{display:grid;grid-template-columns:1fr 1fr;gap:18px}.option-panel{padding:26px}.option-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:15px}.option-tags span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:9px 13px;font-weight:800;color:#2c4056}.scenario-grid-v35{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.scenario-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 10px 26px rgba(12,31,51,.05)}.scenario-card strong{display:block;font-size:19px;color:#152438;margin-bottom:6px}.scenario-card span{display:block;color:var(--muted);line-height:1.5}.custom-option-grid-v35{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.mini-option{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid var(--line);border-radius:18px;padding:14px 16px;box-shadow:0 8px 20px rgba(12,31,51,.05)}.mini-option span{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#e9fbf4;color:var(--brand);font-weight:900}.mini-option strong{color:#1d3047}.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}.grip-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;text-align:center;box-shadow:0 10px 26px rgba(12,31,51,.05)}.grip-card h3{font-size:19px;margin:14px 0 8px}.grip-card p{color:var(--muted);font-size:14px;line-height:1.5}.grip-dots{height:88px;border-radius:18px;background:#f8fbfd;border:1px dashed #cfe0ee;display:grid;place-items:center;color:var(--brand);font-weight:900}.dot-pattern{background-image:radial-gradient(circle,#0f766e 4px,transparent 5px);background-size:22px 22px}.bar-pattern{background:repeating-linear-gradient(135deg,#f8fbfd 0 14px,#d9f6ef 14px 22px)}.logo-pattern,.custom-pattern{font-size:18px;letter-spacing:.05em}.full-pattern{background-image:radial-gradient(circle,#0f766e 4px,transparent 5px);background-size:18px 18px;background-color:#f8fbfd}.factory-layout-v35{display:grid;grid-template-columns:1.12fr .88fr;gap:24px;align-items:center}.factory-main-photo{border-radius:26px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow);background:#fff}.factory-main-photo img{width:100%;height:auto;display:block}.factory-thumb-row{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:18px}.factory-thumb-row img{width:100%;height:145px;object-fit:cover;border-radius:18px;border:1px solid var(--line);box-shadow:0 8px 20px rgba(12,31,51,.05)}.order-steps-v35{grid-template-columns:repeat(6,1fr)}.center-cta{text-align:center;margin-top:24px}.buyer-info-grid-v35{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.project-case-grid-v35{grid-template-columns:repeat(5,1fr)}.case-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 10px 26px rgba(12,31,51,.05)}.case-card span{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:50%;background:#e9fbf4;color:var(--brand);font-weight:900}.case-card h3{font-size:19px;line-height:1.25;margin:14px 0 8px}.case-card p{font-size:14px;color:var(--muted);line-height:1.5}.faq-grid-v35{display:grid;grid-template-columns:1fr 1fr;gap:18px}.faq-item{background:#fff;border:1px solid var(--line);border-radius:22px;padding:24px;box-shadow:0 10px 26px rgba(12,31,51,.05)}.faq-item h3{font-size:20px;line-height:1.3;margin:0 0 8px}.faq-item p{color:var(--muted);margin:0}.final-cta-v35{padding-top:70px}
@media(max-width:1180px){.grid-5,.project-case-grid-v35,.order-steps-v35{grid-template-columns:repeat(3,1fr)}.scenario-grid-v35{grid-template-columns:repeat(2,1fr)}.factory-layout-v35,.option-split-grid{grid-template-columns:1fr}.home-hero-v35 .hero-grid{grid-template-columns:1fr}.hero-media-v35{max-width:820px}}
@media(max-width:900px){.buyer-info-grid-v35,.option-card-wrap,.factory-thumb-row,.grid-5,.project-case-grid-v35,.order-steps-v35{grid-template-columns:1fr 1fr}.faq-grid-v35{grid-template-columns:1fr}.hero-media-v35{order:2}.hero-copy-v35{order:1}}
@media(max-width:560px){.scenario-grid-v35,.buyer-info-grid-v35,.option-card-wrap,.factory-thumb-row,.grid-5,.project-case-grid-v35,.order-steps-v35,.custom-option-grid-v35{grid-template-columns:1fr}.hero-trust-row span{width:100%;text-align:center}.section{padding:52px 0}.scenario-card,.grip-card,.case-card,.faq-item{padding:18px}.home-hero-v35{padding:48px 0}}


/* v36 core page structure refinement */
.product-directory-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.product-directory-card{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(15,31,51,.06);
}
.product-directory-card img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:contain;
  background:#f3faf8;
  padding:28px;
}
.product-directory-card .body{padding:24px;display:flex;flex-direction:column;align-items:flex-start}
.product-directory-card h3{font-size:22px;line-height:1.22;margin:12px 0 8px}
.product-directory-card p{color:var(--muted);margin-bottom:16px}
.param-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.customization-directory{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.customization-directory .info-card:nth-child(5){grid-column:1/-1}
.centered-cta{
  text-align:center;
  max-width:800px;
}
.centered-cta h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  letter-spacing:-1px;
}
.centered-cta p{
  color:var(--muted);
  font-size:18px;
  max-width:680px;
  margin:0 auto 24px;
}
.contact-clean-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:start;
}
.upload-label{
  display:block;
  border:1px dashed #b9cbd8;
  background:#f8fbfd;
  border-radius:14px;
  padding:14px 16px;
  font-weight:800;
  color:#34475d;
}
.upload-label input{
  margin-top:9px;
  border:0;
  padding:0;
  background:transparent;
}
@media(max-width:1100px){
  .product-directory-grid,.contact-clean-grid{grid-template-columns:1fr}
  .param-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .product-directory-card{grid-template-columns:1fr}
  .product-directory-card img{min-height:0;height:240px}
  .param-grid,.customization-directory{grid-template-columns:1fr}
  .customization-directory .info-card:nth-child(5){grid-column:auto}
}


/* v41 clean homepage - consistent visual + copy layout */
.home-clean-hero{padding:76px 0 58px;background:linear-gradient(135deg,#f7fbff 0%,#effaf5 58%,#ffffff 100%)}
.clean-hero-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:42px;align-items:center}
.clean-hero-copy h1{max-width:720px}
.clean-muted{color:var(--muted);font-size:17px;line-height:1.72;margin:0 0 22px;max-width:620px}
.clean-hero-image{border-radius:30px;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.clean-hero-image img,.clean-image-card img,.clean-scenario-image img{display:block;width:100%;height:auto}
.clean-stat-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.clean-stat-row span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:9px 13px;font-weight:800;color:#1d3047}
.clean-section{padding-top:72px;padding-bottom:72px}
.clean-title-row{display:grid;grid-template-columns:.95fr 1.05fr;gap:28px;align-items:end;margin-bottom:28px}
.clean-title-row h2{margin:8px 0 0}
.clean-title-row p{margin:0;color:var(--muted);font-size:18px;line-height:1.65;max-width:660px}
.clean-product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.clean-product-card{background:#fff;border:1px solid var(--line);border-radius:24px;padding:20px;box-shadow:0 10px 30px rgba(12,31,51,.06)}
.clean-product-card img{width:100%;height:160px;object-fit:contain;background:#f8fbfd;border:1px solid var(--line);border-radius:18px;padding:14px;margin-bottom:16px}
.clean-product-card h3{font-size:20px;line-height:1.28;margin:0 0 8px}
.clean-product-card p{margin:0 0 8px;color:var(--muted);line-height:1.55}
.clean-product-card small{display:block;color:#0f766e;font-weight:800;line-height:1.45}
.clean-two-column{display:grid;grid-template-columns:.94fr 1.06fr;gap:32px;align-items:center}
.clean-two-column-reverse{grid-template-columns:1.06fr .94fr}
.clean-image-card{border-radius:28px;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.clean-option-group{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:20px}
.clean-option-box{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 10px 26px rgba(12,31,51,.05)}
.clean-option-box h3{margin:0 0 14px;font-size:20px}
.clean-tags{display:flex;gap:10px;flex-wrap:wrap}
.clean-tags span{background:#f8fbfd;border:1px solid var(--line);border-radius:999px;padding:8px 12px;font-weight:800;color:#263a52}
.clean-scenario-wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:28px;align-items:center}
.clean-scenario-image{border-radius:28px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow);background:#fff}
.clean-scenario-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.clean-scenario-grid span{background:#fff;border:1px solid var(--line);border-radius:18px;padding:16px 18px;font-weight:900;color:#1d3047;box-shadow:0 8px 22px rgba(12,31,51,.05)}
.clean-custom-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:20px}
.clean-custom-grid div,.clean-grip-grid div,.clean-factory-list span,.clean-buyer-list div,.clean-case-list span{background:#fff;border:1px solid var(--line);border-radius:18px;padding:16px 18px;box-shadow:0 8px 22px rgba(12,31,51,.05)}
.clean-custom-grid strong,.clean-grip-grid b,.clean-buyer-list strong{display:block;color:#152438;margin-bottom:5px}
.clean-custom-grid span,.clean-grip-grid span,.clean-buyer-list span{display:block;color:var(--muted);line-height:1.55}
.clean-grip-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:20px}
.clean-grip-grid div:last-child{grid-column:1 / -1}
.clean-factory-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:18px 0 22px}
.clean-factory-list span{font-weight:900;color:#1d3047}
.clean-factory-thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
.clean-factory-thumbs img{width:100%;height:116px;object-fit:cover;border-radius:16px;border:1px solid var(--line)}
.clean-process-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.clean-process-grid div{background:#fff;border:1px solid var(--line);border-radius:22px;padding:20px;box-shadow:0 8px 22px rgba(12,31,51,.05)}
.clean-process-grid span{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#e9fbf4;color:#0f766e;font-weight:900;margin-bottom:14px}
.clean-process-grid h3{font-size:18px;line-height:1.35;margin:0 0 8px}
.clean-process-grid p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.clean-info-cases{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start}
.clean-buyer-list,.clean-case-list{display:grid;gap:12px;margin-top:18px}
.clean-case-list span{font-weight:900;color:#1d3047}
.clean-faq{display:grid;grid-template-columns:.35fr .65fr;gap:32px;align-items:start}
.clean-faq-list{display:grid;gap:12px}
.clean-faq-list details{background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px 20px;box-shadow:0 8px 22px rgba(12,31,51,.05)}
.clean-faq-list summary{cursor:pointer;font-weight:900;color:#152438}
.clean-faq-list p{margin:10px 0 0;color:var(--muted);line-height:1.6}
@media(max-width:1180px){.clean-hero-grid,.clean-two-column,.clean-two-column-reverse,.clean-scenario-wrap,.clean-info-cases,.clean-faq{grid-template-columns:1fr}.clean-product-grid,.clean-process-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.clean-title-row,.clean-option-group,.clean-scenario-grid,.clean-custom-grid,.clean-grip-grid,.clean-factory-list,.clean-product-grid,.clean-process-grid{grid-template-columns:1fr}.clean-section{padding-top:54px;padding-bottom:54px}.home-clean-hero{padding:52px 0 42px}.clean-factory-thumbs{grid-template-columns:1fr 1fr}.clean-stat-row span{width:100%;text-align:center}}


/* v42 hero poster enlarged */
.home-clean-hero .container{width:min(1280px,94vw)}
.clean-hero-grid{grid-template-columns:.78fr 1.22fr;gap:46px;align-items:center}
.clean-hero-copy h1{max-width:600px}
.clean-hero-image{border-radius:34px}
.clean-hero-image img{display:block;width:100%;height:auto}
@media(max-width:1180px){.home-clean-hero .container{width:min(1160px,92vw)}.clean-hero-grid{grid-template-columns:1fr}}


/* v43 other poster modules enlarged */
.clean-section .container{width:min(1240px,94vw)}
.clean-two-column{grid-template-columns:1.16fr .84fr;gap:40px;align-items:center}
.clean-two-column-reverse{grid-template-columns:.84fr 1.16fr;gap:40px;align-items:center}
.clean-scenario-wrap{grid-template-columns:1.08fr .92fr;gap:36px;align-items:center}
.clean-image-card,.clean-scenario-image{border-radius:30px}
.clean-image-card img,.clean-scenario-image img{display:block;width:100%;height:auto}
.clean-factory-thumbs img{height:128px}
@media(max-width:1180px){.clean-section .container{width:min(1160px,92vw)}.clean-two-column,.clean-two-column-reverse,.clean-scenario-wrap{grid-template-columns:1fr;gap:26px}.clean-factory-thumbs img{height:116px}}


/* v44 multi-image module refinement */
.module-media-v44{align-items:start}
.module-visual-stack{display:grid;gap:14px}
.mini-visual-grid{display:grid;gap:12px}
.mini-visual-grid.two-up{grid-template-columns:1fr 1fr}
.mini-visual-grid.four-up{grid-template-columns:repeat(4,1fr)}
.mini-visual-grid.one-plus-one{grid-template-columns:1fr}
.mini-visual-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:14px;box-shadow:0 8px 22px rgba(12,31,51,.05);display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px}
.mini-visual-card img{width:100%;height:92px;object-fit:contain;background:#f8fbfd;border:1px solid var(--line);border-radius:14px;padding:10px}
.mini-visual-card strong{font-size:16px;line-height:1.35;color:#152438}
.mini-visual-card span{font-size:13px;line-height:1.55;color:var(--muted)}
.mini-visual-grid.icons-only .mini-visual-card img{height:72px}
.mini-visual-card.wide{display:grid;grid-template-columns:120px 1fr;align-items:center;text-align:left}
.mini-visual-card.wide img{height:88px}
@media(max-width:1024px){.mini-visual-grid.four-up{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.mini-visual-grid.two-up,.mini-visual-grid.four-up{grid-template-columns:1fr}.mini-visual-card.wide{grid-template-columns:1fr;text-align:center}}


/* v46 keep first hero, convert other home modules to multi-image cards */
.multi-section{padding-top:70px;padding-bottom:70px}
.multi-title{display:grid;grid-template-columns:.8fr 1.2fr;gap:28px;align-items:end;margin-bottom:28px}
.multi-title h2{margin:6px 0 0}
.multi-title p{margin:0;color:var(--muted);font-size:18px;line-height:1.65;max-width:760px}
.option-gallery-grid,.custom-gallery-layout{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.scenario-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.option-gallery-card,.scenario-gallery-grid article,.custom-gallery-card,.grip-pattern-gallery article,.factory-photo-gallery-v46 article,.process-image-row article,.project-mini-gallery article{background:#fff;border:1px solid var(--line);border-radius:22px;padding:18px;box-shadow:0 9px 24px rgba(12,31,51,.06)}
.option-gallery-card img,.scenario-gallery-grid img,.custom-gallery-card img,.process-image-row img,.project-mini-gallery img{display:block;width:100%;height:145px;object-fit:contain;background:#f8fbfd;border:1px solid var(--line);border-radius:16px;padding:12px;margin-bottom:14px}
.option-gallery-card h3,.scenario-gallery-grid h3,.custom-gallery-card h3,.grip-pattern-gallery h3,.factory-photo-gallery-v46 h3,.process-image-row h3{font-size:19px;line-height:1.32;margin:0 0 8px;color:#152438}
.option-gallery-card p,.scenario-gallery-grid p,.custom-gallery-card p,.grip-pattern-gallery p,.process-image-row p{margin:0;color:var(--muted);line-height:1.55}
.gallery-tags{margin-top:20px;justify-content:center}
.grip-pattern-gallery{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.grip-pattern-gallery .grip-dots{height:110px;margin-bottom:14px}
.factory-photo-gallery-v46{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.factory-photo-gallery-v46 img{display:block;width:100%;height:210px;object-fit:cover;border-radius:16px;border:1px solid var(--line);margin-bottom:14px}
.process-image-row{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.process-image-row span{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#e9fbf4;color:#0f766e;font-weight:900;margin-bottom:12px}
.process-image-row img{height:110px}
.buyer-case-grid-v46{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start}
.project-mini-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:18px}
.project-mini-gallery article{display:flex;align-items:center;gap:12px}
.project-mini-gallery img{width:76px;height:76px;margin:0;flex:0 0 76px}
.project-mini-gallery span{font-weight:900;color:#1d3047;line-height:1.4}
@media(max-width:1180px){.buyer-case-grid-v46{grid-template-columns:1fr}.scenario-gallery-grid,.factory-photo-gallery-v46{grid-template-columns:repeat(2,1fr)}.option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.process-image-row{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.multi-title,.scenario-gallery-grid,.option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.factory-photo-gallery-v46,.process-image-row,.project-mini-gallery{grid-template-columns:1fr}.multi-section{padding-top:52px;padding-bottom:52px}}


/* v53: make Application Scenarios images fill the card */
.scenario-gallery-grid article{
  padding:0 !important;
  overflow:hidden;
}
.scenario-gallery-grid article img{
  width:100% !important;
  height:260px !important;
  object-fit:cover !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:22px 22px 0 0 !important;
  background:transparent !important;
  display:block !important;
}
.scenario-gallery-grid article h3{
  padding:18px 18px 0 !important;
  margin:0 0 8px !important;
}
.scenario-gallery-grid article p{
  padding:0 18px 20px !important;
  margin:0 !important;
}
@media(max-width:900px){
  .scenario-gallery-grid article img{height:300px !important;}
}
@media(max-width:560px){
  .scenario-gallery-grid article img{height:240px !important;}
}


/* v54: make Sock Length & Packaging option images fill the cards */
.option-gallery-card{
  padding:0 !important;
  overflow:hidden;
}
.option-gallery-card img{
  width:100% !important;
  height:260px !important;
  object-fit:cover !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:22px 22px 0 0 !important;
  background:transparent !important;
  display:block !important;
}
.option-gallery-card h3{
  padding:18px 18px 0 !important;
  margin:0 0 8px !important;
}
.option-gallery-card p{
  padding:0 18px 20px !important;
  margin:0 !important;
}
@media(max-width:900px){
  .option-gallery-card img{height:300px !important;}
}
@media(max-width:560px){
  .option-gallery-card img{height:240px !important;}
}


/* v55 customization visuals */
.custom-gallery-card img{height:260px;object-fit:contain;background:#fff;padding:0}
.custom-option-card{padding:0;overflow:hidden}
.custom-option-card .option-visual{display:block;width:100%;height:250px;object-fit:cover;background:#f8fbfd;border-bottom:1px solid var(--line)}
.custom-option-card .option-copy{padding:22px 24px 24px}
.custom-option-card h3{margin-top:12px}


/* v56 Grip Pattern Options image cards - full bleed */
.grip-photo-gallery article{
  padding:0 !important;
  overflow:hidden;
}
.grip-photo-gallery article img{
  width:100% !important;
  height:230px !important;
  object-fit:cover !important;
  display:block !important;
  margin:0 !important;
  border:0 !important;
  border-radius:22px 22px 0 0 !important;
  background:transparent !important;
}
.grip-photo-gallery article h3{
  padding:18px 18px 0 !important;
  margin:0 0 8px !important;
}
.grip-photo-gallery article p{
  padding:0 18px 20px !important;
  margin:0 !important;
}
@media(max-width:1180px){
  .grip-photo-gallery article img{height:260px !important;}
}
@media(max-width:560px){
  .grip-photo-gallery article img{height:240px !important;}
}


/* v57 Order Process image cards - full bleed */
.process-photo-row article{
  padding:0 !important;
  overflow:hidden;
}
.process-photo-row article img{
  width:100% !important;
  height:260px !important;
  object-fit:cover !important;
  display:block !important;
  margin:0 !important;
  border:0 !important;
  border-radius:22px 22px 0 0 !important;
  background:transparent !important;
}
.process-photo-row article span{
  position:absolute !important;
  z-index:2 !important;
  top:14px !important;
  left:14px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:42px !important;
  height:42px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.92) !important;
  color:#0f766e !important;
  font-weight:900 !important;
  box-shadow:0 8px 20px rgba(10,34,54,.12) !important;
}
.process-photo-row article h3{
  padding:18px 18px 0 !important;
  margin:0 0 8px !important;
}
.process-photo-row article p{
  padding:0 18px 20px !important;
  margin:0 !important;
}
@media(max-width:900px){
  .process-photo-row article img{height:300px !important;}
}
@media(max-width:560px){
  .process-photo-row article img{height:240px !important;}
}


/* v58 Project Cases image cards - full bleed */
.project-case-photo-gallery{
  gap:16px !important;
}
.project-case-photo-gallery article{
  padding:0 !important;
  overflow:hidden;
  position:relative !important;
}
.project-case-photo-gallery article img{
  width:100% !important;
  height:220px !important;
  object-fit:cover !important;
  display:block !important;
  margin:0 !important;
  border:0 !important;
  border-radius:20px 20px 0 0 !important;
  background:transparent !important;
}
.project-case-photo-gallery article span{
  display:block !important;
  padding:14px 16px 16px !important;
  margin:0 !important;
}
@media(max-width:900px){
  .project-case-photo-gallery article img{height:260px !important;}
}
@media(max-width:560px){
  .project-case-photo-gallery article img{height:220px !important;}
}


/* v59: Project Cases removed, keep Buyer Information clean */
.buyer-info-only-v59{
  display:block !important;
  max-width:960px !important;
}
.buyer-info-only-v59 .clean-buyer-list{
  margin-top:22px !important;
}


/* v60: Home Product Categories images removed temporarily */
.clean-product-grid .clean-product-card{
  min-height:230px !important;
  padding-top:30px !important;
}
.clean-product-grid .clean-product-card h3{
  margin-top:0 !important;
}
.clean-product-grid .clean-product-card p{
  margin-top:12px !important;
}
.clean-product-grid .clean-product-card small{
  display:block !important;
  margin-top:16px !important;
}


/* v61 Products catalog hero image */
.products-catalog-hero-v61{
  margin:34px auto 0;
  max-width:1180px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 22px 60px rgba(10,34,54,.12);
  background:#fff;
}
.products-catalog-hero-v61 img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
@media(max-width:760px){
  .products-catalog-hero-v61{
    margin-top:24px;
    border-radius:22px;
  }
  .products-catalog-hero-v61 img{
    min-height:260px;
    object-fit:cover;
  }
}


/* v62 Customization page visual upgrade */
.customization-hero-visual-v62{
  margin:34px auto 0;
  max-width:1180px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 22px 60px rgba(10,34,54,.12);
  background:#fff;
}
.customization-hero-visual-v62 img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
.customization-directory-v62 .custom-option-card{
  padding:0 !important;
  overflow:hidden;
}
.customization-directory-v62 .custom-option-card .option-visual{
  width:100% !important;
  height:auto !important;
  aspect-ratio:4 / 3 !important;
  object-fit:contain !important;
  display:block !important;
  box-sizing:border-box !important;
  padding:18px !important;
  background:#f7fafb !important;
  border:0 !important;
  border-radius:22px 22px 0 0 !important;
  margin:0 !important;
}
.customization-directory-v62 .custom-option-card .option-copy{
  padding:22px 24px 24px !important;
}
.development-flow-v62 article{
  padding:0 !important;
  overflow:hidden;
}
.development-flow-v62 article img{
  width:100% !important;
  height:260px !important;
  object-fit:cover !important;
  display:block !important;
  border:0 !important;
  border-radius:22px 22px 0 0 !important;
  margin:0 !important;
}
.development-flow-v62 article h3{
  padding:18px 18px 0 !important;
  margin:0 0 8px !important;
}
.development-flow-v62 article p{
  padding:0 18px 20px !important;
  margin:0 !important;
}
@media(max-width:760px){
  .customization-hero-visual-v62{
    border-radius:22px;
  }
  .customization-hero-visual-v62 img{
    min-height:260px;
    object-fit:cover;
  }
}


/* v66 Products page: minimal premium layout */
.products-minimal-hero-v66{
  padding:84px 0 72px;
  background:
    radial-gradient(circle at 18% 25%, rgba(18,128,119,.10), transparent 32%),
    linear-gradient(135deg,#f8fbff 0%,#f1faf7 58%,#ffffff 100%);
  border-bottom:1px solid var(--line);
  text-align:center;
}
.products-minimal-hero-v66 .container{
  max-width:980px;
}
.products-minimal-hero-v66 h1{
  font-size:clamp(44px,6vw,76px);
  line-height:1;
  letter-spacing:-.055em;
  margin:16px 0 18px;
}
.products-minimal-hero-v66 p{
  max-width:760px;
  margin:0 auto;
  color:#41566b;
  font-size:21px;
  line-height:1.7;
}
.products-minimal-hero-v66 .hero-actions,
.products-minimal-cta-v66 .hero-actions{
  justify-content:center;
  margin-top:28px;
}
.minimal-section-title-v66{
  max-width:760px;
  margin:0 auto 36px;
  text-align:center;
}
.minimal-section-title-v66 h2{
  font-size:clamp(32px,4vw,48px);
  letter-spacing:-.035em;
  line-height:1.08;
  margin:12px 0 12px;
}
.minimal-section-title-v66 p{
  color:#53677b;
  font-size:18px;
  line-height:1.7;
}
.minimal-product-grid-v66{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.minimal-product-card-v66{
  display:block;
  min-height:260px;
  padding:28px 24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  text-decoration:none;
  color:inherit;
  box-shadow:0 12px 32px rgba(10,34,54,.055);
  transition:.22s ease;
}
.minimal-product-card-v66:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 46px rgba(10,34,54,.10);
  border-color:#b9e4dc;
}
.minimal-product-card-v66 span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:999px;
  background:#ecf8f5;
  color:var(--brand);
  font-weight:900;
  margin-bottom:22px;
}
.minimal-product-card-v66 h3{
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
  margin:0 0 12px;
}
.minimal-product-card-v66 p{
  color:#53677b;
  line-height:1.7;
  margin:0;
}
.minimal-options-grid-v66{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.minimal-options-grid-v66 div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 10px 28px rgba(10,34,54,.045);
}
.minimal-options-grid-v66 strong{
  display:block;
  font-size:18px;
  color:var(--ink);
  margin-bottom:10px;
}
.minimal-options-grid-v66 span{
  color:#52667b;
  line-height:1.65;
}
.products-minimal-cta-v66{
  max-width:900px;
  text-align:center;
  padding:54px 34px;
  border:1px solid var(--line);
  border-radius:34px;
  background:linear-gradient(135deg,#ffffff 0%,#f3fbf9 100%);
  box-shadow:0 18px 55px rgba(10,34,54,.08);
}
.products-minimal-cta-v66 h2{
  font-size:clamp(32px,4.4vw,52px);
  line-height:1.08;
  letter-spacing:-.04em;
  margin:14px 0 14px;
}
.products-minimal-cta-v66 p{
  max-width:700px;
  margin:0 auto;
  color:#52677b;
  font-size:18px;
  line-height:1.7;
}
@media(max-width:1180px){
  .minimal-product-grid-v66{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:900px){
  .minimal-options-grid-v66{
    grid-template-columns:1fr;
  }
}
@media(max-width:640px){
  .products-minimal-hero-v66{
    text-align:left;
    padding:54px 0 44px;
  }
  .products-minimal-hero-v66 .hero-actions,
  .products-minimal-cta-v66 .hero-actions{
    justify-content:flex-start;
  }
  .minimal-section-title-v66{
    text-align:left;
  }
  .minimal-product-grid-v66{
    grid-template-columns:1fr;
  }
  .minimal-product-card-v66{
    min-height:auto;
  }
  .products-minimal-cta-v66{
    text-align:left;
    padding:34px 22px;
  }
}


/* v67 Products page: simple product style display */
.simple-products-hero-v67{
  padding:78px 0 46px;
  background:linear-gradient(135deg,#f8fbff 0%,#f2faf7 62%,#fff 100%);
  border-bottom:1px solid var(--line);
  text-align:center;
}
.simple-products-hero-v67 .container{
  max-width:900px;
}
.simple-products-hero-v67 h1{
  font-size:clamp(44px,6vw,76px);
  line-height:1;
  letter-spacing:-.055em;
  margin:16px 0 16px;
}
.simple-products-hero-v67 p{
  color:#4b5f73;
  font-size:20px;
  line-height:1.7;
  max-width:720px;
  margin:0 auto;
}
.simple-products-section-v67{
  padding-top:56px;
}
.simple-style-grid-v67{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.simple-style-card-v67{
  min-height:250px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:26px;
  box-shadow:0 12px 34px rgba(10,34,54,.055);
}
.simple-style-card-v67 span{
  display:block;
  color:var(--brand);
  font-weight:900;
  font-size:14px;
  letter-spacing:.12em;
  margin-bottom:24px;
}
.simple-style-card-v67 h2{
  font-size:24px;
  line-height:1.18;
  letter-spacing:-.025em;
  margin:0 0 12px;
}
.simple-style-card-v67 p{
  color:#566a7d;
  line-height:1.65;
  margin:0 0 18px;
}
.simple-chip-row-v67{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
}
.simple-chip-row-v67 b{
  display:inline-flex;
  align-items:center;
  border:1px solid #d8eee9;
  background:#f3fbf8;
  color:#0f766e;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  line-height:1;
  font-weight:900;
}
.simple-quote-strip-v67{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border:1px solid var(--line);
  border-radius:30px;
  background:#fff;
  padding:34px 38px;
  box-shadow:0 16px 46px rgba(10,34,54,.07);
}
.simple-quote-strip-v67 h2{
  font-size:34px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 8px;
}
.simple-quote-strip-v67 p{
  margin:0;
  color:#53677b;
  font-size:18px;
}
@media(max-width:1180px){
  .simple-style-grid-v67{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .simple-products-hero-v67{text-align:left;padding:52px 0 38px}
  .simple-products-hero-v67 p{margin:0}
  .simple-style-grid-v67{grid-template-columns:1fr}
  .simple-style-card-v67{min-height:auto}
  .simple-quote-strip-v67{
    flex-direction:column;
    align-items:flex-start;
    padding:26px;
  }
}


/* v68 Home product display: simple style cards */
.home-simple-products-v68{
  background:#fff;
}
.home-simple-title-v68{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.home-simple-title-v68 h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.035em;
  margin:12px 0 12px;
}
.home-simple-title-v68 p{
  color:#53677b;
  font-size:18px;
  line-height:1.7;
}
.home-simple-style-grid-v68{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.home-simple-style-card-v68{
  min-height:235px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:26px;
  box-shadow:0 12px 34px rgba(10,34,54,.055);
}
.home-simple-style-card-v68 span{
  display:block;
  color:var(--brand);
  font-weight:900;
  font-size:14px;
  letter-spacing:.12em;
  margin-bottom:22px;
}
.home-simple-style-card-v68 h3{
  font-size:24px;
  line-height:1.18;
  letter-spacing:-.025em;
  margin:0 0 12px;
}
.home-simple-style-card-v68 p{
  color:#566a7d;
  line-height:1.65;
  margin:0 0 18px;
}
.home-chip-row-v68{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
}
.home-chip-row-v68 b{
  display:inline-flex;
  align-items:center;
  border:1px solid #d8eee9;
  background:#f3fbf8;
  color:#0f766e;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  line-height:1;
  font-weight:900;
}
@media(max-width:1100px){
  .home-simple-style-grid-v68{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:720px){
  .home-simple-title-v68{
    text-align:left;
  }
  .home-simple-style-grid-v68{
    grid-template-columns:1fr;
  }
  .home-simple-style-card-v68{
    min-height:auto;
  }
}


/* v69 home modules: enlarge image display area and simplify text area */
@media(min-width:1181px){
  .option-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:22px !important;}
  .custom-gallery-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:22px !important;}
  .grip-pattern-gallery{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:20px !important;}
  .process-image-row{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:20px !important;}
}
.option-gallery-card,.custom-gallery-card,.grip-photo-gallery article,.process-photo-row article{
  border-radius:24px !important;
  box-shadow:0 12px 28px rgba(12,31,51,.06) !important;
}
.option-gallery-card img{
  height:340px !important;
  object-fit:contain !important;
  background:#f8fbfd !important;
}
.custom-gallery-card{
  padding:0 !important;
  overflow:hidden !important;
}
.custom-gallery-card img{
  width:100% !important;
  height:340px !important;
  object-fit:contain !important;
  display:block !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:24px 24px 0 0 !important;
  background:#f8fbfd !important;
}
.custom-gallery-card h3{padding:18px 18px 0 !important;margin:0 0 8px !important;}
.custom-gallery-card p{padding:0 18px 20px !important;margin:0 !important;}
.grip-photo-gallery article img{
  height:300px !important;
  object-fit:cover !important;
}
.process-photo-row article img{
  height:320px !important;
  object-fit:cover !important;
}
@media(max-width:1180px){
  .option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.process-image-row{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .option-gallery-card img,.custom-gallery-card img{height:300px !important;}
  .grip-photo-gallery article img{height:280px !important;}
  .process-photo-row article img{height:300px !important;}
}
@media(max-width:760px){
  .option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.process-image-row{grid-template-columns:1fr !important;}
  .option-gallery-card img,.custom-gallery-card img,.grip-photo-gallery article img,.process-photo-row article img{height:260px !important;}
}


/* v70: minimalist grid style for home visual modules */
.home-minimal-grid-v70 .multi-title p{max-width:620px;margin-top:10px;}
.option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.process-image-row{gap:24px !important;}
@media(min-width:1080px){
  .option-gallery-grid,.custom-gallery-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .grip-pattern-gallery,.process-image-row{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}
.option-gallery-card,.custom-gallery-card,.grip-photo-gallery article,.process-photo-row article{
  background:#fff !important;
  border:1px solid var(--line) !important;
  border-radius:24px !important;
  overflow:hidden !important;
  box-shadow:none !important;
}
.option-gallery-card:hover,.custom-gallery-card:hover,.grip-photo-gallery article:hover,.process-photo-row article:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(10,34,54,.06) !important;
}
.option-gallery-card img{
  height:380px !important;
  object-fit:cover !important;
  object-position:center !important;
  transform:scale(1.06) !important;
  transition:transform .25s ease !important;
}
.option-gallery-card:hover img,.custom-gallery-card:hover img,.grip-photo-gallery article:hover img,.process-photo-row article:hover img{
  transform:scale(1.09) !important;
}
.custom-gallery-card img{
  height:380px !important;
  object-fit:cover !important;
  object-position:center !important;
  transition:transform .25s ease !important;
}
.grip-photo-gallery article img{
  height:340px !important;
  object-fit:cover !important;
  object-position:center !important;
  transition:transform .25s ease !important;
}
.process-photo-row article img{
  height:340px !important;
  object-fit:cover !important;
  object-position:center !important;
  transition:transform .25s ease !important;
}
.option-gallery-card h3,.custom-gallery-card h3,.grip-photo-gallery article h3,.process-photo-row article h3{
  font-size:30px;
  line-height:1.16;
  letter-spacing:-.02em;
  padding:18px 20px 0 !important;
}
.option-gallery-card p,.custom-gallery-card p,.grip-photo-gallery article p,.process-photo-row article p{
  color:#5b6b7b !important;
  line-height:1.65 !important;
  padding:0 20px 20px !important;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.process-photo-row article span{
  width:38px !important;
  height:38px !important;
  font-size:13px !important;
}
@media(max-width:1079px){
  .option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.process-image-row{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .option-gallery-card img,.custom-gallery-card img{height:320px !important;}
  .grip-photo-gallery article img,.process-photo-row article img{height:300px !important;}
}
@media(max-width:680px){
  .option-gallery-grid,.custom-gallery-layout,.grip-pattern-gallery,.process-image-row{grid-template-columns:1fr !important;}
  .option-gallery-card img,.custom-gallery-card img,.grip-photo-gallery article img,.process-photo-row article img{height:260px !important;}
  .option-gallery-card h3,.custom-gallery-card h3,.grip-photo-gallery article h3,.process-photo-row article h3{font-size:24px !important;}
}


/* v71 Home FAQ optimized */
.home-faq-v71{
  background:linear-gradient(180deg,#fff 0%,#f7fbfa 100%);
}
.home-faq-head-v71{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:34px;
  align-items:end;
  margin-bottom:28px;
}
.home-faq-head-v71 h2{
  font-size:clamp(34px,4.5vw,56px);
  line-height:1.05;
  letter-spacing:-.04em;
  margin:12px 0 0;
}
.home-faq-head-v71 p{
  color:#53677b;
  font-size:18px;
  line-height:1.75;
  max-width:760px;
  margin:0;
}
.home-faq-grid-v71{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.home-faq-grid-v71 details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:0;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(10,34,54,.045);
}
.home-faq-grid-v71 summary{
  cursor:pointer;
  list-style:none;
  padding:20px 22px;
  color:#122338;
  font-weight:900;
  font-size:18px;
  line-height:1.35;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.home-faq-grid-v71 summary::-webkit-details-marker{
  display:none;
}
.home-faq-grid-v71 summary:after{
  content:"+";
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  flex:0 0 auto;
  border-radius:999px;
  background:#ecf8f5;
  color:#0f766e;
  font-weight:900;
}
.home-faq-grid-v71 details[open] summary:after{
  content:"–";
}
.home-faq-grid-v71 p{
  padding:0 22px 22px;
  margin:0;
  color:#53677b;
  line-height:1.75;
}
@media(max-width:900px){
  .home-faq-head-v71,
  .home-faq-grid-v71{
    grid-template-columns:1fr;
  }
  .home-faq-head-v71{
    align-items:start;
  }
}


/* v74 customization page intro refined after hero removal */
.customization-page-hero-v74{
  padding:48px 0 34px;
}
.customization-intro-v74{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
  gap:28px;
  align-items:start;
}
.customization-intro-copy-v74 p{
  max-width:760px;
  margin-bottom:18px;
}
.intro-pill-row-v74{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.intro-pill-row-v74 span{
  display:inline-flex;
  align-items:center;
  border:1px solid #cfe8de;
  background:#f7fcfa;
  color:var(--brand-dark);
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
  font-weight:800;
  line-height:1;
}
.customization-intro-card-v74{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px 22px 18px;
  box-shadow:var(--shadow);
}
.customization-intro-card-v74 h3{
  margin:10px 0 14px;
  font-size:22px;
}
.customization-intro-card-v74 .feature-list{
  gap:10px;
}
@media(max-width:900px){
  .customization-intro-v74{grid-template-columns:1fr}
  .customization-page-hero-v74{padding:40px 0 26px}
}


/* v78 contact page simplified after removing poster */
.contact-page-hero-v78{
  padding:52px 0 18px;
}
.contact-intro-v78{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:28px;
  align-items:start;
}
.contact-intro-copy-v78 h1{
  font-size:clamp(40px,5vw,72px);
  line-height:1.02;
  letter-spacing:-1.8px;
  margin:0 0 16px;
}
.contact-intro-copy-v78 p{
  max-width:760px;
  margin:0 0 20px;
  color:var(--muted);
  font-size:19px;
  line-height:1.7;
}
.contact-quick-card-v78{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-quick-card-v78 h3{
  margin:12px 0 14px;
  font-size:24px;
  line-height:1.25;
}
.contact-mini-list-v78{
  display:grid;
  gap:12px;
}
.contact-mini-list-v78 div{
  border:1px solid #e7eef3;
  background:#fbfdfd;
  border-radius:18px;
  padding:14px 16px;
}
.contact-mini-list-v78 strong{
  display:block;
  color:var(--ink);
  margin-bottom:4px;
  font-size:16px;
}
.contact-mini-list-v78 span{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
@media(max-width:900px){
  .contact-intro-v78{grid-template-columns:1fr;}
  .contact-page-hero-v78{padding:42px 0 10px;}
  .contact-intro-copy-v78 h1{font-size:42px;}
}


/* v79 contact form: force upload field UI to English */
.upload-label-v79{
  display:grid;
  gap:7px;
  cursor:pointer;
}
.upload-label-v79 span{
  color:#1d3047;
  font-weight:900;
}
.upload-label-v79 small{
  color:#6a7d90;
  font-weight:600;
  line-height:1.45;
}
.upload-label-v79 input[type="file"]{
  position:absolute;
  inline-size:1px;
  block-size:1px;
  opacity:0;
  pointer-events:none;
}
.upload-label-v79 em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  min-height:38px;
  padding:9px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d5e5ec;
  color:#0f766e;
  font-style:normal;
  font-weight:900;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}


/* v81 About Us factory introduction copy refined */
.about-factory-copy-v80 h2{
  max-width:680px;
}
.about-copy-list-v80{
  display:grid;
  gap:16px;
  margin-top:22px;
}
.about-copy-list-v80 p{
  margin:0;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 26px rgba(10,34,54,.045);
  color:#33485c;
  font-size:17px;
  line-height:1.72;
}
.about-copy-list-v80 strong{
  display:block;
  color:inherit;
  font-size:inherit;
  font-weight:600;
  line-height:inherit;
  margin-bottom:2px;
}


/* v82 home section intro description removed */
body.home-minimal-grid-v70 .home-simple-title-v68 > p,
body.home-minimal-grid-v70 .multi-title > p{
  display:none;
}
body.home-minimal-grid-v70 .home-simple-title-v68,
body.home-minimal-grid-v70 .multi-title{
  gap:0;
}
body.home-minimal-grid-v70 .home-simple-title-v68 h2,
body.home-minimal-grid-v70 .multi-title h2{
  margin-bottom:0;
}


/* v84 about who we serve visual cards */
.serve-visual-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.serve-visual-card{display:grid;grid-template-columns:minmax(210px,42%) 1fr;align-items:stretch;background:#fff;border:1px solid var(--line);border-radius:24px;overflow:hidden;box-shadow:0 10px 26px rgba(12,31,51,.05)}
.serve-visual-card img{width:100%;height:100%;max-height:250px;object-fit:contain;display:block;background:#f4f7f7;padding:14px;border-right:1px solid var(--line)}
.serve-visual-copy{padding:22px 22px 24px;display:flex;flex-direction:column;justify-content:center}
.serve-visual-copy h3{font-size:22px;line-height:1.25;margin:0 0 10px;color:#152438}
.serve-visual-copy p{margin:0;color:var(--muted);line-height:1.66}
@media(max-width:1180px){.serve-visual-grid{grid-template-columns:1fr}.serve-visual-card{grid-template-columns:minmax(220px,40%) 1fr}}
@media(max-width:640px){.serve-visual-card{grid-template-columns:1fr}.serve-visual-card img{max-height:260px;border-right:none;border-bottom:1px solid var(--line)}.serve-visual-copy{padding:18px}.serve-visual-copy h3{font-size:20px}}


/* v86b homepage gallery click-to-enlarge only, keep v85 sizes */
.home-minimal-grid-v70 .option-gallery-card,
.home-minimal-grid-v70 .scenario-gallery-grid article,
.home-minimal-grid-v70 .custom-gallery-card,
.home-minimal-grid-v70 .grip-photo-gallery article,
.home-minimal-grid-v70 .process-photo-row article,
.home-minimal-grid-v70 .factory-photo-gallery-v46 article{
  overflow:hidden;
}
.home-minimal-grid-v70 .option-gallery-card img,
.home-minimal-grid-v70 .scenario-gallery-grid article img,
.home-minimal-grid-v70 .custom-gallery-card img,
.home-minimal-grid-v70 .grip-photo-gallery article img,
.home-minimal-grid-v70 .process-photo-row article img,
.home-minimal-grid-v70 .factory-photo-gallery-v46 article img{
  cursor:zoom-in;
  transition:transform .35s ease, filter .35s ease;
}
.home-minimal-grid-v70 .option-gallery-card:hover img,
.home-minimal-grid-v70 .scenario-gallery-grid article:hover img,
.home-minimal-grid-v70 .custom-gallery-card:hover img,
.home-minimal-grid-v70 .grip-photo-gallery article:hover img,
.home-minimal-grid-v70 .process-photo-row article:hover img,
.home-minimal-grid-v70 .factory-photo-gallery-v46 article:hover img{
  transform:scale(1.03);
  filter:saturate(1.03);
}
.image-lightbox{
  position:fixed;
  inset:0;
  background:rgba(9,18,29,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:9999;
}
.image-lightbox.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.image-lightbox-dialog{
  position:relative;
  max-width:min(1100px,92vw);
  max-height:90vh;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}
.image-lightbox img{
  display:block;
  max-width:100%;
  max-height:calc(90vh - 60px);
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  background:#fff;
}
.image-lightbox-caption{
  color:#fff;
  font-size:16px;
  line-height:1.5;
  text-align:center;
  max-width:900px;
}
.image-lightbox-close{
  position:absolute;
  top:-12px;
  right:-12px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#153049;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.22);
}


/* v87 about serve images larger + keep development flow no zoom */
.serve-visual-grid{gap:24px;}
.serve-visual-card{
  grid-template-columns:minmax(260px,46%) 1fr;
  min-height:236px;
}
.serve-visual-card img{
  width:100%;
  height:100%;
  min-height:236px;
  max-height:none;
  object-fit:cover;
  object-position:center;
  display:block;
  background:#eef3f3;
  padding:0;
  border-right:1px solid var(--line);
}
@media(max-width:1180px){
  .serve-visual-card{grid-template-columns:minmax(250px,44%) 1fr;}
}
@media(max-width:640px){
  .serve-visual-card{grid-template-columns:1fr;min-height:auto;}
  .serve-visual-card img{min-height:230px;border-right:none;border-bottom:1px solid var(--line);}
}
.development-flow-v62 article img{
  cursor:default !important;
}
.development-flow-v62 article:hover img{
  transform:none !important;
  filter:none !important;
}

/* v88 disable any click/hover effect for development flow images */
.home-minimal-grid-v70 .development-flow-v62 article img{
  cursor:default !important;
  pointer-events:none !important;
  transform:none !important;
  filter:none !important;
}
.home-minimal-grid-v70 .development-flow-v62 article:hover img{
  transform:none !important;
  filter:none !important;
}


/* v89 remove all hover/jump animation from Custom Development Flow module */
.development-flow-v62 article,
.development-flow-v62 article:hover,
.development-flow-v62 article:focus,
.development-flow-v62 article:focus-within{
  transform:none !important;
  translate:none !important;
  transition:none !important;
  animation:none !important;
  box-shadow:0 9px 24px rgba(12,31,51,.06) !important;
}

.development-flow-v62 article img,
.development-flow-v62 article:hover img,
.development-flow-v62 article:focus img,
.development-flow-v62 article:focus-within img{
  transform:none !important;
  translate:none !important;
  transition:none !important;
  animation:none !important;
  filter:none !important;
  cursor:default !important;
  pointer-events:none !important;
}

.development-flow-v62 article *,
.development-flow-v62 article:hover *,
.development-flow-v62 article:focus *,
.development-flow-v62 article:focus-within *{
  transform:none !important;
  translate:none !important;
  transition:none !important;
  animation:none !important;
}


/* v110: keep buyer-info/announcement, convert raster assets to webp, make home hero wider like a near full-screen banner without excessive height */
.home-clean-hero{padding:26px 0 64px;background:linear-gradient(135deg,#f6fbff 0%,#eef8f5 55%,#ffffff 100%)}
.home-clean-hero .container{width:min(1680px,96vw)}
.clean-hero-grid{grid-template-columns:.74fr 1.26fr;gap:56px;align-items:center}
.clean-hero-copy h1{max-width:620px;font-size:clamp(40px,4.6vw,72px);line-height:1.02}
.clean-hero-copy .lead{max-width:640px;font-size:20px}
.clean-muted{max-width:620px}
.clean-hero-image{border-radius:34px;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:0 18px 48px rgba(15,31,51,.10)}
.clean-hero-image img{display:block;width:100%;aspect-ratio:16 / 9;object-fit:cover}
@media(max-width:1280px){.home-clean-hero .container{width:min(1500px,95vw)}.clean-hero-grid{grid-template-columns:.82fr 1.18fr;gap:42px}}
@media(max-width:1180px){.home-clean-hero .container{width:min(1160px,92vw)}.clean-hero-grid{grid-template-columns:1fr;gap:26px}.clean-hero-copy h1,.clean-hero-copy .lead,.clean-muted{max-width:none}.clean-hero-image img{aspect-ratio:auto;object-fit:cover}}
@media(max-width:760px){.home-clean-hero{padding:20px 0 42px}.home-clean-hero .container{width:min(100%,94vw)}.clean-hero-copy h1{font-size:clamp(34px,10vw,48px)}.clean-hero-copy .lead{font-size:18px}}


/* v112 homepage poster hero: full-width banner with copy integrated into the image */
.home-poster-hero-v112{padding:18px 0 30px;background:linear-gradient(135deg,#f7fbff 0%,#eef8f5 56%,#ffffff 100%)}
.home-poster-hero-v112 .container{width:min(1500px,92vw)}
.home-poster-frame-v112{position:relative;max-width:1360px;margin:0 auto;border-radius:28px;overflow:hidden;border:1px solid var(--line);background:#fff;box-shadow:0 14px 36px rgba(15,31,51,.09)}
.home-poster-frame-v112 img{display:block;width:100%;height:auto;aspect-ratio:16 / 9;object-fit:cover}
.poster-hotspot-quote{position:absolute;left:6%;top:65.8%;width:21.5%;height:8.5%;border-radius:999px;display:block;z-index:2}
.poster-hotspot-quote:focus-visible{outline:3px solid rgba(15,118,110,.35);outline-offset:4px}
@media(max-width:1180px){.home-poster-hero-v112 .container{width:min(1120px,92vw)}.home-poster-frame-v112{max-width:100%;border-radius:22px}}
@media(max-width:760px){.home-poster-hero-v112{padding:12px 0 22px}.home-poster-hero-v112 .container{width:min(100%,92vw)}.home-poster-frame-v112{border-radius:18px}.poster-hotspot-quote{left:6.2%;top:65.2%;width:31%;height:10%}}

/* CERT FIX */
.factory-photo-card img{
  padding:14px;
  background:#fff;
  border-radius:14px;
  object-fit:contain;
}


/* v130 homepage funnel + low-friction contact optimization */
.home-inquiry-funnel-v130{padding-top:28px;padding-bottom:34px}
.home-funnel-head-v130{text-align:center;max-width:860px;margin:0 auto 24px}
.home-funnel-head-v130 h2{font-size:clamp(34px,4.2vw,56px);line-height:1.05;letter-spacing:-1.2px;margin:10px 0 12px}
.home-funnel-head-v130 p{color:var(--muted);font-size:18px;line-height:1.75;margin:0}
.home-funnel-grid-v130{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.home-funnel-card-v130{background:#fff;border:1px solid var(--line);border-radius:24px;padding:24px;box-shadow:0 10px 28px rgba(15,31,51,.06)}
.home-funnel-step-v130{display:inline-grid;place-items:center;width:48px;height:48px;border-radius:50%;background:#e9fbf4;color:var(--brand);font-weight:900;font-size:16px;margin-bottom:16px}
.home-funnel-card-v130 h3{font-size:24px;line-height:1.2;margin:0 0 10px}
.home-funnel-card-v130 p{color:var(--muted);margin:0 0 14px;line-height:1.65}
.home-funnel-card-v130 ul{margin:0;padding-left:18px;color:#294158;display:grid;gap:6px;font-weight:700}
.home-funnel-actions-v130{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:24px}
.contact-dual-actions-v130{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.contact-conversion-copy-v130 p{color:var(--muted);line-height:1.7}
.contact-benefit-list-v130{display:grid;gap:12px;margin-top:16px}
.contact-benefit-list-v130 div{border:1px solid #e7eef3;background:#fbfdfd;border-radius:18px;padding:14px 16px}
.contact-benefit-list-v130 strong{display:block;font-size:16px;color:var(--ink);margin-bottom:4px}
.contact-benefit-list-v130 span{display:block;color:var(--muted);font-size:14px;line-height:1.55}
.contact-form-quick-v130{position:relative}
.quick-form-note-v130{margin:-2px 0 6px;color:#5f7286;font-size:14px;line-height:1.6}
.quick-form-grid-v130{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-form-submit-v130{display:flex;gap:12px;flex-wrap:wrap}
.contact-form-submit-v130 .btn{flex:1 1 220px}
.side-inquiry{box-shadow:0 14px 32px rgba(15,31,51,.12);border-radius:20px;overflow:hidden}
.side-inquiry__item{background:#fff}
.side-inquiry__whatsapp{background:#f1fff8}
.side-inquiry__quote{background:#f5fbff}
@media(max-width:1024px){.home-funnel-grid-v130{grid-template-columns:1fr}.quick-form-grid-v130{grid-template-columns:1fr}}
@media(max-width:760px){.home-inquiry-funnel-v130{padding-top:18px}.home-funnel-head-v130 p{font-size:16px}.home-funnel-card-v130{padding:20px}.contact-dual-actions-v130,.contact-form-submit-v130,.home-funnel-actions-v130{display:grid;grid-template-columns:1fr}.contact-dual-actions-v130 .btn,.contact-form-submit-v130 .btn,.home-funnel-actions-v130 .btn{width:100%}}


/* v131 upgraded B2B homepage funnel */
.home-funnel-proof-v131{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;max-width:1100px;margin:0 auto 22px}
.home-proof-chip-v131{background:#ffffff;border:1px solid var(--line);border-radius:18px;padding:16px 18px;box-shadow:0 10px 24px rgba(15,31,51,.05)}
.home-proof-chip-v131 strong{display:block;color:var(--ink);font-size:16px;margin-bottom:4px}
.home-proof-chip-v131 span{display:block;color:var(--muted);font-size:14px;line-height:1.55}
.home-funnel-progress-v131{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:1100px;margin:0 auto 16px}
.home-funnel-progress-v131 span{display:block;height:8px;border-radius:999px;background:linear-gradient(90deg,#d8efe9 0%, #0f766e 100%);opacity:.9}
.home-funnel-grid-v131{position:relative;max-width:1100px;margin:0 auto}
.home-funnel-card-v131{position:relative;padding-top:22px}
.home-funnel-top-v131{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.home-funnel-icon-v131{display:inline-grid;place-items:center;width:44px;height:44px;border-radius:14px;background:#eff9f6;border:1px solid #d4ece6;color:var(--brand);font-size:20px;font-weight:900}
.home-funnel-note-v131{margin-top:14px;padding:12px 14px;border-radius:14px;background:#f8fbfd;border:1px dashed #d2dde6;color:#456079;font-size:13px;font-weight:700;line-height:1.55}
.home-funnel-bottom-v131{max-width:1100px;margin:20px auto 0}
.home-funnel-mini-facts-v131{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:16px}
.home-funnel-mini-facts-v131 span{display:inline-flex;align-items:center;border-radius:999px;background:#fff;border:1px solid var(--line);padding:10px 14px;font-size:13px;font-weight:800;color:#1e3a52}
@media(max-width:1024px){.home-funnel-proof-v131{grid-template-columns:1fr}.home-funnel-progress-v131{grid-template-columns:1fr}}


/* v132 stronger visual linear icon flow for homepage funnel */
.home-funnel-linear-v132{display:grid;grid-template-columns:1fr 90px 1fr 90px 1fr;align-items:center;gap:0;max-width:1120px;margin:0 auto 22px}
.home-linear-step-v132{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid var(--line);border-radius:22px;padding:18px 18px;box-shadow:0 10px 28px rgba(15,31,51,.06)}
.home-linear-badge-v132{display:inline-grid;place-items:center;min-width:42px;height:42px;border-radius:50%;background:#0f766e;color:#fff;font-weight:900;font-size:14px;box-shadow:0 10px 20px rgba(15,118,110,.22)}
.home-linear-icon-v132{display:inline-grid;place-items:center;width:50px;height:50px;border-radius:16px;background:linear-gradient(135deg,#effaf6 0%,#f6fbff 100%);border:1px solid #d7ebe4;color:var(--brand);font-size:22px;font-weight:900;flex:0 0 auto}
.home-linear-copy-v132 strong{display:block;font-size:18px;line-height:1.2;color:var(--ink);margin-bottom:3px}
.home-linear-copy-v132 span{display:block;color:var(--muted);font-size:13px;line-height:1.45}
.home-linear-connector-v132{position:relative;height:4px;background:linear-gradient(90deg,#bfe5db 0%, #0f766e 100%);border-radius:999px;margin:0 14px}
.home-linear-connector-v132::after{content:'›';position:absolute;right:-2px;top:50%;transform:translateY(-50%);font-size:28px;color:#0f766e;font-weight:900;line-height:1}
.home-funnel-card-v131{border-top:4px solid #0f766e;box-shadow:0 14px 36px rgba(15,31,51,.08)}
.home-funnel-card-v131 ul li{margin-bottom:3px}
.home-funnel-actions-v130 .btn{min-width:210px}
@media(max-width:1100px){.home-funnel-linear-v132{grid-template-columns:1fr;gap:12px}.home-linear-connector-v132{height:32px;width:4px;margin:0 auto;background:linear-gradient(180deg,#bfe5db 0%, #0f766e 100%)}.home-linear-connector-v132::after{content:'⌄';right:50%;top:auto;bottom:-10px;transform:translateX(50%);font-size:28px}}


/* v140 premium industrial B2B SaaS-style homepage funnel */
.home-funnel-saas-v140{padding:34px 0 44px;background:linear-gradient(135deg,#071521 0%,#0d2031 54%,#123146 100%);position:relative;overflow:hidden}
.home-funnel-saas-v140::before,.home-funnel-saas-v140::after{content:'';position:absolute;border-radius:50%;filter:blur(18px);opacity:.18;pointer-events:none}
.home-funnel-saas-v140::before{width:340px;height:340px;background:#18b981;top:-120px;left:-90px}
.home-funnel-saas-v140::after{width:280px;height:280px;background:#2ea3ff;bottom:-120px;right:-70px}
.home-funnel-shell-v140{position:relative;z-index:1;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.03) 100%);border-radius:32px;padding:34px;box-shadow:0 24px 60px rgba(1,10,18,.24)}
.home-funnel-head-v140{text-align:center;max-width:900px;margin:0 auto 24px}
.home-funnel-head-v140 .eyebrow{background:rgba(24,185,129,.14);border-color:rgba(162,247,218,.22);color:#9cead2}
.home-funnel-head-v140 h2{font-size:clamp(36px,4.8vw,60px);line-height:1.03;letter-spacing:-1.5px;color:#fff;margin:12px 0 14px}
.home-funnel-head-v140 p{margin:0;color:rgba(232,241,248,.82);font-size:18px;line-height:1.78}
.home-funnel-kpis-v140{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:1120px;margin:0 auto 26px}
.home-funnel-kpi-v140{background:rgba(255,255,255,.94);border:1px solid rgba(255,255,255,.82);border-radius:22px;padding:18px 18px 16px;box-shadow:0 14px 32px rgba(6,21,32,.16)}
.home-funnel-kpi-tag-v140{display:inline-flex;align-items:center;border-radius:999px;background:#eef8f6;border:1px solid #caeee5;padding:7px 11px;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#0f766e;margin-bottom:12px}
.home-funnel-kpi-v140 strong{display:block;font-size:26px;line-height:1.1;color:#0d2236;margin-bottom:8px}
.home-funnel-kpi-v140 p{margin:0;color:#5c6d7f;font-size:14px;line-height:1.6}
.home-funnel-timeline-v140{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1120px;margin:0 auto 22px;padding-top:22px}
.home-funnel-track-v140{position:absolute;left:10%;right:10%;top:44px;height:4px;border-radius:999px;background:linear-gradient(90deg,#214660 0%,#1e7d85 48%,#20b981 100%);opacity:.96;z-index:0}
.home-funnel-step-v140{position:relative;z-index:1;background:#ffffff;border:1px solid #dce8f1;border-radius:26px;padding:24px 22px 22px;box-shadow:0 18px 38px rgba(6,20,32,.18)}
.home-funnel-step-v140::before{content:'';position:absolute;top:34px;left:50%;width:14px;height:14px;border-radius:50%;background:#20b981;transform:translateX(-50%);box-shadow:0 0 0 7px rgba(32,185,129,.14)}
.home-funnel-step-top-v140{display:flex;align-items:center;justify-content:space-between;padding-top:20px;margin-bottom:12px}
.home-funnel-step-no-v140{display:inline-grid;place-items:center;min-width:48px;height:48px;border-radius:50%;background:#0f766e;color:#fff;font-size:15px;font-weight:900;box-shadow:0 12px 24px rgba(15,118,110,.22)}
.home-funnel-step-icon-v140{display:inline-grid;place-items:center;width:54px;height:54px;border-radius:18px;background:linear-gradient(135deg,#eff9f6 0%,#f5f9ff 100%);border:1px solid #d8ebe6;color:#0f766e;font-size:24px;font-weight:900}
.home-funnel-step-v140 h3{font-size:26px;line-height:1.18;margin:0 0 10px;color:#0d2236}
.home-funnel-step-v140 p{margin:0 0 14px;color:#5f7183;line-height:1.72;font-size:15px}
.home-funnel-tags-v140{display:flex;gap:8px;flex-wrap:wrap}
.home-funnel-tags-v140 span{display:inline-flex;align-items:center;border-radius:999px;background:#f4f9fc;border:1px solid #dbe7ef;padding:9px 12px;font-size:12px;font-weight:800;color:#24415b}
.home-funnel-cta-strip-v140{display:flex;align-items:center;justify-content:space-between;gap:20px;max-width:1120px;margin:0 auto;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);border-radius:24px;padding:20px 22px}
.home-funnel-cta-copy-v140 strong{display:block;color:#fff;font-size:20px;line-height:1.25;margin-bottom:5px}
.home-funnel-cta-copy-v140 span{display:block;color:rgba(230,240,247,.82);font-size:14px;line-height:1.6;max-width:560px}
.home-funnel-actions-v140{display:flex;gap:12px;justify-content:flex-end;flex-wrap:wrap}
.home-funnel-actions-v140 .btn{min-width:210px}
@media(max-width:1120px){.home-funnel-kpis-v140,.home-funnel-timeline-v140{grid-template-columns:1fr}.home-funnel-track-v140{left:28px;right:auto;top:0;bottom:0;width:4px;height:auto;background:linear-gradient(180deg,#214660 0%,#1e7d85 48%,#20b981 100%)}.home-funnel-step-v140::before{top:34px;left:28px;transform:none}.home-funnel-step-top-v140{padding-top:0;margin-left:22px}.home-funnel-step-v140 h3,.home-funnel-step-v140 p,.home-funnel-tags-v140{margin-left:22px}.home-funnel-step-v140{padding:22px 20px 20px 48px}.home-funnel-cta-strip-v140{flex-direction:column;align-items:flex-start}.home-funnel-actions-v140{justify-content:flex-start}}
@media(max-width:760px){.home-funnel-saas-v140{padding:20px 0 28px}.home-funnel-shell-v140{padding:22px 16px}.home-funnel-head-v140 h2{font-size:38px}.home-funnel-head-v140 p{font-size:16px}.home-funnel-kpi-v140 strong{font-size:22px}.home-funnel-step-v140 h3{font-size:22px}.home-funnel-actions-v140,.home-funnel-actions-v140 .btn{width:100%}.home-funnel-actions-v140{display:grid;grid-template-columns:1fr}}
