:root{
  --capital-blue:#1250AA;
  --medium-blue:#2A6DD9;
  --deep-navy:#0D1B2A;
  --sky-light:#E6EEFA;
  --pure-white:#FFFFFF;
  --text:#0D1B2A;
  --muted:#62718A;
  --muted-2:#8794A8;
  --surface:#F7F9FD;
  --surface-2:#EEF3FB;
  --line:#DCE5F2;
  --line-dark:rgba(255,255,255,.14);
  --success:#14805E;
  --shadow:0 24px 70px rgba(13,27,42,.11);
  --shadow-soft:0 12px 34px rgba(13,27,42,.08);
  --radius:22px;
  --radius-sm:14px;
  --font-display:'Archivo',Arial,sans-serif;
  --font-body:'Manrope',Arial,sans-serif;
  --font-mono:'Space Mono',monospace;
  --wrap:1320px;
  --ease:cubic-bezier(.2,.75,.2,1);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);background:var(--pure-white);color:var(--text);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
body.dark-mode{--text:#F6F9FF;--muted:#AFC0D9;--muted-2:#8191A8;--surface:#101F31;--surface-2:#14263B;--line:rgba(255,255,255,.11);--pure-white:#0D1B2A;--shadow:0 24px 70px rgba(0,0,0,.28);--shadow-soft:0 12px 34px rgba(0,0,0,.2)}
::selection{background:var(--medium-blue);color:#fff}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{color:inherit}
img{display:block;max-width:100%}
.wrap{width:min(var(--wrap),calc(100% - 48px));margin-inline:auto}
main{min-height:55vh}
.section{padding:102px 0}
.surface-section{background:var(--surface)}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:42px;margin-bottom:42px}
.section-head>div{max-width:820px}
.section-head>p{max-width:520px;color:var(--muted);font-size:1.02rem}
.section-label{display:flex;align-items:center;gap:14px;margin-bottom:18px;text-transform:uppercase;font-family:var(--font-mono);font-size:.7rem;letter-spacing:.15em;color:var(--capital-blue)}
.section-label span{font-weight:700}.section-label i{width:52px;height:1px;background:var(--medium-blue)}.section-label b{font-weight:700;color:var(--text)}
.section-label.light{color:#8FB8FF}.section-label.light i{background:#8FB8FF}.section-label.light b{color:#fff}
h1,h2,h3{font-family:var(--font-display);letter-spacing:-.035em}
h1,h2{text-transform:uppercase;font-weight:900}
h2{font-size:clamp(2.1rem,4.2vw,4rem);line-height:.98}
h3{font-weight:800;line-height:1.08}
em{font-style:normal;color:var(--medium-blue)}
p{color:var(--muted)}
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:50px;padding:13px 24px;border-radius:12px;border:1px solid transparent;font-weight:800;font-size:.9rem;transition:.25s var(--ease);cursor:pointer;white-space:nowrap}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--capital-blue);color:#fff;box-shadow:0 12px 24px rgba(18,80,170,.22)}
.btn-primary:hover{background:var(--medium-blue);box-shadow:0 16px 30px rgba(42,109,217,.28)}
.btn-light{background:#fff;color:var(--deep-navy)}
.btn-light:hover{background:var(--sky-light)}
.btn-outline-light{color:#fff;border-color:rgba(255,255,255,.38);background:rgba(255,255,255,.04);backdrop-filter:blur(10px)}
.btn-outline-light:hover{background:#fff;color:var(--deep-navy)}
.btn-ghost{border-color:var(--line);background:transparent;color:var(--text)}
.btn-ghost:hover{border-color:var(--capital-blue);color:var(--capital-blue)}
.text-link{font-weight:800;color:var(--capital-blue);font-size:.9rem}
.text-link:hover{color:var(--medium-blue)}

/* Header */
.site-header{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.96);border-bottom:1px solid rgba(13,27,42,.08);backdrop-filter:blur(18px)}
.dark-mode .site-header{background:rgba(13,27,42,.94);border-color:rgba(255,255,255,.09)}
.topbar{background:var(--deep-navy);color:#fff}
.topbar-inner{min-height:34px;display:flex;align-items:center;justify-content:space-between;gap:20px;font-family:var(--font-mono);font-size:.62rem;letter-spacing:.09em}
.topbar-tags{display:flex;align-items:center;gap:24px;color:#AFC0D9}
.topbar a{font-weight:700;color:#fff}
.navbar{background:transparent}
.nav-inner{min-height:80px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand-logo img{width:64px;height:64px;object-fit:contain;display:block}
.nav-links{display:flex;align-items:center;gap:4px;margin-left:auto}
.nav-links a{padding:10px 11px;font-size:.86rem;font-weight:750;color:var(--text);position:relative;white-space:nowrap}
.nav-links a::after{content:"";position:absolute;left:12px;right:12px;bottom:2px;height:2px;background:var(--medium-blue);transform:scaleX(0);transform-origin:left;transition:.25s}
.nav-links a:hover,.nav-links a.active{color:var(--capital-blue)}
.nav-links a:hover::after,.nav-links a.active::after{transform:scaleX(1)}
.nav-actions{display:flex;align-items:center;gap:10px}
.lang-switch{display:flex;align-items:center;border:1px solid var(--line);border-radius:10px;padding:3px;background:var(--surface)}
.lang-switch button{border:0;background:transparent;padding:6px 8px;border-radius:7px;font-family:var(--font-mono);font-size:.58rem;cursor:pointer;color:var(--muted)}
.lang-switch button.active{background:var(--capital-blue);color:#fff}
.theme-toggle{width:39px;height:39px;border:1px solid var(--line);background:var(--surface);border-radius:10px;display:grid;place-items:center;cursor:pointer;overflow:hidden}
.theme-toggle span:first-child{display:block}.theme-toggle span:last-child{display:none}
.dark-mode .theme-toggle span:first-child{display:none}.dark-mode .theme-toggle span:last-child{display:block}
.nav-cta{min-height:42px;padding:10px 16px;font-size:.8rem}
.burger{display:none;border:0;background:none;width:42px;height:42px;padding:9px;cursor:pointer}
.burger span{display:block;width:24px;height:2px;background:var(--text);margin:5px auto}
.mobile-menu{position:fixed;inset:0;background:var(--deep-navy);z-index:500;display:flex;flex-direction:column;justify-content:center;gap:8px;padding:36px;transform:translateX(100%);transition:.35s var(--ease)}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu>a:not(.btn){color:#fff;font-family:var(--font-display);font-size:1.8rem;font-weight:800;text-transform:uppercase;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.1)}
.mobile-close{position:absolute;right:28px;top:24px;border:0;background:none;color:#fff;font-size:2.2rem;cursor:pointer}
.mobile-logo{position:absolute;top:22px;left:28px;width:84px;height:84px;object-fit:contain}
.mobile-menu .btn{margin-top:22px}

/* Hero */
.hero-section{position:relative;overflow:hidden;background:var(--deep-navy);color:#fff;padding:92px 0 96px;min-height:720px;display:flex;align-items:center}
.hero-section::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:64px 64px;mask-image:radial-gradient(circle at 74% 44%,#000 8%,transparent 72%)}
.hero-section::after{content:"";position:absolute;width:620px;height:620px;border-radius:50%;right:-180px;top:-220px;background:radial-gradient(circle,var(--medium-blue),transparent 68%);opacity:.28;filter:blur(20px)}
.hero-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:72px;align-items:center;position:relative;z-index:2}
.eyebrow{display:inline-flex;align-items:center;gap:11px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.04);padding:9px 14px;border-radius:999px;margin-bottom:28px}
.eyebrow span{width:8px;height:8px;border-radius:50%;background:#69A2FF;box-shadow:0 0 16px #69A2FF}
.eyebrow b{font-family:var(--font-mono);font-size:.65rem;letter-spacing:.14em;font-weight:700}
.hero-copy h1{font-size:clamp(3.2rem,6.3vw,6.1rem);line-height:.89;max-width:770px}
.hero-copy p{color:#B9C7DB;font-size:1.08rem;max-width:650px;margin:26px 0 34px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-tags{display:grid;grid-template-columns:repeat(4,1fr);margin-top:44px;padding-top:26px;border-top:1px solid rgba(255,255,255,.12)}
.hero-tags div{padding-right:16px;border-right:1px solid rgba(255,255,255,.1)}
.hero-tags div:last-child{border-right:0}
.hero-tags strong{display:block;font-family:var(--font-mono);font-size:.66rem;color:#74A8FF;margin-bottom:6px}
.hero-tags span{font-size:.82rem;color:#DBE6F7;font-weight:700}
.hero-showcase{position:relative;min-height:560px}
.showcase-main{position:absolute;inset:30px 40px 40px 0;background:#fff;border-radius:30px;padding:26px;box-shadow:0 40px 90px rgba(0,0,0,.28);overflow:hidden}
.showcase-main::after{content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.45);border-radius:inherit;pointer-events:none}
.showcase-main>a{display:block;width:100%;height:100%;position:relative;z-index:1}.showcase-main>a>img,.showcase-main>img{width:100%;height:100%;object-fit:contain;border-radius:20px;background:var(--sky-light)}
.listing-chip{position:absolute;left:46px;bottom:48px;background:rgba(13,27,42,.92);color:#fff;border-radius:14px;padding:13px 17px;backdrop-filter:blur(14px)}
.listing-chip span{display:block;font-family:var(--font-mono);font-size:.57rem;letter-spacing:.1em;color:#8FB8FF;text-transform:uppercase}.listing-chip b{font-size:.9rem}
.showcase-mini{position:absolute;width:190px;height:178px;background:#fff;border:1px solid rgba(13,27,42,.1);box-shadow:var(--shadow);border-radius:22px;padding:14px;z-index:3}
.showcase-mini img{width:100%;height:120px;object-fit:contain;border-radius:12px;background:var(--sky-light)}
.showcase-mini span{display:block;color:var(--deep-navy);font-weight:800;font-size:.78rem;margin-top:9px}
.equipment-mini{right:-6px;top:0}.mold-mini{right:0;bottom:0}
.ticker{background:var(--capital-blue);color:#fff;border-top:1px solid rgba(255,255,255,.2);border-bottom:1px solid rgba(255,255,255,.2);overflow:hidden}
.ticker-track{display:flex;gap:50px;width:max-content;padding:15px 0;animation:ticker 32s linear infinite;font-family:var(--font-display);font-weight:800;font-size:.94rem;letter-spacing:.035em}
.ticker-track span{display:flex;align-items:center;gap:50px;white-space:nowrap}.ticker-track span::after{content:"◆";color:#8FB8FF;font-size:.68rem}@keyframes ticker{to{transform:translateX(-50%)}}

/* Categories */
.category-grid{display:grid;grid-template-columns:1.15fr .85fr .85fr;gap:22px}
.category-card{position:relative;min-height:390px;border:1px solid var(--line);background:var(--pure-white);border-radius:var(--radius);overflow:hidden;padding:28px;display:flex;flex-direction:column;justify-content:space-between;transition:.35s var(--ease)}
.category-card:hover{transform:translateY(-7px);box-shadow:var(--shadow);border-color:rgba(42,109,217,.35)}
.category-card>div{position:relative;z-index:2;max-width:80%}
.category-card>div>span{font-family:var(--font-mono);font-size:.65rem;color:var(--medium-blue)}
.category-card h3{font-size:1.55rem;text-transform:uppercase;margin:9px 0 10px}.category-card p{font-size:.88rem}
.category-card img{position:absolute;right:-40px;bottom:-30px;width:74%;height:70%;object-fit:contain;transition:.45s var(--ease)}
.category-card:hover img{transform:scale(1.04) translateY(-4px)}
.category-business{background:linear-gradient(145deg,var(--deep-navy),#173B65);color:#fff;border:0}
.category-business h3{color:#fff}.category-business p{color:#B9C7DB}.category-business>div>span{color:#8FB8FF}

/* Products */
.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.product-grid.list-view{grid-template-columns:1fr}
.product-card{background:var(--pure-white);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:.35s var(--ease);min-width:0}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:rgba(42,109,217,.34)}
.product-card>a{display:flex;flex-direction:column;height:100%}
.product-image{position:relative;aspect-ratio:1.35/1;background:var(--surface-2);overflow:hidden}
.product-image img{width:100%;height:100%;object-fit:contain;padding:14px;transition:.45s var(--ease)}
.product-card:hover .product-image img{transform:scale(1.04)}
.product-category,.product-status{position:absolute;top:14px;border-radius:9px;padding:6px 9px;font-family:var(--font-mono);font-size:.53rem;letter-spacing:.08em;text-transform:uppercase;font-weight:700;z-index:2}
.product-category{left:14px;background:var(--deep-navy);color:#fff}.product-status{right:14px;background:#fff;color:var(--success);box-shadow:0 8px 22px rgba(13,27,42,.12)}
.product-body{display:flex;flex-direction:column;flex:1;padding:21px}
.product-meta{display:flex;align-items:center;gap:10px;color:var(--muted-2);font-size:.72rem;margin-bottom:9px}.product-meta svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.8}
.product-body h3{font-size:1.22rem;margin-bottom:10px}.product-description{font-size:.84rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:16px}
.product-specs{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:18px}.product-specs span{font-family:var(--font-mono);font-size:.56rem;color:var(--muted);background:var(--surface);border:1px solid var(--line);padding:5px 8px;border-radius:7px}
.product-footer{display:flex;align-items:end;justify-content:space-between;gap:14px;margin-top:auto;padding-top:16px;border-top:1px solid var(--line)}
.product-price small{display:block;font-size:.62rem;color:var(--muted-2);margin-bottom:2px}.product-price b{font-size:.95rem;color:var(--capital-blue)}
.product-more{width:36px;height:36px;border-radius:10px;background:var(--sky-light);color:var(--capital-blue);display:grid;place-items:center;font-size:1.1rem;transition:.25s}.product-card:hover .product-more{background:var(--capital-blue);color:#fff}
.no-product-img{height:100%;display:grid;place-items:center;text-align:center;color:var(--muted)}.no-product-img b{display:block;font-family:var(--font-display);font-size:1.3rem;color:var(--capital-blue)}
.product-grid.list-view .product-card>a{display:grid;grid-template-columns:280px 1fr}.product-grid.list-view .product-image{aspect-ratio:auto;height:100%}.product-grid.list-view .product-description{-webkit-line-clamp:3}
.empty-products{grid-column:1/-1;padding:70px 24px;text-align:center;border:1px dashed var(--line);border-radius:var(--radius);color:var(--muted)}

/* Why + process */
.why-section,.values-section,.partnership-dark{background:var(--deep-navy);color:#fff;position:relative;overflow:hidden}
.why-section::after,.values-section::after,.partnership-dark::after{content:"";position:absolute;width:520px;height:520px;border-radius:50%;right:-240px;top:-230px;background:radial-gradient(circle,var(--medium-blue),transparent 70%);opacity:.22}
.why-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;position:relative;z-index:2}
.why-intro h2{color:#fff}.why-intro p{color:#B9C7DB;margin:20px 0 30px;max-width:520px}
.benefits-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.benefits-grid article{padding:26px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.11);border-radius:18px}
.benefits-grid article>b{font-family:var(--font-mono);font-size:.64rem;color:#8FB8FF}.benefits-grid h3{color:#fff;font-size:1.1rem;margin:13px 0 9px}.benefits-grid p{color:#AFC0D9;font-size:.82rem}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;counter-reset:step}
.steps article{border-top:3px solid var(--sky-light);padding:24px 20px 20px;background:var(--surface);border-radius:0 0 18px 18px;min-height:220px}
.steps article:hover{border-top-color:var(--medium-blue)}
.steps article>span{font-family:var(--font-mono);font-size:.65rem;color:var(--medium-blue)}.steps h3{font-size:1.08rem;margin:30px 0 10px}.steps p{font-size:.83rem}
.cta-section{background:var(--medium-blue);color:#fff;padding:68px 0}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:40px}.cta-inner span{font-family:var(--font-mono);font-size:.67rem;letter-spacing:.12em;text-transform:uppercase;color:#DDE9FF}.cta-inner h2{font-size:clamp(2rem,4vw,3.6rem);max-width:900px;margin-top:10px}.cta-inner h2 em{color:#fff;text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:7px}

/* Page hero */
.page-hero{background:var(--deep-navy);color:#fff;padding:96px 0 78px;position:relative;overflow:hidden}
.page-hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:64px 64px;mask-image:linear-gradient(90deg,#000,transparent 80%)}
.page-hero::after{content:"";position:absolute;width:420px;height:420px;border-radius:50%;right:-120px;top:-190px;background:radial-gradient(circle,var(--medium-blue),transparent 70%);opacity:.3}
.page-hero .wrap{position:relative;z-index:2}.breadcrumb{font-family:var(--font-mono);font-size:.66rem;letter-spacing:.12em;text-transform:uppercase;color:#9FB1CA;margin-bottom:20px}.page-hero h1{font-size:clamp(2.7rem,6vw,5.4rem);line-height:.92;max-width:980px}.page-hero p{color:#B9C7DB;max-width:790px;margin-top:20px;font-size:1.03rem}.page-hero-grid{display:grid;grid-template-columns:1fr 270px;gap:60px;align-items:center}.hero-metric-card{background:#fff;color:var(--deep-navy);border-radius:24px;padding:28px}.hero-metric-card span{font-family:var(--font-mono);font-size:.62rem;letter-spacing:.1em;color:var(--capital-blue);text-transform:uppercase}.hero-metric-card strong{font-family:var(--font-display);font-size:5rem;line-height:1;display:block;margin:18px 0 4px}.hero-metric-card p{color:#62718A;margin:0;font-size:.83rem}

/* Catalog */
.catalog-section{background:var(--surface)}
.catalog-toolbar{display:flex;gap:14px;margin-bottom:28px}.catalog-search{flex:1;display:flex;align-items:center;gap:12px;background:var(--pure-white);border:1px solid var(--line);border-radius:14px;padding:0 16px}.catalog-search svg{width:21px;fill:none;stroke:var(--muted);stroke-width:1.8}.catalog-search input{width:100%;height:54px;border:0;outline:0;background:transparent;color:var(--text)}
.catalog-toolbar select{min-width:220px;height:54px;border:1px solid var(--line);background:var(--pure-white);color:var(--text);border-radius:14px;padding:0 14px;outline:none}
.catalog-layout{display:grid;grid-template-columns:270px 1fr;gap:28px;align-items:start}
.filter-panel{position:sticky;top:136px;background:var(--pure-white);border:1px solid var(--line);border-radius:var(--radius);padding:20px}
.filter-title{display:flex;align-items:center;justify-content:space-between;margin-bottom:15px}.filter-title span{font-weight:800}.filter-title button{border:0;background:none;color:var(--capital-blue);font-size:.72rem;cursor:pointer}
.filters{display:grid;gap:7px}.filters button{width:100%;border:1px solid transparent;background:var(--surface);padding:12px;border-radius:11px;display:flex;align-items:center;justify-content:space-between;text-align:left;cursor:pointer;color:var(--muted);font-size:.8rem;font-weight:700;transition:.2s}.filters button b{font-family:var(--font-mono);font-size:.6rem}.filters button:hover,.filters button.active{background:var(--capital-blue);color:#fff}
.filter-note{margin-top:22px;padding-top:20px;border-top:1px solid var(--line)}.filter-note strong{font-size:.85rem}.filter-note p{font-size:.76rem;margin:7px 0 12px}.filter-note .text-link{font-size:.75rem}
.catalog-result-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}.catalog-result-head p{font-size:.8rem}.catalog-result-head p span:first-child{font-weight:800;color:var(--text)}
.view-toggle{display:flex;gap:5px}.view-toggle button{width:36px;height:36px;border:1px solid var(--line);background:var(--pure-white);border-radius:9px;cursor:pointer}.view-toggle button.active{background:var(--deep-navy);color:#fff}
.catalog-layout .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

/* About */
.about-story{padding-top:4px}.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:start}.story-grid h2{font-size:clamp(2.2rem,4vw,3.7rem)}.story-grid p{font-size:1rem;margin-bottom:18px}
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.offer-grid article{background:var(--pure-white);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}.offer-grid img{width:100%;height:250px;object-fit:contain;background:var(--surface-2)}.offer-grid article>div{padding:24px}.offer-grid article span{font-family:var(--font-mono);font-size:.62rem;color:var(--medium-blue)}.offer-grid h3{text-transform:uppercase;font-size:1.3rem;margin:9px 0}.offer-grid p{font-size:.83rem}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;position:relative;z-index:2}.values-grid article{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);border-radius:18px;padding:26px;min-height:230px}.values-grid span{font-family:var(--font-mono);font-size:.62rem;color:#8FB8FF}.values-grid h3{color:#fff;font-size:1.2rem;text-transform:uppercase;margin:40px 0 10px}.values-grid p{color:#AFC0D9;font-size:.82rem}.about-cta{background:var(--surface);border:1px solid var(--line);border-radius:30px;padding:48px;display:flex;align-items:center;justify-content:space-between;gap:40px}.about-cta span{font-family:var(--font-mono);font-size:.66rem;color:var(--capital-blue);text-transform:uppercase;letter-spacing:.1em}.about-cta h2{font-size:clamp(2rem,4vw,3.3rem);max-width:850px;margin-top:10px}

/* Partnership */
.partner-types{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.partner-types article{border:1px solid var(--line);border-radius:var(--radius);padding:26px;background:var(--pure-white);transition:.3s}.partner-types article:hover{transform:translateY(-6px);box-shadow:var(--shadow-soft)}.partner-icon{width:54px;height:54px;border-radius:15px;background:var(--sky-light);color:var(--capital-blue);display:grid;place-items:center;font-family:var(--font-display);font-size:1.4rem;font-weight:900}.partner-types h3{font-size:1.12rem;margin:25px 0 10px}.partner-types p{font-size:.81rem}
.partnership-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;position:relative;z-index:2}.partnership-grid h2{color:#fff}.partner-benefits{display:grid;gap:10px}.partner-benefits div{display:grid;grid-template-columns:46px 1fr;gap:16px;align-items:center;padding:18px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.045);border-radius:14px}.partner-benefits span{font-family:var(--font-mono);font-size:.62rem;color:#8FB8FF}.partner-benefits p{color:#D2DDF0;font-size:.87rem}
.partner-steps{max-width:920px;margin:auto;display:grid;gap:18px}.partner-steps article{display:grid;grid-template-columns:72px 1fr;gap:24px;align-items:center;padding:22px;border:1px solid var(--line);border-radius:18px;background:var(--pure-white)}.partner-steps article>span{width:58px;height:58px;border-radius:16px;background:var(--capital-blue);color:#fff;display:grid;place-items:center;font-family:var(--font-display);font-size:1.3rem;font-weight:900}.partner-steps h3{font-size:1.12rem;margin-bottom:5px}.partner-steps p{font-size:.82rem}.center-action{text-align:center;margin-top:34px}

/* Contact */
.contact-section{background:var(--surface)}.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:48px;align-items:start}.contact-copy h2{font-size:clamp(2.2rem,4vw,3.8rem)}.contact-copy>p{margin:20px 0 28px}.contact-cards{display:grid;gap:10px}.contact-cards>a,.contact-cards>div{display:grid;grid-template-columns:40px 1fr;gap:14px;align-items:center;padding:16px;border:1px solid var(--line);background:var(--pure-white);border-radius:14px}.contact-cards>*>span{font-family:var(--font-mono);font-size:.62rem;color:var(--medium-blue)}.contact-cards small{display:block;color:var(--muted-2);font-size:.65rem}.contact-cards b{font-size:.9rem}.confidential-note{margin-top:18px;padding:20px;border-radius:16px;background:var(--sky-light);color:var(--deep-navy)}.confidential-note b{font-size:.86rem}.confidential-note p{font-size:.76rem;color:#53647D;margin-top:5px}
.request-panel{background:var(--pure-white);border:1px solid var(--line);border-radius:28px;padding:34px;box-shadow:var(--shadow-soft)}.request-panel-head span{font-family:var(--font-mono);font-size:.63rem;letter-spacing:.1em;color:var(--capital-blue);text-transform:uppercase}.request-panel-head h2{font-size:2rem;text-transform:none;margin:6px 0 24px}.request-panel form{display:grid;gap:15px}.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.request-panel label{display:grid;gap:7px;font-size:.75rem;font-weight:700;color:var(--text)}.request-panel input,.request-panel select,.request-panel textarea{width:100%;border:1px solid var(--line);background:var(--surface);color:var(--text);border-radius:11px;padding:13px 14px;outline:none;font-size:.85rem;transition:.2s}.request-panel input:focus,.request-panel select:focus,.request-panel textarea:focus{border-color:var(--medium-blue);box-shadow:0 0 0 3px rgba(42,109,217,.1)}.request-panel textarea{resize:vertical}.full-btn{width:100%}.form-note{text-align:center;font-size:.68rem}.request-success{text-align:center;padding:48px 10px}.request-success>div{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;background:#DCF6EC;color:var(--success);font-size:1.6rem;margin:0 auto 18px}.request-success h3{font-size:1.5rem}.request-success p{font-size:.84rem;margin-top:6px}

/* Product detail */
.detail-hero{background:var(--surface);padding:68px 0}.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}.product-media{background:var(--pure-white);border:1px solid var(--line);border-radius:28px;min-height:530px;padding:22px;display:block;overflow:hidden}.product-gallery,.product-gallery-empty{width:100%}.product-gallery-main{height:430px;border-radius:20px;background:var(--surface-2);display:grid;place-items:center;position:relative;overflow:hidden}.product-gallery-main>img{width:100%;height:100%;object-fit:contain;padding:12px}.product-gallery-empty{min-height:480px;display:grid;place-items:center}.product-thumbs{display:flex;gap:10px;margin-top:12px;overflow-x:auto;padding:2px 2px 6px;scrollbar-width:thin}.product-thumb{flex:0 0 82px;height:70px;border:2px solid transparent;border-radius:12px;background:var(--surface-2);padding:4px;cursor:pointer;overflow:hidden;transition:.2s}.product-thumb:hover{transform:translateY(-2px)}.product-thumb.active{border-color:var(--medium-blue);box-shadow:0 0 0 3px rgba(42,109,217,.12)}.product-thumb img{width:100%;height:100%;object-fit:contain}.gallery-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border:1px solid var(--line);border-radius:50%;background:rgba(255,255,255,.92);color:var(--deep-navy);font-size:28px;line-height:1;display:grid;place-items:center;cursor:pointer;z-index:2;box-shadow:0 8px 24px rgba(13,27,42,.12)}.gallery-prev{left:12px}.gallery-next{right:12px}.gallery-counter{position:absolute;right:12px;bottom:12px;background:rgba(13,27,42,.82);color:#fff;border-radius:999px;padding:6px 10px;font-family:var(--font-mono);font-size:.58rem;letter-spacing:.06em}.product-info .breadcrumb{color:var(--muted);margin-bottom:16px}.detail-kicker{font-family:var(--font-mono);font-size:.65rem;letter-spacing:.1em;color:var(--capital-blue);text-transform:uppercase}.detail-title{font-size:clamp(2.5rem,5vw,4.8rem);line-height:.95;margin:15px 0 19px}.detail-desc{font-size:1rem;max-width:660px;line-height:1.72;color:var(--muted);overflow-wrap:anywhere}.detail-desc p{margin:0 0 14px}.detail-desc p:last-child{margin-bottom:0}.detail-desc br{content:"";display:block;margin-top:4px}.detail-main-meta{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:24px 0}.detail-main-meta div{padding:14px;border:1px solid var(--line);border-radius:13px;background:var(--pure-white)}.detail-main-meta small{display:block;font-size:.61rem;color:var(--muted-2);margin-bottom:4px}.detail-main-meta b{font-size:.84rem;color:var(--text)}.detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}.product-extra{background:var(--pure-white)}.detail-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.info-block{background:var(--surface);border:1px solid var(--line);border-radius:20px;padding:26px}.info-block h3{font-size:1.08rem;text-transform:uppercase;margin-bottom:18px}.check-list{list-style:none;display:grid;gap:10px}.check-list li{position:relative;padding-left:22px;color:var(--muted);font-size:.82rem}.check-list li::before{content:"✓";position:absolute;left:0;color:var(--medium-blue);font-weight:900}.tech-table{display:grid}.tech-row{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid var(--line);font-size:.78rem}.tech-row:last-child{border-bottom:0}.tech-row span:first-child{color:var(--muted)}.tech-row span:last-child{font-weight:800;text-align:right}.related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:17px}.small-product{background:var(--pure-white);border:1px solid var(--line);border-radius:16px;overflow:hidden}.small-product-img{height:170px;background:var(--surface-2)}.small-product-img img{width:100%;height:100%;object-fit:contain;padding:12px}.small-product>div:last-child{padding:15px}.small-product b{display:block;font-size:.88rem}.small-product span{font-family:var(--font-mono);font-size:.55rem;color:var(--medium-blue)}

/* Footer */
.site-footer{background:var(--deep-navy);color:#fff;padding:70px 0 20px}.footer-grid{display:grid;grid-template-columns:1.35fr repeat(3,1fr);gap:44px}.footer-brand img{width:88px;height:88px;object-fit:contain}.footer-brand p{color:#9FB1CA;font-size:.82rem;max-width:380px;margin-top:20px}.footer-col{display:flex;flex-direction:column;gap:10px}.footer-col h4{font-family:var(--font-mono);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:#8FB8FF;margin-bottom:8px}.footer-col a,.footer-col p{color:#C4D0E1;font-size:.78rem}.footer-col a:hover{color:#fff}.footer-bottom{display:flex;justify-content:space-between;gap:24px;margin-top:50px;padding-top:20px;border-top:1px solid rgba(255,255,255,.11)}.footer-bottom p{font-family:var(--font-mono);font-size:.57rem;letter-spacing:.08em;color:#8292A8}.float-contact{position:fixed;right:24px;bottom:24px;width:56px;height:56px;border-radius:18px;background:var(--medium-blue);display:grid;place-items:center;color:#fff;z-index:160;box-shadow:0 15px 35px rgba(42,109,217,.35);transition:.25s}.float-contact:hover{transform:translateY(-4px)}.float-contact svg{width:27px;fill:currentColor}

.not-found{min-height:70vh;display:grid;place-items:center;text-align:center;background:var(--surface);padding:80px 0}.not-found span{font-family:var(--font-display);font-size:clamp(6rem,20vw,14rem);line-height:.75;color:var(--sky-light)}.not-found h1{font-size:clamp(2.2rem,5vw,4rem);margin:20px 0 14px}.not-found p{margin-bottom:26px}

/* Reveal */
.reveal{opacity:0;transform:translateY(24px);transition:.65s var(--ease)}.reveal.in{opacity:1;transform:none}

/* Responsive */
@media(max-width:1180px){
  .nav-links{display:none}.burger{display:block}.nav-cta{display:none}
  .hero-grid{gap:42px}.hero-showcase{min-height:500px}.showcase-mini{width:160px;height:155px}.showcase-mini img{height:100px}
  .catalog-layout .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .partner-types{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:980px){
  .section{padding:80px 0}.hero-section{padding:72px 0}.hero-grid{grid-template-columns:1fr}.hero-copy{max-width:850px}.hero-showcase{min-height:560px;max-width:720px;width:100%;margin:auto}.category-grid{grid-template-columns:1fr 1fr}.category-business{grid-column:1/-1}.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.why-grid,.partnership-grid,.contact-layout,.product-detail,.story-grid{grid-template-columns:1fr}.steps{grid-template-columns:repeat(2,1fr)}.values-grid{grid-template-columns:repeat(2,1fr)}.offer-grid{grid-template-columns:1fr 1fr}.catalog-layout{grid-template-columns:1fr}.filter-panel{position:static}.filters{grid-template-columns:repeat(5,1fr)}.filters button{justify-content:center;gap:7px}.filter-note{display:none}.page-hero-grid{grid-template-columns:1fr}.hero-metric-card{max-width:280px}.detail-info-grid{grid-template-columns:1fr 1fr}.related-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1.3fr 1fr 1fr}.footer-col:last-child{grid-column:2/4}.about-cta{align-items:flex-start;flex-direction:column}
}
@media(max-width:720px){
  .wrap{width:min(100% - 30px,var(--wrap))}.topbar-tags span:nth-child(n+2){display:none}.topbar-inner{font-size:.56rem}.brand-logo img{width:56px;height:56px}.nav-inner{min-height:70px}.lang-switch{display:none}
  .hero-section{min-height:auto;padding:62px 0 70px}.hero-copy h1{font-size:clamp(2.75rem,14vw,4.2rem)}.hero-copy p{font-size:.96rem}.hero-tags{grid-template-columns:repeat(2,1fr);gap:18px}.hero-tags div{border-right:0}.hero-showcase{min-height:430px}.showcase-main{inset:28px 15px 25px 0;padding:16px}.showcase-mini{width:128px;height:128px;padding:9px;border-radius:16px}.showcase-mini img{height:82px}.showcase-mini span{font-size:.63rem}.equipment-mini{right:0}.mold-mini{right:0}.listing-chip{left:28px;bottom:35px}
  .section{padding:66px 0}.section-head{align-items:flex-start;flex-direction:column;gap:14px;margin-bottom:28px}.section-head>p{font-size:.9rem}.category-grid,.product-grid,.catalog-layout .product-grid,.offer-grid,.partner-types{grid-template-columns:1fr}.category-business{grid-column:auto}.category-card{min-height:330px}.why-grid{gap:40px}.benefits-grid,.values-grid,.steps,.detail-info-grid{grid-template-columns:1fr}.cta-inner{align-items:flex-start;flex-direction:column}.catalog-toolbar{flex-direction:column}.catalog-toolbar select{width:100%}.filters{display:flex;overflow:auto;padding-bottom:4px}.filters button{width:auto;min-width:max-content}.catalog-result-head{margin-top:8px}.product-grid.list-view .product-card>a{grid-template-columns:1fr}.product-grid.list-view .product-image{height:auto;aspect-ratio:1.35/1}.page-hero{padding:72px 0 60px}.page-hero h1{font-size:clamp(2.5rem,13vw,4rem)}.field-grid{grid-template-columns:1fr}.request-panel{padding:24px}.detail-hero{padding:38px 0}.product-media{min-height:360px;padding:12px}.product-gallery-main{height:310px}.product-thumb{flex-basis:72px;height:62px}.detail-main-meta{grid-template-columns:1fr}.related-grid{grid-template-columns:1fr}.partner-steps article{grid-template-columns:52px 1fr;gap:14px}.partner-steps article>span{width:48px;height:48px}.footer-grid{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}.footer-col:last-child{grid-column:auto}.footer-bottom{flex-direction:column}.mobile-menu>a:not(.btn){font-size:1.45rem}.float-contact{right:16px;bottom:16px;width:52px;height:52px;border-radius:16px}
}
@media(max-width:460px){.footer-grid{grid-template-columns:1fr}.footer-brand,.footer-col:last-child{grid-column:auto}.hero-actions .btn{width:100%}.showcase-mini{display:none}.showcase-main{inset:0}.hero-showcase{min-height:360px}.category-card{min-height:300px}.product-body{padding:18px}.about-cta{padding:28px}.request-panel-head h2{font-size:1.65rem}}

.dark-mode .brand-logo img{content:none}


/* =========================================================
   Mobile UX / Responsive v2
   ========================================================= */
html{scroll-padding-top:110px}
body.menu-open{overflow:hidden;touch-action:none}
h1,h2,h3,.detail-title{overflow-wrap:anywhere}
.mobile-menu-tools{display:none}

@media (hover:none),(pointer:coarse){
  .btn:hover,.product-card:hover,.category-card:hover,.small-product:hover,.benefits-grid article:hover,.steps article:hover{transform:none}
  .product-card:hover .product-image img,.category-card:hover img{transform:none}
  .btn,.filters button,.product-thumb,.gallery-arrow,.theme-toggle,.burger{min-height:44px}
}

@media(max-width:980px){
  .nav-inner{gap:14px}
  .hero-grid{gap:44px}
  .product-detail{align-items:start}
  .detail-title{font-size:clamp(2.55rem,7.5vw,4.6rem)}
  .detail-actions .btn{flex:1 1 180px}
  .catalog-section{overflow:hidden}
}

@media(max-width:720px){
  :root{--radius:18px;--radius-sm:12px}
  html{scroll-padding-top:76px}
  body{font-size:15px;padding-bottom:env(safe-area-inset-bottom)}
  .wrap{width:min(var(--wrap),calc(100% - 24px))}
  .topbar{display:none}
  .site-header{backdrop-filter:blur(14px)}
  .nav-inner{min-height:68px;gap:10px}
  .brand-logo img{width:50px;height:50px}
  .nav-actions{margin-left:auto;gap:6px}
  .nav-actions>.theme-toggle{display:none}
  .burger{display:grid;place-items:center;width:46px;height:46px;padding:8px;border:1px solid var(--line);border-radius:12px;background:var(--surface)}
  .burger span{margin:3px auto}

  .mobile-menu{justify-content:flex-start;gap:4px;padding:112px 22px calc(28px + env(safe-area-inset-bottom));overflow-y:auto;overscroll-behavior:contain}
  .mobile-menu>a:not(.btn){font-size:clamp(1.45rem,8vw,2rem);padding:12px 0}
  .mobile-logo{width:70px;height:70px;top:20px;left:22px}
  .mobile-close{right:18px;top:17px;width:48px;height:48px;border:1px solid rgba(255,255,255,.16);border-radius:14px;display:grid;place-items:center;line-height:1}
  .mobile-menu .btn{width:100%;margin-top:18px;min-height:52px}
  .mobile-menu-tools{display:grid;grid-template-columns:1fr 52px;gap:10px;margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.12)}
  .mobile-lang-switch{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;padding:4px;border:1px solid rgba(255,255,255,.15);border-radius:13px;background:rgba(255,255,255,.06)}
  .mobile-lang-switch button{min-height:44px;border:0;border-radius:9px;background:transparent;color:#BFD0E6;font-family:var(--font-mono);font-weight:700;cursor:pointer}
  .mobile-lang-switch button.active{background:var(--medium-blue);color:#fff}
  .mobile-theme-toggle{min-height:52px;border:1px solid rgba(255,255,255,.15);border-radius:13px;background:rgba(255,255,255,.06);color:#fff;font-size:1.2rem;cursor:pointer}

  .hero-section{min-height:auto;padding:46px 0 54px}
  .hero-grid{gap:34px}
  .eyebrow{max-width:100%;margin-bottom:20px;padding:8px 11px}
  .eyebrow b{font-size:.56rem;line-height:1.45}
  .hero-copy h1{font-size:clamp(2.45rem,13vw,3.65rem);line-height:.94;letter-spacing:-.045em}
  .hero-copy p{font-size:.95rem;line-height:1.7;margin:20px 0 25px}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:10px}
  .hero-actions .btn{width:100%;min-height:52px}
  .hero-tags{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:28px;padding-top:18px}
  .hero-tags div{min-width:0;padding:12px;border:1px solid rgba(255,255,255,.1);border-radius:12px;background:rgba(255,255,255,.035)}
  .hero-tags span{font-size:.76rem;overflow-wrap:anywhere}
  .hero-showcase{min-height:0;width:100%;aspect-ratio:4/3}
  .showcase-main{position:relative;inset:auto;width:100%;height:100%;padding:13px;border-radius:22px}
  .showcase-main>a>img,.showcase-main>img{border-radius:14px}
  .showcase-mini{display:none}
  .listing-chip{left:24px;right:auto;bottom:24px;padding:10px 12px;border-radius:11px}
  .listing-chip b{font-size:.78rem}
  .ticker-track{gap:34px;padding:12px 0;font-size:.76rem;animation-duration:26s}
  .ticker-track span{gap:34px}

  .section{padding:54px 0}
  .section-label{gap:10px;margin-bottom:14px;font-size:.61rem}
  .section-label i{width:34px}
  h2{font-size:clamp(2rem,10vw,3rem);line-height:1.02}
  .section-head{margin-bottom:24px}
  .section-head>p{font-size:.88rem;line-height:1.65}
  .why-grid{gap:30px}
  .why-intro p{margin:16px 0 22px}
  .benefits-grid{gap:10px}
  .benefits-grid article{padding:20px;border-radius:15px}
  .steps{gap:10px}
  .steps article{min-height:0;padding:20px 18px;border-radius:0 0 15px 15px}
  .steps h3{margin:18px 0 8px}
  .cta-section{padding:48px 0}
  .cta-inner{gap:22px}
  .cta-inner .btn{width:100%}

  .page-hero{padding:52px 0 46px}
  .page-hero-grid{gap:30px}
  .page-hero h1{font-size:clamp(2.35rem,12vw,3.75rem);line-height:.96}
  .page-hero p{font-size:.94rem;line-height:1.65}
  .hero-metric-card{max-width:none;width:100%;padding:20px;border-radius:18px}
  .hero-metric-card strong{font-size:3.8rem;margin:12px 0 2px}
  .breadcrumb{font-size:.56rem;line-height:1.65;margin-bottom:14px}

  .catalog-toolbar{gap:10px;margin-bottom:18px}
  .catalog-search{padding:0 12px;border-radius:12px}
  .catalog-search input,.catalog-toolbar select,input,select,textarea{font-size:16px}
  .catalog-search input,.catalog-toolbar select{height:50px}
  .filter-panel{padding:0;border:0;background:transparent;box-shadow:none}
  .filter-title{margin-bottom:10px}
  .filters{display:flex;gap:8px;overflow-x:auto;margin-inline:-12px;padding:2px 12px 10px;scroll-snap-type:x proximity;scrollbar-width:none}
  .filters::-webkit-scrollbar{display:none}
  .filters button{flex:0 0 auto;min-width:max-content;justify-content:center;gap:8px;padding:11px 14px;scroll-snap-align:start;background:var(--pure-white);border-color:var(--line)}
  .catalog-result-head{gap:10px;align-items:center}
  .view-toggle{display:none}
  .product-grid,.catalog-layout .product-grid{gap:14px}
  .product-card{border-radius:18px}
  .product-image{aspect-ratio:4/3}
  .product-image img{padding:10px}
  .product-category,.product-status{top:10px;padding:5px 7px;font-size:.49rem}
  .product-category{left:10px}.product-status{right:10px}
  .product-body{padding:17px}
  .product-body h3{font-size:1.08rem;margin-bottom:8px}
  .product-description{font-size:.82rem;line-height:1.55;margin-bottom:12px}
  .product-footer{padding-top:13px}
  .empty-products{padding:44px 18px}

  .detail-hero{padding:24px 0 34px}
  .product-detail{gap:26px}
  .product-media{min-height:0;padding:10px;border-radius:20px}
  .product-gallery-main{height:auto;aspect-ratio:4/3;border-radius:14px;touch-action:pan-y}
  .product-gallery-main>img{padding:8px}
  .product-thumbs{gap:8px;margin-top:9px}
  .product-thumb{flex:0 0 68px;height:58px;border-radius:10px}
  .gallery-arrow{width:40px;height:40px;font-size:25px}
  .gallery-prev{left:8px}.gallery-next{right:8px}
  .gallery-counter{right:8px;bottom:8px}
  .product-info .breadcrumb{margin-bottom:12px}
  .detail-kicker{font-size:.56rem;line-height:1.55}
  .detail-title{font-size:clamp(2.15rem,11vw,3.25rem);line-height:.97;margin:12px 0 16px}
  .detail-desc{font-size:.94rem;line-height:1.72}
  .detail-main-meta{grid-template-columns:1fr 1fr;gap:8px;margin:18px 0}
  .detail-main-meta div{padding:12px}
  .detail-main-meta div:last-child{grid-column:1/-1}
  .detail-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:18px}
  .detail-actions .btn{width:100%;padding-inline:10px;white-space:normal;text-align:center}
  .detail-actions .btn:first-child{grid-column:1/-1}
  .product-extra{padding-top:42px}
  .detail-info-grid{gap:12px}
  .info-block{padding:20px;border-radius:16px}
  .info-block h3{font-size:1rem;margin-bottom:14px}
  .check-list{gap:9px}
  .check-list li{font-size:.82rem;line-height:1.55}
  .tech-row{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);align-items:start;padding:10px 0;line-height:1.45}
  .tech-row span:last-child{overflow-wrap:anywhere}
  .related-grid{display:flex;gap:12px;overflow-x:auto;margin-inline:-12px;padding:0 12px 8px;scroll-snap-type:x mandatory;scrollbar-width:none}
  .related-grid::-webkit-scrollbar{display:none}
  .small-product{flex:0 0 min(82vw,330px);scroll-snap-align:start}
  .small-product-img{height:190px}

  .offer-grid article,.partner-types article,.values-grid article{border-radius:16px}
  .contact-layout{gap:28px}
  .request-panel{padding:20px;border-radius:18px}
  .request-panel-head h2{font-size:1.65rem}
  .field input,.field select,.field textarea{min-height:48px}

  .site-footer{padding:52px 0 18px}
  .footer-grid{gap:28px}
  .footer-brand p{margin-top:14px}
  .footer-bottom{margin-top:32px;gap:10px}
  .float-contact{right:14px;bottom:calc(14px + env(safe-area-inset-bottom));width:52px;height:52px;border-radius:16px}
}

@media(max-width:460px){
  .wrap{width:min(var(--wrap),calc(100% - 20px))}
  .hero-copy h1{font-size:clamp(2.25rem,13.5vw,3.15rem)}
  .hero-showcase{aspect-ratio:1/1}
  .listing-chip{left:18px;bottom:18px;max-width:calc(100% - 36px)}
  .hero-tags{grid-template-columns:1fr 1fr}
  .detail-main-meta{grid-template-columns:1fr}
  .detail-main-meta div:last-child{grid-column:auto}
  .detail-actions{grid-template-columns:1fr}
  .detail-actions .btn:first-child{grid-column:auto}
  .footer-grid{grid-template-columns:1fr}
  .mobile-menu{padding-inline:18px}
  .mobile-menu-tools{grid-template-columns:1fr 48px}
}

/* =========================================================
   Mobile catalog card containment fix
   Keeps every listing fully inside the phone viewport.
   ========================================================= */
@media (max-width:720px){
  .catalog-section,
  .catalog-section .wrap,
  .catalog-layout,
  .catalog-layout > div,
  #prodGrid,
  .product-grid,
  .catalog-layout .product-grid,
  .product-card,
  .product-card > a,
  .product-body{
    min-width:0;
    max-width:100%;
  }

  .catalog-section .wrap{
    width:100%;
    padding-inline:12px;
  }

  .catalog-layout{
    display:block;
    width:100%;
  }

  .product-grid,
  .catalog-layout .product-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) !important;
    width:100%;
  }

  .product-card{
    width:100%;
    overflow:hidden;
  }

  .product-card > a{
    width:100%;
    overflow:hidden;
  }

  .product-image{
    width:100%;
    min-width:0;
    aspect-ratio:4/3;
    overflow:hidden;
  }

  .product-image img{
    display:block;
    width:100%;
    max-width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
  }

  .product-meta,
  .product-footer,
  .product-price{
    min-width:0;
    max-width:100%;
  }

  .product-meta span,
  .product-body h3,
  .product-description,
  .product-price b{
    white-space:normal;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .product-body h3{
    line-height:1.2;
  }

  .product-description{
    display:block;
    -webkit-line-clamp:unset;
    -webkit-box-orient:initial;
    max-height:none;
    overflow:visible;
    line-height:1.55;
  }

  .product-footer{
    flex-wrap:wrap;
    align-items:center;
  }

  .product-price{
    flex:1 1 180px;
  }

  .product-more{
    flex:0 0 36px;
  }
}

@media (max-width:420px){
  .catalog-section .wrap{padding-inline:10px}
  .product-image{aspect-ratio:1/1}
  .product-body{padding:15px}
  .product-body h3{font-size:1.02rem}
  .product-description{font-size:.8rem}
}
