
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --r:#C41230;--r-d:#A3001F;--r-l:#E01535;--r-bg:#FDF2F4;
  --n:#0B1929;--n2:#162437;--n3:#1E3452;
  --w:#fff;--off:#F7F9FC;--g:#EEF1F6;--border:#E2E7EF;
  --t:#1E293B;--m:#64748B;
  --f:'Plus Jakarta Sans',sans-serif;
  --ease:cubic-bezier(.25,.46,.45,.94);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--f);color:var(--t);background:var(--w);overflow-x:hidden;line-height:1.6}
::selection{background:var(--r);color:#fff}
::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--g)}
::-webkit-scrollbar-thumb{background:var(--r);border-radius:2px}
img{max-width:100%;display:block}
a{text-decoration:none}

/* ─── TOP NOTICE ─── */
.top-notice{background:var(--r);color:#fff;text-align:center;font-size:.73rem;font-weight:600;padding:.45rem 1rem;letter-spacing:.04em}
.top-notice a{color:rgba(255,255,255,.85);text-decoration:underline;margin-left:.5rem}

/* ─── NAV ─── */
.nav{position:sticky;top:0;z-index:900;background:rgba(255,255,255,.97);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);transition:box-shadow .3s}
.nav.scrolled{box-shadow:0 4px 24px rgba(11,25,41,.08)}
.nav-wrap{max-width:1320px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;height:70px;gap:2rem}
.logo{display:flex;align-items:center;gap:.8rem;flex-shrink:0}
.logo img{height:44px;width:auto;object-fit:contain}
.logo-name{font-size:1.45rem;font-weight:800;color:var(--n);letter-spacing:-.02em}
.logo-sub{font-size:.58rem;color:var(--m);letter-spacing:.16em;text-transform:uppercase;font-weight:500;margin-top:.1rem}
.nav-center{display:flex;align-items:center;gap:.2rem;list-style:none;margin:0 auto}
.nav-center>li{position:relative}
.nav-center>li>a{display:flex;align-items:center;gap:.3rem;font-size:.88rem;font-weight:600;color:var(--t);padding:.5rem .9rem;border-radius:8px;transition:color .15s,background .15s}
.nav-center>li>a:hover,.nav-center>li>a.active{color:var(--r);background:var(--r-bg)}
.nav-center>li>a svg{width:14px;height:14px;opacity:.5;transition:transform .2s}
.nav-center>li:hover>a svg{transform:rotate(180deg);opacity:1}
/* dropdown */
.nav-drop{display:none;position:absolute;top:calc(100% + 6px);left:0;background:#fff;border:1px solid var(--border);border-top:2px solid var(--r);border-radius:0 0 10px 10px;min-width:220px;padding:.4rem;box-shadow:0 12px 40px rgba(11,25,41,.12);list-style:none;z-index:999}
.nav-center>li:hover .nav-drop{display:block}
.nav-drop a{display:flex;align-items:center;justify-content:space-between;padding:.55rem .9rem;font-size:.86rem;font-weight:600;color:var(--t);border-radius:8px;transition:background .15s,color .15s;gap:.5rem}
.nav-drop a:hover{background:var(--r-bg);color:var(--r)}
.nav-drop a span{font-size:.58rem;background:var(--r-bg);color:var(--r);padding:.12rem .5rem;border-radius:4px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;flex-shrink:0;white-space:nowrap}
.nav-right{display:flex;align-items:center;gap:.8rem;flex-shrink:0}
.nav-phone{font-size:.85rem;font-weight:700;color:var(--n);white-space:nowrap}
.btn-nav{background:var(--r);color:#fff;font-size:.85rem;font-weight:700;padding:.6rem 1.4rem;border-radius:8px;transition:background .2s,transform .2s;white-space:nowrap}
.btn-nav:hover{background:var(--r-d);transform:translateY(-1px)}
.ham{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.5rem}
.ham span{display:block;width:22px;height:2px;background:var(--n);border-radius:2px;transition:.3s}

/* ─── MOBILE DRAWER ─── */
.drawer{display:none;position:fixed;inset:0;z-index:9999;background:#fff;flex-direction:column;padding:1.5rem}
.drawer.open{display:flex}
.drawer-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}
.drawer-close{background:none;border:none;font-size:1.6rem;cursor:pointer;color:var(--n)}
.drawer nav a{display:block;font-size:1rem;font-weight:600;color:var(--t);padding:.9rem 0;border-bottom:1px solid var(--border)}
.drawer nav a:hover{color:var(--r)}
.drawer-cta{margin-top:1.5rem;background:var(--r);color:#fff;text-align:center;padding:1rem;font-weight:700;border-radius:10px}

/* ─── BUTTONS ─── */
.btn{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--f);font-weight:700;cursor:pointer;transition:all .2s var(--ease);border:none;font-size:.9rem}
.btn-red{background:var(--r);color:#fff;padding:.85rem 2rem;border-radius:10px;box-shadow:0 4px 16px rgba(196,18,48,.3)}
.btn-red:hover{background:var(--r-d);transform:translateY(-2px);box-shadow:0 8px 24px rgba(196,18,48,.4)}
.btn-outline{background:transparent;color:var(--r);border:2px solid var(--r);padding:.82rem 1.8rem;border-radius:10px}
.btn-outline:hover{background:var(--r-bg)}
.btn-ghost{background:rgba(255,255,255,.12);color:#fff;border:1.5px solid rgba(255,255,255,.3);padding:.82rem 1.8rem;border-radius:10px}
.btn-ghost:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.6)}
.btn-white{background:#fff;color:var(--r);padding:.85rem 2rem;border-radius:10px;box-shadow:0 4px 16px rgba(0,0,0,.12)}
.btn-white:hover{background:var(--off);transform:translateY(-1px)}

/* ─── HERO ─── */
.hero{position:relative;min-height:92vh;display:flex;flex-direction:column;overflow:hidden;background:var(--n)}
.hero-video-bg{position:absolute;inset:0;overflow:hidden}
.hero-video-bg img{width:100%;height:100%;object-fit:cover;object-position:center right;opacity:.2;filter:saturate(.6)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(100deg,rgba(11,25,41,.97) 0%,rgba(11,25,41,.88) 50%,rgba(11,25,41,.5) 100%)}
.hero-inner{position:relative;z-index:2;flex:1;display:flex;align-items:center;max-width:1320px;margin:0 auto;padding:7rem 2rem 4rem;width:100%}
.hero-content{max-width:680px}
.hero-label{display:inline-flex;align-items:center;gap:.5rem;background:rgba(196,18,48,.15);border:1px solid rgba(196,18,48,.3);color:rgba(255,255,255,.85);font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:.4rem 1rem;border-radius:100px;margin-bottom:1.8rem}
.hero-label::before{content:'';width:6px;height:6px;background:var(--r);border-radius:50%;flex-shrink:0}
.hero h1{font-size:5rem;font-weight:800;line-height:1.0;color:#fff;letter-spacing:-.04em;margin-bottom:1.5rem}
.hero h1 mark{background:none;color:var(--r)}
.hero-desc{font-size:1.05rem;color:rgba(255,255,255,.6);line-height:1.8;max-width:540px;margin-bottom:2.5rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{position:relative;z-index:2;background:rgba(255,255,255,.06);border-top:1px solid rgba(255,255,255,.08)}
.hero-stats-inner{max-width:1320px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:repeat(4,1fr)}
.hero-stat{padding:1.8rem 2rem;border-right:1px solid rgba(255,255,255,.08)}
.hero-stat:last-child{border-right:none}
.hero-stat-n{font-size:2.6rem;font-weight:800;color:#fff;letter-spacing:-.03em;line-height:1}
.hero-stat-l{font-size:.75rem;color:rgba(255,255,255,.45);margin-top:.4rem;font-weight:500;line-height:1.4}

/* ─── SECTION BASE ─── */
.s{padding:6rem 0}
.s-sm{padding:4rem 0}
.wrap{max-width:1320px;margin:0 auto;padding:0 2rem}
.s-tag{display:inline-flex;align-items:center;gap:.5rem;font-size:.7rem;font-weight:800;color:var(--r);letter-spacing:.16em;text-transform:uppercase;margin-bottom:.8rem}
.s-tag::before{content:'';width:20px;height:2px;background:var(--r);border-radius:1px}
.s-h2{font-size:2.6rem;font-weight:800;color:var(--n);line-height:1.12;letter-spacing:-.03em;margin-bottom:.8rem}
.s-sub{font-size:.95rem;color:var(--m);max-width:560px;line-height:1.8}
.s-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;flex-wrap:wrap;gap:2rem}

/* ─── TRUST BAR ─── */
.trust-bar{background:var(--n);border-top:3px solid var(--r);padding:1.5rem 0}
.trust-bar-inner{max-width:1320px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:.7rem;color:rgba(255,255,255,.7);font-size:.82rem;font-weight:600}
.trust-item-icon{width:28px;height:28px;background:var(--r);border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:.85rem;flex-shrink:0}

/* ─── PRODUCT CATEGORIES ─── */
.cats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.cat-card{border-radius:16px;overflow:hidden;position:relative;background:var(--n);display:block;aspect-ratio:4/3;transition:transform .4s var(--ease)}
.cat-card:hover{transform:translateY(-4px)}
.cat-card img{width:100%;height:100%;object-fit:contain;padding:2rem;transition:transform .5s var(--ease);opacity:.7}
.cat-card:hover img{transform:scale(1.05)}
.cat-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(11,25,41,.95) 0%,rgba(11,25,41,.5) 50%,transparent 100%)}
.cat-card-body{position:absolute;bottom:0;left:0;right:0;padding:1.5rem}
.cat-card-num{font-size:.62rem;font-weight:800;color:var(--r);letter-spacing:.18em;text-transform:uppercase;margin-bottom:.3rem}
.cat-card-title{font-size:1.15rem;font-weight:800;color:#fff;margin-bottom:.3rem;letter-spacing:-.01em}
.cat-card-sub{font-size:.78rem;color:rgba(255,255,255,.55);line-height:1.5}
.cat-card-arrow{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;background:var(--r);border-radius:50%;color:#fff;font-size:.9rem;margin-top:.8rem;transition:transform .2s}
.cat-card:hover .cat-card-arrow{transform:translateX(4px)}
.cat-card--large{grid-column:span 2;aspect-ratio:16/7}

/* ─── PRODUCT STRIP (IOL carousel) ─── */
.iol-strip{background:var(--off)}
.iol-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.iol-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:1.5rem;display:flex;flex-direction:column;transition:box-shadow .3s,transform .3s}
.iol-card:hover{box-shadow:0 16px 40px rgba(11,25,41,.1);transform:translateY(-4px)}
.iol-card-img{height:130px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;background:var(--g);border-radius:10px;overflow:hidden}
.iol-card-img img{max-height:100px;object-fit:contain;transition:transform .4s}
.iol-card:hover .iol-card-img img{transform:scale(1.08)}
.iol-badge{display:inline-block;background:var(--r-bg);color:var(--r);font-size:.6rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;padding:.2rem .6rem;border-radius:4px;margin-bottom:.6rem}
.iol-name{font-size:1.05rem;font-weight:800;color:var(--n);margin-bottom:.4rem;letter-spacing:-.01em}
.iol-desc{font-size:.8rem;color:var(--m);line-height:1.6;flex:1}
.iol-link{display:inline-flex;align-items:center;gap:.3rem;font-size:.8rem;font-weight:700;color:var(--r);margin-top:1rem}
.iol-link::after{content:'→';transition:transform .2s}
.iol-card:hover .iol-link::after{transform:translateX(4px)}

/* ─── STELLARIS SPOTLIGHT ─── */
.stellaris{background:var(--n);overflow:hidden;position:relative}
.stellaris::before{content:'';position:absolute;right:0;top:0;bottom:0;width:50%;background:var(--r);clip-path:polygon(15% 0,100% 0,100% 100%,0% 100%)}
.stellaris-inner{max-width:1320px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 1fr;min-height:600px;position:relative;z-index:1}
.stellaris-left{display:flex;align-items:center;justify-content:center;padding:5rem 3rem 5rem 0}
.stellaris-img{max-height:440px;object-fit:contain;filter:drop-shadow(0 30px 60px rgba(0,0,0,.5));transition:transform .6s}
.stellaris-left:hover .stellaris-img{transform:translateY(-8px) scale(1.02)}
.stellaris-right{display:flex;flex-direction:column;justify-content:center;padding:5rem 0 5rem 4rem}
.stellaris-right .s-tag{color:rgba(255,255,255,.65)}
.stellaris-right .s-tag::before{background:rgba(255,255,255,.4)}
.stellaris-h2{font-size:3rem;font-weight:800;color:#fff;letter-spacing:-.03em;margin-bottom:1rem;line-height:1.1}
.stellaris-desc{font-size:.95rem;color:rgba(255,255,255,.7);line-height:1.8;margin-bottom:2rem;max-width:400px}
.stellaris-specs{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:2.5rem}
.spec-box{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:1rem}
.spec-n{font-size:1.6rem;font-weight:800;color:#fff;letter-spacing:-.02em;line-height:1}
.spec-l{font-size:.68rem;color:rgba(255,255,255,.55);font-weight:600;letter-spacing:.06em;text-transform:uppercase;margin-top:.3rem}

/* ─── WHY US ─── */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:3.5rem}
.why-card{border-radius:16px;padding:2rem;border:1px solid var(--border);background:#fff;transition:box-shadow .3s,transform .3s,border-color .3s}
.why-card:hover{box-shadow:0 16px 40px rgba(196,18,48,.08);transform:translateY(-3px);border-color:rgba(196,18,48,.25)}
.why-icon{width:48px;height:48px;background:var(--r-bg);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:1.2rem}
.why-h3{font-size:1.05rem;font-weight:800;color:var(--n);margin-bottom:.6rem;letter-spacing:-.01em}
.why-p{font-size:.84rem;color:var(--m);line-height:1.75}

/* ─── NUMBERS ─── */
.numbers-section{background:linear-gradient(135deg,var(--n) 0%,var(--n3) 100%);position:relative;overflow:hidden}
.numbers-section::after{content:'';position:absolute;bottom:-80px;right:-80px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(196,18,48,.2) 0%,transparent 70%)}
.numbers-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid rgba(255,255,255,.08);border-radius:16px;overflow:hidden}
.num-box{padding:2.5rem 2rem;text-align:center;border-right:1px solid rgba(255,255,255,.08)}
.num-box:last-child{border-right:none}
.num-n{font-size:3.2rem;font-weight:800;color:#fff;letter-spacing:-.04em;line-height:1}
.num-plus{color:var(--r)}
.num-l{font-size:.75rem;color:rgba(255,255,255,.45);margin-top:.6rem;font-weight:600;letter-spacing:.05em;line-height:1.5}

/* ─── PROCESS ─── */
.process-section{background:var(--off)}
.process-grid{display:grid;grid-template-columns:1fr 2fr;gap:6rem;align-items:center}
.process-steps{display:flex;flex-direction:column}
.p-step{display:grid;grid-template-columns:56px 1fr;gap:1.2rem;padding:1.8rem 0;border-bottom:1px solid var(--border);cursor:default;border-radius:12px;transition:all .2s;padding-left:.5rem;padding-right:.5rem}
.p-step:last-child{border-bottom:none}
.p-step:hover{background:var(--r-bg);padding-left:1rem;padding-right:1rem}
.p-num{font-size:2.5rem;font-weight:800;color:var(--border);letter-spacing:-.04em;line-height:1;transition:color .2s}
.p-step:hover .p-num{color:var(--r)}
.p-title{font-size:1.05rem;font-weight:800;color:var(--n);margin-bottom:.4rem;letter-spacing:-.01em}
.p-desc{font-size:.85rem;color:var(--m);line-height:1.75}

/* ─── CTA ─── */
.cta-section{background:var(--r);position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;left:-100px;top:50%;transform:translateY(-50%);width:500px;height:500px;border-radius:50%;background:rgba(255,255,255,.06)}
.cta-section::after{content:'';position:absolute;right:-60px;bottom:-80px;width:300px;height:300px;border-radius:50%;background:rgba(0,0,0,.08)}
.cta-inner{max-width:1320px;margin:0 auto;padding:5rem 2rem;position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.cta-h2{font-size:2.8rem;font-weight:800;color:#fff;letter-spacing:-.03em;line-height:1.1;margin-bottom:.8rem}
.cta-sub{font-size:.97rem;color:rgba(255,255,255,.75);line-height:1.8}
.cta-form{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:20px;padding:2rem;backdrop-filter:blur(10px)}
.cta-form h3{font-size:1.2rem;font-weight:800;color:#fff;margin-bottom:1.2rem}
.cta-input{width:100%;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:#fff;padding:.8rem 1.1rem;border-radius:8px;font-family:var(--f);font-size:.88rem;font-weight:500;outline:none;transition:border-color .2s;margin-bottom:.8rem}
.cta-input::placeholder{color:rgba(255,255,255,.4)}
.cta-input:focus{border-color:rgba(255,255,255,.6)}
.cta-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.cta-select{width:100%;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.8);padding:.8rem 1.1rem;border-radius:8px;font-family:var(--f);font-size:.88rem;outline:none;margin-bottom:.8rem}
.cta-select option{background:var(--n);color:#fff}
.cta-submit{width:100%;background:#fff;color:var(--r);border:none;padding:.95rem;font-family:var(--f);font-size:.92rem;font-weight:800;border-radius:8px;cursor:pointer;letter-spacing:.02em;transition:all .2s}
.cta-submit:hover{background:var(--off);transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,.2)}
.cta-note{font-size:.71rem;color:rgba(255,255,255,.4);text-align:center;margin-top:.7rem}

/* ─── FOOTER ─── */
footer{background:var(--n);color:rgba(255,255,255,.5)}
.foot-top{max-width:1320px;margin:0 auto;padding:4.5rem 2rem 3rem;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3.5rem}
.foot-logo{display:flex;align-items:center;gap:.8rem;margin-bottom:1.2rem}
.foot-logo img{height:42px;filter:brightness(0) invert(1);opacity:.8;object-fit:contain}
.foot-logo-name{font-size:1.4rem;font-weight:800;color:#fff}
.foot-about{font-size:.83rem;line-height:1.8;max-width:260px;margin-bottom:1.5rem}
.foot-contacts a{display:flex;align-items:center;gap:.5rem;font-size:.84rem;color:rgba(255,255,255,.5);margin-bottom:.5rem;transition:color .2s}
.foot-contacts a:hover{color:#fff}
.foot-h{font-size:.68rem;font-weight:800;color:rgba(255,255,255,.9);letter-spacing:.16em;text-transform:uppercase;margin-bottom:1.3rem}
.foot-links{list-style:none}
.foot-links li{margin-bottom:.6rem}
.foot-links a{font-size:.84rem;color:rgba(255,255,255,.45);transition:color .2s;font-weight:500}
.foot-links a:hover{color:#fff}
.foot-bottom{border-top:1px solid rgba(255,255,255,.07);padding:1.8rem 2rem;max-width:1320px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;font-size:.75rem;color:rgba(255,255,255,.25)}
.foot-bottom a{color:rgba(255,255,255,.25);transition:color .2s}
.foot-bottom a:hover{color:var(--r)}

/* ─── STICKY BOTTOM NAV (mobile) ─── */
.btm-nav{display:none;position:fixed;bottom:0;left:0;right:0;z-index:800;background:#fff;border-top:1px solid var(--border);height:60px;grid-template-columns:repeat(4,1fr);box-shadow:0 -4px 20px rgba(11,25,41,.08)}
.btm-nav a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;text-decoration:none;color:var(--m);font-size:.55rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;-webkit-tap-highlight-color:transparent;transition:color .2s}
.btm-nav a.active,.btm-nav a:active{color:var(--r)}
.btm-nav a svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.btm-nav-cta{background:var(--r);color:#fff!important;border-radius:10px;margin:8px 6px}

/* ─── WA FLOAT ─── */
.wa-btn{position:fixed;bottom:2rem;right:2rem;z-index:700;width:54px;height:54px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);transition:transform .25s}
.wa-btn:hover{transform:scale(1.1)}
.up-btn{position:fixed;bottom:7rem;right:2rem;z-index:700;width:42px;height:42px;border-radius:10px;background:#fff;border:1.5px solid var(--border);color:var(--n);font-size:1rem;cursor:pointer;opacity:0;transform:translateY(10px);transition:.3s;display:flex;align-items:center;justify-content:center}
.up-btn.show{opacity:1;transform:translateY(0)}
.up-btn:hover{border-color:var(--r);color:var(--r)}

/* ─── ANIMATIONS ─── */
.fade{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.fade.in{opacity:1;transform:none}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px){
  .hero-inner{padding-top:5rem}
  .hero h1{font-size:3.5rem}
  .cats-grid{grid-template-columns:1fr 1fr}
  .cat-card--large{grid-column:span 1;aspect-ratio:4/3}
  .iol-grid{grid-template-columns:repeat(2,1fr)}
  .stellaris::before{display:none}
  .stellaris-inner{grid-template-columns:1fr;padding:0}
  .stellaris-left{padding:3rem 2rem 1rem}
  .stellaris-img{max-height:260px}
  .stellaris-right{padding:1rem 2rem 3rem;background:var(--r)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .numbers-grid{grid-template-columns:repeat(2,1fr)}
  .num-box:nth-child(2){border-right:none}
  .process-grid{grid-template-columns:1fr}
  .cta-inner{grid-template-columns:1fr}
  .foot-top{grid-template-columns:1fr 1fr;gap:2.5rem}
}
@media(max-width:768px){
  .top-notice{display:none}
  .nav-wrap{padding:0 1.2rem}
  .nav-center,.nav-right .nav-phone{display:none}
  .ham{display:flex}
  .hero h1{font-size:2.2rem}
  .hero-inner{padding:4.5rem 1.2rem 3rem}
  .hero-stats{grid-template-columns:repeat(2,1fr);padding:0 1.2rem 2rem}
  .trust-bar-inner{flex-direction:column;align-items:flex-start;gap:1rem;padding:1rem 1.2rem}
  .s{padding:3.5rem 0}
  .wrap{padding:0 1.2rem}
  .s-h2{font-size:1.9rem}
  .cats-grid{grid-template-columns:1fr}
  .iol-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr}
  .numbers-grid{grid-template-columns:1fr 1fr}
  .cta-form{padding:1.5rem}
  .cta-row{grid-template-columns:1fr}
  .foot-top{grid-template-columns:1fr;gap:2rem;padding:3rem 1.2rem 2rem}
  .foot-bottom{padding:1.5rem 1.2rem}
  .btm-nav{display:grid}
  body{padding-bottom:62px}
  .wa-btn{bottom:5rem;right:1rem}
  .up-btn{bottom:9rem;right:1rem}
  input,select,textarea{font-size:16px!important}
}
@media(max-width:480px){
  .hero h1{font-size:2rem}
  .iol-grid{grid-template-columns:1fr}
  .numbers-grid{grid-template-columns:1fr 1fr}
  .hero-stats{grid-template-columns:1fr 1fr}
}
  
/* ─── PAGE HERO (product/about/contact pages) ─── */
.page-hero{background:var(--n);padding:4rem 0 3rem;border-bottom:3px solid var(--r);position:relative}
.page-hero-inner{max-width:1320px;margin:0 auto;padding:0 2rem}
.breadcrumb{display:flex;gap:.4rem;align-items:center;font-size:.76rem;color:rgba(255,255,255,.45);margin-bottom:1.2rem;flex-wrap:wrap;font-weight:500}
.breadcrumb a{color:rgba(255,255,255,.45);text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{color:rgba(255,255,255,.2)}
.page-tag{display:flex;align-items:center;gap:.5rem;font-size:.7rem;font-weight:800;color:var(--r);letter-spacing:.16em;text-transform:uppercase;margin-bottom:.8rem}
.page-tag::before{content:'';width:20px;height:2px;background:var(--r);border-radius:1px}
.page-hero h1{font-size:2.6rem;font-weight:800;color:#fff;line-height:1.12;letter-spacing:-.03em;margin-bottom:.8rem}
.page-hero p{color:rgba(255,255,255,.6);max-width:600px;line-height:1.8;font-size:.95rem}

/* ─── SECTION UTILS ─── */
.s{padding:5.5rem 0}.s-sm{padding:3.5rem 0}
.wrap{max-width:1320px;margin:0 auto;padding:0 2rem}
.s-tag{display:inline-flex;align-items:center;gap:.5rem;font-size:.7rem;font-weight:800;color:var(--r);letter-spacing:.16em;text-transform:uppercase;margin-bottom:.8rem}
.s-tag::before{content:'';width:20px;height:2px;background:var(--r);border-radius:1px}
.s-h2{font-size:2.5rem;font-weight:800;color:var(--n);line-height:1.12;letter-spacing:-.03em;margin-bottom:.8rem}
.s-sub{font-size:.93rem;color:var(--m);max-width:560px;line-height:1.8}
.s-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;flex-wrap:wrap;gap:2rem}
.section-inner{max-width:1320px;margin:0 auto;padding:0 2rem}

/* ─── PRODUCT DETAIL ─── */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;position:relative;z-index:0}
.detail-img-wrap{position:sticky;top:86px}
.detail-img-main{background:var(--g);border:1px solid var(--border);border-radius:16px;padding:2.5rem;min-height:340px;display:flex;align-items:center;justify-content:center}
.detail-img-main img{max-height:280px;object-fit:contain;width:100%;cursor:zoom-in;transition:transform .4s}
.detail-img-main img:hover{transform:scale(1.03)}
.detail-imgs-row{display:grid;grid-template-columns:repeat(3,1fr);gap:.6rem;margin-top:.6rem}
.detail-imgs-row img{border:1.5px solid var(--border);background:var(--g);padding:.5rem;height:76px;object-fit:contain;width:100%;cursor:zoom-in;transition:border-color .2s;border-radius:8px}
.detail-imgs-row img:hover{border-color:var(--r)}
.detail-content h1{font-size:2.3rem;font-weight:800;color:var(--n);margin-bottom:.8rem;letter-spacing:-.03em;line-height:1.15}
.detail-lead{font-size:.95rem;color:var(--m);line-height:1.8;margin-bottom:2rem}
.detail-features{list-style:none;margin-bottom:2rem;display:flex;flex-direction:column;gap:.7rem}
.detail-features li{display:flex;gap:.8rem;align-items:flex-start;font-size:.9rem;line-height:1.6;color:var(--t)}
.detail-features li::before{content:'✓';flex-shrink:0;width:22px;height:22px;background:var(--r-bg);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:var(--r);font-size:.7rem;font-weight:800;margin-top:.05rem}
.specs-accordion{border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-top:1.5rem}
.specs-accordion details{border-bottom:1px solid var(--border)}
.specs-accordion details:last-child{border-bottom:none}
.specs-accordion summary{padding:1rem 1.2rem;font-size:.88rem;font-weight:700;color:var(--n);cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;background:#fff;transition:background .2s;letter-spacing:-.01em}
.specs-accordion summary:hover{background:var(--r-bg);color:var(--r)}
.specs-accordion summary::after{content:'+';font-size:1.2rem;color:var(--r);font-weight:300}
.specs-accordion details[open] summary::after{content:'−'}
.specs-accordion .specs-content{padding:1rem 1.2rem;background:var(--off);font-size:.85rem;line-height:1.75;color:var(--t)}
.specs-accordion .specs-content ul{padding-left:1.2rem}
.specs-accordion .specs-content li{margin-bottom:.3rem}
.detail-cta{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem}

/* ─── PRODUCT CATALOG CARDS ─── */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.card-grid.cols-2{grid-template-columns:repeat(2,1fr)}
.card-grid.cols-4{grid-template-columns:repeat(4,1fr)}
.product-card{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .3s,transform .3s;text-decoration:none;color:inherit}
.product-card:hover{box-shadow:0 16px 40px rgba(11,25,41,.1);transform:translateY(-4px)}
.product-card-img{height:190px;background:var(--g);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative}
.product-card-img img{max-height:150px;object-fit:contain;padding:1rem;transition:transform .4s;width:100%}
.product-card:hover .product-card-img img{transform:scale(1.06)}
.product-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.product-card-cat{font-size:.68rem;font-weight:800;color:var(--r);letter-spacing:.14em;text-transform:uppercase;margin-bottom:.5rem}
.product-card-title{font-size:1.15rem;font-weight:800;color:var(--n);margin-bottom:.6rem;letter-spacing:-.01em;line-height:1.2}
.product-card-desc{font-size:.84rem;color:var(--m);line-height:1.7;flex:1}
.product-card-link{display:inline-flex;align-items:center;gap:.3rem;font-size:.8rem;font-weight:700;color:var(--r);margin-top:1.2rem;transition:gap .2s}
.product-card-link:hover{gap:.6rem}
.product-card-link::after{content:'→'}

/* ─── ABOUT ─── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-img-wrap{position:relative}
.about-img{border-radius:20px;overflow:hidden;box-shadow:0 24px 64px rgba(11,25,41,.14)}
.about-img img{width:100%;height:420px;object-fit:cover}
.about-badge{position:absolute;bottom:-1.5rem;right:-1.5rem;background:var(--r);color:#fff;padding:1.3rem 1.8rem;text-align:center;border-radius:16px;box-shadow:0 8px 24px rgba(196,18,48,.4)}
.about-badge strong{font-size:2.5rem;display:block;line-height:1;font-weight:800}
.about-badge span{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;opacity:.9;font-weight:600}
.about-list{list-style:none;margin:1.8rem 0 2rem;display:flex;flex-direction:column;gap:.9rem}
.about-list li{display:flex;gap:.8rem;align-items:flex-start;font-size:.9rem;line-height:1.6}
.about-list li::before{content:'';flex-shrink:0;width:8px;height:8px;background:var(--r);border-radius:50%;margin-top:.5rem}

/* ─── CONTACT ─── */
.contact-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:4rem;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:1rem}
.contact-card{background:var(--off);border:1px solid var(--border);padding:1.3rem 1.5rem;display:flex;gap:1rem;align-items:flex-start;border-radius:12px;transition:border-color .2s}
.contact-card:hover{border-color:var(--r)}
.contact-icon{font-size:1.2rem}
.contact-card-label{font-size:.67rem;font-weight:800;color:var(--r);letter-spacing:.12em;text-transform:uppercase;margin-bottom:.3rem}
.contact-card-value{font-size:.93rem;font-weight:600;color:var(--n)}
.contact-card-value a{color:var(--n);text-decoration:none;transition:color .2s}
.contact-card-value a:hover{color:var(--r)}
.contact-form-wrap{background:var(--off);border:1px solid var(--border);padding:2.2rem;border-radius:20px}
.contact-form-wrap h3{font-size:1.7rem;font-weight:800;color:var(--n);margin-bottom:.4rem;letter-spacing:-.02em}
.contact-form-wrap>p{font-size:.85rem;color:var(--m);margin-bottom:1.8rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem}
.form-group label{font-size:.72rem;font-weight:800;color:var(--n);letter-spacing:.08em;text-transform:uppercase}
.form-group input,.form-group textarea,.form-group select{border:1.5px solid var(--border);background:#fff;color:var(--t);padding:.8rem 1rem;font-size:.9rem;font-family:var(--f);font-weight:500;outline:none;transition:border-color .2s,box-shadow .2s;width:100%;border-radius:8px}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--r);box-shadow:0 0 0 3px rgba(196,18,48,.08)}
.form-group textarea{resize:vertical;min-height:110px}
.map-wrap{margin-top:3.5rem;height:360px;border:1px solid var(--border);overflow:hidden;border-radius:16px}
.map-wrap iframe{width:100%;height:100%;border:none}

/* ─── INFO BOX ─── */
.info-box{border-left:3px solid var(--r);padding:1rem 1.5rem;background:var(--r-bg);font-size:.9rem;color:var(--t);line-height:1.7;margin:1.5rem 0;border-radius:0 8px 8px 0}
.divider{height:1px;background:var(--border);margin:2rem 0}

/* ─── RESPONSIVE: product pages ─── */
@media(max-width:1024px){
  .product-detail{grid-template-columns:1fr}
  .detail-img-wrap{position:static}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:3rem}
  .contact-grid{grid-template-columns:1fr;gap:2rem}
  .wrap,.page-hero-inner,.section-inner{padding:0 1.5rem}
}
@media(max-width:768px){
  .page-hero{padding:3rem 0 2rem}
  .page-hero h1{font-size:2rem}
  .page-hero-inner,.wrap,.section-inner{padding:0 1.2rem}
  .s{padding:3.5rem 0}
  .s-h2{font-size:1.9rem}
  .card-grid,.card-grid.cols-2,.card-grid.cols-4{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .contact-form-wrap{padding:1.5rem}
  .about-badge{bottom:1rem;right:1rem}
  .detail-cta{flex-direction:column}
}

/* ─── PRODUCT DETAIL OVERFLOW FIX ─── */
.product-detail { align-items: start; overflow: visible; }
.detail-img-wrap { max-height: none; }
/* The section wrapping product detail needs to properly contain children */
[style*="background:var(--off)"] { padding-bottom: 5rem !important; overflow: visible; }
