:root{
  --bg:#060606;
  --bg-elev:#111;
  --text:#f2f2f2;
  --muted:#c2c2c2;
  --brand:#ff1f3d;
  --brand-soft:rgba(255,31,61,.2);
  --stroke:#252525;
  --radius:18px;
  --shadow:0 12px 44px rgba(0,0,0,.35);
}

body.products-catalog .product-hero-row,
body.products-catalog .product-quicklist,
body.products-catalog .simple-heading,
body.products-catalog .detail-topper,
body.products-catalog .product-projects{
  display:none !important;
}
body.products-catalog .simple-card{
  background:#f7f5f1;
  border-radius:28px;
  padding:32px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}
body.products-catalog .simple-img{
  padding:0;
  max-width:unset;
  min-height:auto;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.26fr) minmax(0,.95fr);
  gap:22px;
  align-items:start;
  position:relative;
}
body.products-catalog #detailImage{
  grid-column:1;
  max-height:none;
}
body.products-catalog .detail-thumbs{
  grid-column:2;
  display:flex;
  flex-direction:column;
  gap:10px;
}
body.products-catalog .detail-thumb{
  border:1px solid rgba(0,0,0,.12);
  border-radius:16px;
  padding:0;
  background:#fff;
  box-shadow:0 12px 26px rgba(0,0,0,.15);
  cursor:pointer;
  overflow:hidden;
  transition:transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
body.products-catalog .detail-thumb img{
  display:block;
  width:100%;
  height:auto;
}
body.products-catalog .detail-thumb.is-active{
  border-color:rgba(0,0,0,.35);
  box-shadow:0 16px 32px rgba(0,0,0,.22);
  transform:translateY(-2px);
}
body.products-catalog .img-overlay{
  grid-column:3;
  position:relative;
  top:auto;
  right:auto;
  left:auto;
  bottom:auto;
  padding:0;
  width:100%;
  max-height:unset;
  overflow:visible;
  color:#1d1d1d;
}
body.products-catalog .img-overlay h2{
  color:#151515;
  font-size:clamp(26px, 3.6vw, 44px);
  font-weight:800;
  text-shadow:none;
}
body.products-catalog .img-overlay p,
body.products-catalog .img-overlay .detail-tag,
body.products-catalog .img-overlay dt,
body.products-catalog .img-overlay dd,
body.products-catalog .img-overlay .specs-title{
  color:#1f1f1f;
  text-shadow:none;
}
body.products-catalog #detailDesc{
  color:#222;
  line-height:1.8;
  white-space:pre-line;
}
@media (hover:none){
  body.products-catalog .detail-thumb:hover{
    transform:none;
  }
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(140% 160% at -20% -20%, rgba(255,59,63,.24), transparent 60%),
    radial-gradient(120% 160% at 120% -18%, rgba(95,28,34,.28), transparent 68%),
    radial-gradient(120% 140% at 50% 110%, rgba(186,38,45,.18), transparent 70%),
    linear-gradient(210deg,#050505 0%,#0a0809 40%,#020102 100%);
  color:var(--text);
  font:16px/1.6 "Sora",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  letter-spacing:-.01em;
}
body[data-page="contact"]{
  background:
    radial-gradient(120% 160% at 10% -10%, rgba(255,62,76,.28), transparent 55%),
    radial-gradient(110% 140% at 90% 0%, rgba(255,132,88,.18), transparent 60%),
    radial-gradient(120% 160% at 50% 120%, rgba(116,56,255,.12), transparent 68%),
    linear-gradient(210deg,#050505 0%,#12080a 45%,#040203 100%);
}
img{max-width:100%;display:block;height:auto;border-radius:0}
a{color:inherit}
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  border:0;
}

.lang-switch{
  position:relative;
  margin-left:12px;
  flex-shrink:0;
}
.lang-toggle{
  background:#101010;border:1px solid var(--stroke);color:var(--text);
  border-radius:14px;padding:9px 18px;font-weight:700;letter-spacing:.4px;
  cursor:pointer;display:inline-flex;align-items:center;gap:8px;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.lang-toggle::after{
  content:"▾";font-size:12px;opacity:.7;transform:translateY(-1px);
}
.lang-toggle:focus-visible{
  outline:none;border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(255,59,63,.28);
}
.lang-switch.open .lang-toggle{
  background:rgba(255,59,63,.14);border-color:rgba(255,59,63,.6);
}
.lang-menu{
  position:absolute;right:0;top:calc(100% + 8px);
  background:#0f0f0f;border:1px solid var(--stroke);border-radius:16px;
  min-width:160px;padding:8px;display:none;flex-direction:column;gap:4px;
  box-shadow:var(--shadow);
}
.lang-switch.open .lang-menu{display:flex}
.lang-menu button{
  background:none;border:0;color:var(--muted);font-weight:600;
  padding:10px 12px;border-radius:12px;text-align:left;cursor:pointer;
  transition:background .2s ease,color .2s ease;
}
.lang-menu button:hover,
.lang-menu button.active{
  background:var(--brand-soft);color:var(--text);
}


.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(140%) blur(8px);
  background:rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .25s ease;
}
.header.scrolled{background:rgba(0,0,0,.65)}
.nav{
  width:100%;
  min-height:72px;
  padding:0 clamp(24px,6vw,80px) 12px;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.nav-toggle{
  display:none;
  width:54px;
  height:54px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.05);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.08), transparent 58%),
    linear-gradient(150deg, #050506, #141414);
  color:var(--text);
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  position:relative;
  isolation:isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -16px 30px rgba(0,0,0,.75),
    0 18px 36px rgba(0,0,0,.55);
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .2s ease;
}
.nav-toggle::before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.04);
  box-shadow:0 0 25px rgba(255,255,255,.08);
  z-index:0;
}
.nav-toggle span{
  width:14px;
  height:4px;
  border-radius:999px;
  position:relative;
  background:linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,255,255,.25));
  box-shadow:0 0 8px rgba(255,255,255,.32);
  transition:transform .25s ease, opacity .25s ease, width .2s ease;
  overflow:hidden;
  z-index:1;
}
.nav-toggle span::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(270deg, rgba(255,255,255,.9), transparent 70%);
  opacity:.75;
}
.nav-toggle span:nth-child(2){
  width:10px;
  opacity:.8;
}
.nav-toggle span:nth-child(3){
  width:18px;
}
.nav-toggle:hover{
  transform:translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -16px 30px rgba(0,0,0,.7),
    0 20px 44px rgba(0,0,0,.6),
    0 0 30px rgba(255,48,82,.1);
}
.nav-toggle:focus-visible{outline:2px solid var(--brand);outline-offset:3px}
.logo{
  display:flex;align-items:center;text-decoration:none;color:var(--text);
}
.logo img{
  height:118px;width:auto;display:block;
  filter:drop-shadow(0 16px 38px rgba(0,0,0,.55));
  background:none;border:0;padding:0;border-radius:0;
}
.links{
  display:flex;
  align-items:center;
  gap:20px;
  flex:1 1 auto;
  justify-content:flex-end;
  margin-left:clamp(16px,4vw,120px);
  flex-wrap:wrap;
}
.links a{
  color:var(--muted);text-decoration:none;font-weight:600;letter-spacing:.01em;
  font-size:15px;position:relative;padding:6px 2px;
}
.links a:hover,
.links a.active{
  color:var(--text);
}
.links a.active::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;
  height:2px;border-radius:999px;background:var(--brand);
}
.nav-backdrop{
  position:fixed;
  inset:0;
  background:rgba(5,0,2,.65);
  backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:40;
}
.nav-backdrop[hidden]{display:none}
body.nav-open{
  overflow:hidden;
}
body.nav-open .nav-backdrop{
  opacity:1;
  pointer-events:auto;
}
body.nav-open .nav-toggle{
  border-color:rgba(255,64,82,.55);
  background:linear-gradient(165deg, rgba(255,64,82,.32), rgba(6,6,6,.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -18px 32px rgba(255,54,87,.22),
    0 26px 44px rgba(255,54,87,.35);
}
body.nav-open .nav-toggle::before{
  border-color:rgba(255,255,255,.16);
  box-shadow:0 0 32px rgba(255,54,87,.25);
}
body.nav-open .nav-toggle span{
  width:22px;
  background:linear-gradient(90deg, #fff, rgba(255,210,215,.92));
  box-shadow:0 0 14px rgba(255,72,98,.55);
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 26px;border-radius:999px;font-weight:700;text-decoration:none;
  letter-spacing:.03em;gap:6px;
}
.btn-ghost{background:#111;border:1px solid var(--stroke);color:var(--text)}
.btn-brand{
  position:relative;
  padding:11px 20px;
  font-size:12.2px;
  min-width:146px;
  background:linear-gradient(140deg,#ff4052,#ff052c);
  color:#050505;
  border:1px solid rgba(255,31,61,.52);
  box-shadow:0 24px 70px rgba(255,31,61,.45), inset 0 1px 0 rgba(255,255,255,.22);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .32s ease, filter .32s ease;
  z-index:0;
  isolation:isolate;
}
.btn-brand::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at 50% 40%, rgba(255,255,255,.6), transparent 70%);
  transform:scale(.2);
  transition:transform .5s ease, opacity .4s ease;
  pointer-events:none;
  opacity:0;
}
.btn-ghost:hover{filter:brightness(1.08)}
.btn-brand:hover{
  box-shadow:0 28px 80px rgba(255,31,61,.46), inset 0 1px 0 rgba(255,255,255,.24);
}
.btn-brand:hover::before{
  transform:scale(1.35);
  opacity:.85;
}
.btn-brand:active{
  transform:translateY(1px);
  box-shadow:0 16px 40px rgba(255,31,61,.42);
}
.btn-brand span{position:relative;z-index:1;font-weight:800;letter-spacing:.05em;text-transform:uppercase}

@media (min-width:1280px){
  .hero-media{margin-right:-24px}
}

@media (max-width:1024px){
  .mission-slab{padding:90px 0;}
  .mission-title{font-size:clamp(30px,6vw,50px);}
}

/* Hero */
.hero{
  position:relative;
  min-height:90svh;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  width:100%;
  margin:auto;
  padding:clamp(120px,18vh,180px) clamp(32px,6vw,76px);
  box-shadow:0 60px 180px rgba(0,0,0,.55) inset;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(8,8,8,.92) 0%,rgba(8,8,8,.55) 45%,rgba(8,8,8,.2) 72%,rgba(8,8,8,.05) 100%);
  z-index:1;
}
.hero::after{
  content:"";
  position:absolute;inset:-20% -30% 40% -10%;
  background:radial-gradient(140% 160% at 12% 30%, rgba(255,59,63,.4), transparent 72%);
  filter:blur(90px);opacity:.78;z-index:1;
}
.hero-media{
  position:absolute;inset:0;z-index:0;overflow:hidden;
}
.hero-media video{
  width:100%;height:100%;object-fit:cover;object-position:center;
  display:block;background:#000;
}
.hero-overlay{display:none}
.hero-inner{
  position:relative;z-index:2;
  max-width:620px;
  padding:28px clamp(12px,2vw,22px);
}
.hero-title{
  font-size:clamp(38px,6vw,78px);
  line-height:1.12;
  margin:0 0 24px 0;
  letter-spacing:-.018em;
  font-weight:800;
}
.hero-lead{
  margin:0 0 32px 0;
  color:rgba(234,234,234,.82);
  font-size:clamp(17px,2.1vw,21px);
  line-height:1.72;
  max-width:44ch;
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-cta .btn{
  min-width:176px;
  justify-content:center;
}

/* Scroll reveal helpers */
.reveal-up{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal-up.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Mission block */
.mission-slab{
  position:relative;
  padding:120px 0;
  min-height:68svh;
  display:flex;
  align-items:center;
  color:#f5f5f5;
  background:radial-gradient(140% 140% at 20% 20%, rgba(255,75,105,.12), transparent 45%),
             radial-gradient(120% 140% at 80% 10%, rgba(79,123,255,.12), transparent 48%),
             linear-gradient(180deg, #0b0b0e 0%, #08080b 52%, #060608 100%);
  overflow:hidden;
  box-shadow:0 -40px 120px rgba(0,0,0,.45) inset;
}
.mission-slab::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(-65deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px);
  opacity:.2;
  mix-blend-mode:lighten;
}
.mission-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.mission-kicker{
  display:inline-flex;
  align-self:center;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  font-size:13px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#f0f0f0;
  background:rgba(255,255,255,.04);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.mission-title{
  margin:0;
  font-size:clamp(36px,6vw,72px);
  line-height:1.1;
  letter-spacing:.08em;
  text-transform:none;
  text-shadow:0 16px 48px rgba(0,0,0,.65);
  position:relative;
}
.mission-title span{
  display:block;
}
.mission-title .mission-echo,
.mission-title .mission-main{
  animation:missionFade 1.2s ease forwards;
}
.mission-title .mission-echo{
  position:absolute;
  inset:0;
  color:rgba(120,120,120,.28);
  transform:translateY(14px);
  filter:blur(1px);
  animation-delay:.1s;
}
.mission-title .mission-main{
  position:relative;
  color:#f5f5f5;
  animation-delay:.25s;
}
.mission-desc{
  margin:0 auto;
  max-width:54ch;
  color:rgba(230,230,230,.72);
  font-size:clamp(15px,1.8vw,18px);
  letter-spacing:.12em;
  text-transform:none;
  line-height:1.8;
}
.mission-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:8px;
  flex-wrap:wrap;
}
.mission-actions .btn{
  min-width:180px;
  justify-content:center;
}

@keyframes missionFade{
  0%{opacity:0; transform:translateY(28px);}
  60%{opacity:1;}
  100%{opacity:1; transform:translateY(0);}
}
.products-dropdown{
  position:absolute;
  top:80px;
  left:50%;
  transform:translateX(-50%);
  width:min(1200px, 96vw);
  background:rgba(8,8,8,.97);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:18px 18px 22px;
  display:none;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
  z-index:60;
}
.products-dropdown.open{display:grid}
.products-menu-head{
  margin-bottom:10px;
}
.products-menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
}
.products-menu-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 14px;
  background:linear-gradient(180deg, rgba(24,24,26,.92), rgba(12,12,12,.9));
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:inherit;
  text-decoration:none;
  transition:transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.products-menu-card:hover,
.products-menu-card:focus-visible{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 16px 40px rgba(0,0,0,.45);
  outline:none;
}
@media (hover:none){
  .products-menu-card:hover,
  .products-menu-card:focus-visible{
    transform:none;
    border-color:rgba(255,255,255,.08);
    box-shadow:none;
  }
}
.products-thumb{
  width:124px;
  height:124px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:#0b0b0b;
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06), 0 10px 30px rgba(0,0,0,.4);
}
.products-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.0);
  display:block;
}
.simple-img img,
#detailImage,
#productHeroImage,
#previewImage{
  transition:opacity .18s ease;
}
.img-loading{
  opacity:.25 !important;
}
.products-link-label{
  line-height:1.3;
  font-weight:700;
  flex:1 1 0;
  min-width:0;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  word-break:normal;
  overflow-wrap:normal;
}

.product-detail-card{
  margin-top:32px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:24px;
  background:rgba(10,10,10,.9);
  box-shadow:0 26px 64px rgba(0,0,0,.55);
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:20px;
}
.product-detail-text h3{
  margin:6px 0 12px;
  font-size:28px;
}
.product-detail-text p{
  margin:0;
  color:rgba(235,235,235,.82);
  line-height:1.6;
}
.detail-tag{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  color:var(--muted);
}
.product-detail-media{
  display:grid;
  gap:12px;
}
.product-detail-media img{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 50px rgba(0,0,0,.5);
}
.xr-wrapper{
  margin-top:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:#0b0b0c;
  box-shadow:0 26px 60px rgba(0,0,0,.5);
  min-height:320px;
}
.xr-frame{
  width:100%;
  aspect-ratio:16/9;
  min-height:320px;
  border:0;
  display:block;
}
.gif-placeholder{
  min-height:140px;
  display:grid;
  place-items:center;
  border:1px dashed rgba(255,255,255,.28);
  border-radius:16px;
  color:rgba(235,235,235,.7);
  font-weight:600;
  letter-spacing:.05em;
  background:rgba(12,12,12,.6);
}

.simple-detail{margin-top:32px;}
.simple-card{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  padding:0;
  border-radius:0;
  border:0;
  background:transparent;
  box-shadow:none;
  max-width:1156px;
  margin:0 auto;
}
.simple-heading{
  grid-column:1 / -1;
}
.simple-heading h2{
  margin:0 0 6px;
  font-size:26px;
  letter-spacing:-.01em;
}
.simple-img{
  width:100%;
  min-height:860px;
  display:block;
  padding:16px;
  box-sizing:border-box;
  border-radius:0;
  border:0;
  overflow:hidden;
  box-shadow:none;
  background:transparent;
  position:relative;
  max-width:1760px;
  margin:0 auto;
}
.simple-img.is-loading::after{
  content:"Görsel hazırlanıyor...";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(12,12,14,.94), rgba(8,8,10,.9));
  color:#f5f5f5;
  font-weight:700;
  letter-spacing:.01em;
  text-shadow:0 8px 22px rgba(0,0,0,.55);
  z-index:3;
  pointer-events:none;
}
.simple-img.is-loading img{
  opacity:0;
}
.detail-topper{
  position:absolute;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 16px 40px rgba(0,0,0,.5);
  backdrop-filter:blur(12px) saturate(120%);
  z-index:2;
  left:18px;
  top:18px;
  width:100%;
  max-width:260px;
}
.detail-topper{display:none !important;}
.detail-topper[hidden]{display:none !important;}
.detail-topper img{
  width:120px;
  height:auto;
  display:block;
}
.detail-topper-label{
  font-weight:700;
  letter-spacing:-.01em;
  color:#f5f5f5;
  font-size:16px;
  text-transform:uppercase;
  background:rgba(0,0,0,.7);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 10px 24px rgba(0,0,0,.45);
}
.simple-img img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}
#detailImage{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:900px;
  display:block;
  object-fit:contain;
  object-position:center;
  border-radius:0;
  box-shadow:none;
}
.img-overlay{
  position:absolute;
  top:6%;
  right:5%;
  left:auto;
  bottom:auto;
  transform:none;
  width:min(620px,44%);
  box-sizing:border-box;
  display:grid;
  grid-template-columns:1fr;
  column-gap:0;
  row-gap:12px;
  align-self:flex-start;
  align-items:start;
  overflow:auto;
  max-height:none;
  gap:0;
  padding:0;
  max-width:100%;
  margin:0;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  border:0;
  box-shadow:none;
  animation:slideFade .8s ease forwards;
  opacity:0;
  max-height:calc(100% - 24px);
  padding-right:8px;
  overscroll-behavior:contain;
}
.img-overlay h2{
  margin:0 0 6px;
  font-size:clamp(22px, 2.6vw, 30px);
  letter-spacing:-.01em;
  white-space:normal;
}
.img-overlay h2,
.img-overlay p,
.img-overlay .detail-tag{
  grid-column:1 / -1;
}
.img-overlay,
.img-overlay p,
.img-overlay .detail-tag{
  color:#f8f8f8;
}
.img-overlay p{
  font-size:clamp(14px, 1.4vw, 17px);
  line-height:1.5;
}
.img-overlay .detail-points{
  grid-column:1 / 2;
  grid-template-columns:1fr;
  gap:12px;
  margin:4px 0 0;
}
.detail-points[hidden]{display:none;}
.detail-specs{
  grid-column:1 / -1;
  margin:8px 0 0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  position:relative;
}
.detail-specs .specs-grid{
  max-height:none;
  overflow:visible;
}
.detail-specs.is-collapsed .specs-grid{
  max-height:320px;
  overflow:hidden;
}
.detail-specs.is-expanded .specs-grid{
  max-height:320px;
  overflow:auto;
  padding-right:6px;
}
.detail-specs.is-collapsed::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:36px;
  height:60px;
  background:linear-gradient(180deg, rgba(10,10,10,0), rgba(10,10,10,.85));
  pointer-events:none;
}
.specs-toggle{
  margin-top:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(12,12,12,.6);
  color:#f4f4f4;
  border-radius:999px;
  padding:6px 14px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
}
.specs-toggle:hover{border-color:rgba(255,255,255,.32)}
.specs-scroll-hint{
  margin:26px 0 0;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(240,240,240,.65);
}

.specs-title{
  margin:-6px 0 8px;
  font-size:clamp(13px, 1.3vw, 16px);
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#f4f4f4;
}
.specs-grid{
  display:grid;
  margin:0;
  grid-template-columns:repeat(2, minmax(220px, 1fr));
  column-gap:0;
  row-gap:14px;
  column-fill:auto;
}
.spec-row{
  padding:0;
}
.specs-grid.specs-grid--3{
  column-count:2;
  column-gap:18px;
}
@media (min-width: 1200px){
  .specs-grid.specs-grid--3{
    column-count:3;
  }
}
@media (min-width: 1500px){
  .specs-grid.specs-grid--3{
    column-count:4;
  }
}
@media (max-width: 1100px){
  .specs-grid.specs-grid--3{
    column-count:3;
  }
}
@media (max-width: 900px){
  .specs-grid.specs-grid--3{
    column-count:2;
  }
}
.spec-row{
  display:block;
  padding:0 0 14px;
  break-inside:avoid;
  border-bottom:0;
}
.spec-row.spec-break{
  break-after:column;
  -webkit-column-break-after:always;
}
.spec-row:last-child{
  padding-bottom:0;
}
.spec-row dt{
  font-weight:700;
  color:#f2f2f2;
  line-height:1.25;
  font-size:clamp(12px, 1.15vw, 14px);
  margin:0;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.spec-row dd{
  margin:4px 0 0;
  color:rgba(232,232,232,.78);
  line-height:1.45;
  font-size:clamp(12px, 1.15vw, 14px);
  word-break:break-word;
  overflow-wrap:anywhere;
  hyphens:auto;
}
.detail-specs[hidden]{display:none;}
.img-overlay .detail-points,
.img-overlay h2,
.img-overlay p,
.img-overlay .detail-tag{
  margin-top:0;
}
.img-overlay .detail-tag{display:none;}
.simple-body{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-self:stretch;
  width:100%;
  animation:slideFade .7s ease forwards;
  opacity:0;
}
.simple-body h2{
  margin:0;
  font-size:28px;
}
.simple-body p{
  margin:0;
  color:rgba(230,230,230,.82);
  line-height:1.55;
}
.simple-xr{
  margin:6px auto 0;
  border-radius:0;
  border:0;
  overflow:hidden;
  background:transparent;
  box-shadow:none;
  width:100%;
  max-width:1156px;
  margin-left:auto;
  margin-right:auto;
  box-sizing:border-box;
  position:relative;
  aspect-ratio:16/9;
  min-height:320px;
  max-height:70vh;
}
.simple-xr .xr-frame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  transform:none;
}
.detail-points{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:10px;
  margin:6px 0 4px;
}
.point-card{
  padding:10px 0 12px;
  border-radius:0;
  border:0;
  background:transparent;
  backdrop-filter:none;
  box-shadow:none;
  animation:fadeUp .6s ease forwards;
  opacity:0;
  position:relative;
  padding-left:16px;
}
.point-card::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#f2f2f2;
  line-height:1.4;
}
.point-card:nth-child(2){animation-delay:.08s}
.point-card:nth-child(3){animation-delay:.16s}
.point-title{
  margin:0 0 6px;
  font-weight:800;
  letter-spacing:.01em;
  color:#fff;
  font-size:15px;
}
.point-desc{
  margin:0;
  color:rgba(255,255,255,.88);
  line-height:1.4;
  font-size:15px;
}
@keyframes fadeUp{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}
@keyframes slideFade{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}
@media (max-width: 820px){
  .simple-card{gap:16px;}
  .simple-img{
    min-height:320px;
    padding:12px;
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:start;
  }
  #detailImage{
    max-height:280px;
    object-position:center;
    order:1;
  }
  .img-overlay{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:0;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    max-width:100%;
    margin-left:0;
    background:transparent;
    padding:0;
    max-height:none;
    overflow:visible;
    align-self:start;
    order:2;
    row-gap:8px;
  }
  .img-overlay .detail-points{
    grid-template-columns:1fr;
    margin-top:6px;
  }
  .detail-specs{
    grid-column:auto;
  }
  .specs-grid{
    column-count:1;
    column-gap:0;
  }
  .specs-grid.specs-grid--3{
    column-count:1;
  }
  .img-overlay h2{
    font-size:clamp(18px, 5.2vw, 24px);
    white-space:normal;
  }
  .img-overlay p{
    font-size:clamp(13px, 3.8vw, 16px);
  }
  .specs-title{
    font-size:clamp(12px, 3.6vw, 16px);
  }
  .spec-row dt,
  .spec-row dd{
    font-size:clamp(12px, 3.4vw, 14px);
  }
}

.product-list-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
  margin-top:20px;
  align-items:start;
}
.product-list-card{
  background:rgba(12,12,12,.88);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  padding:12px 14px;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-list-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.2);
  box-shadow:0 28px 70px rgba(0,0,0,.5);
}
.product-list-card img{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#0c0c0c;
  flex-shrink:0;
}
.product-list-card h4{
  margin:0 0 4px;
  font-size:17px;
}
.product-list-card p{
  margin:0;
  color:rgba(235,235,235,.75);
  font-size:14px;
}
.product-list-meta{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.btn-ghost{
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(20,20,22,.9), rgba(10,10,10,.85));
  color:#f7f7f7;
  box-shadow:0 12px 32px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-ghost:hover{
  background:linear-gradient(180deg, rgba(26,26,28,.95), rgba(12,12,12,.9));
  border-color:rgba(255,255,255,.24);
  color:#fff;
  filter:none;
}

/* Container & sections */
.container{max-width:1200px;margin:auto;padding:0 16px}
.section{padding:56px 0}
.h2{font-size:clamp(22px,3.2vw,32px);margin:0 0 16px;line-height:1.3}
.h1{font-size:clamp(32px,4vw,48px);margin:0 0 12px;letter-spacing:-.02em}
.desc,.p{margin:0;color:rgba(234,234,234,.72);max-width:760px;line-height:1.72}
.subhead{margin:8px 0 0;color:var(--muted);font-weight:600;letter-spacing:.3px;text-transform:uppercase;font-size:13px}

.quote-hero{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  padding:72px 0;
  margin:32px 16px;
}
.quote-hero::before,
.quote-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
}
.quote-hero::before{
  background:radial-gradient(circle at 20% 20%, rgba(255,64,82,.22), transparent 45%),
             radial-gradient(circle at 80% 0%, rgba(82,123,255,.15), transparent 40%),
             rgba(6,6,8,.88);
}
.quote-hero::after{
  background:linear-gradient(180deg, rgba(0,0,0,.65), transparent);
  mix-blend-mode:screen;
  opacity:.4;
}
.quote-hero .container{
  position:relative;
  z-index:1;
}

.filters{
  display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 28px;
}
.tag{
  border:1px solid var(--stroke);background:#0f0f0f;color:var(--muted);
  padding:9px 18px;border-radius:999px;font-weight:600;cursor:pointer;
  transition:all .2s ease;
}
.tag:hover{color:var(--text)}
.tag.active{
  background:var(--brand);color:#090909;border-color:transparent;
  box-shadow:0 18px 40px rgba(255,59,63,.35);
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:32px;
}

.proj-card{
  position:relative;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.05);
  border-radius:28px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  box-shadow:0 30px 70px rgba(0,0,0,.55);
  transition:transform .3s ease, box-shadow .3s ease;
}
.proj-card::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(210deg, transparent 55%, rgba(0,0,0,.6) 100%);
  pointer-events:none;
  opacity:0;
  transition:opacity .3s ease;
}
.proj-card.hidden{display:none}
.proj-card:hover{
  transform:translateY(-10px);
  box-shadow:0 40px 90px rgba(0,0,0,.6);
}
.proj-card:hover::after{opacity:1}
.proj-media{
  position:relative;
  min-height:220px;
}
.proj-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.proj-chip{
  position:absolute;
  top:18px;left:18px;
  padding:6px 14px;
  border-radius:999px;
  background:var(--brand);
  color:#0d0d0d;
  font-size:12px;
  letter-spacing:.24px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow:0 12px 28px rgba(255,59,63,.42);
}
.proj-body{
  padding:28px 26px 30px;
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
  z-index:1;
}
.proj-body h3{
  margin:0;
  font-size:22px;
  letter-spacing:-.015em;
}
.proj-body p{
  margin:0;
  color:rgba(234,234,234,.7);
  font-size:15px;
  line-height:1.6;
}

.feature-grid{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  margin-top:28px;
}

.contact-social{
  margin-top:22px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.contact-social h3{
  margin:0;
  font-size:17px;
  letter-spacing:-.01em;
}
.social-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.social-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(24,24,26,.7), rgba(10,10,12,.8));
  color:inherit;
  text-decoration:none;
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}
.social-links a:hover{
  border-color:rgba(255,255,255,.35);
  background:linear-gradient(180deg, rgba(255,61,77,.18), rgba(12,12,14,.9));
  transform:translateY(-2px);
}
.social-links .icon{
  width:16px;
  height:16px;
  display:inline-flex;
}
.social-links .icon svg{
  width:100%;
  height:100%;
  fill:currentColor;
  opacity:.9;
}
.contact-mail{
  margin:18px 0 6px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:linear-gradient(120deg, rgba(255,61,77,.08), rgba(14,14,16,.7));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  box-shadow:0 18px 48px rgba(0,0,0,.45);
}
.contact-mail .label{
  margin:0 0 4px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.2em;
  color:var(--muted);
}
.contact-mail-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}
.contact-mail-note{
  margin:4px 0 0;
  color:var(--muted);
  font-size:14px;
}
.contact-mail .btn-ghost{
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  background:linear-gradient(180deg, rgba(255,61,77,.2), rgba(12,12,14,.9));
  padding:10px 16px;
}
.contact-mail .btn-ghost:hover{
  border-color:rgba(255,255,255,.5);
  background:linear-gradient(180deg, rgba(255,61,77,.32), rgba(12,12,14,.95));
}
body[data-page="contact"] .feature-card{
  border-color:rgba(255,255,255,.14);
  box-shadow:0 26px 70px rgba(0,0,0,.55);
  background:
    radial-gradient(120% 160% at 10% 0%, rgba(255,61,77,.18), transparent 55%),
    radial-gradient(120% 140% at 90% 20%, rgba(255,142,88,.16), transparent 55%),
    linear-gradient(150deg, rgba(16,16,18,.95), rgba(8,8,10,.9));
}
body[data-page="contact"] .feature-card::before{
  background:
    radial-gradient(circle at 14% 20%, rgba(255,31,61,.22), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(110,146,255,.16), transparent 50%);
  opacity:.95;
}

.lang-banner{
  position:fixed;
  bottom:18px;
  right:18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--stroke);
  border-radius:14px;
  background:rgba(12,12,14,.9);
  box-shadow:0 18px 38px rgba(0,0,0,.45);
  z-index:1200;
  backdrop-filter:blur(6px);
  font-size:13px;
}
.lang-banner select{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  color:inherit;
  border-radius:10px;
  padding:8px 10px;
}
.lang-banner button{
  border:none;
  background:transparent;
  color:inherit;
  cursor:pointer;
  font-size:16px;
  line-height:1;
  padding:4px 6px;
}
.lang-banner button:hover{color:#fff;}
.feature-card{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(140deg, rgba(14,14,16,.9), rgba(6,6,7,.86)),
    rgba(8,8,9,.9);
  border-radius:22px;
  padding:24px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 88px rgba(0,0,0,.52);
  isolation:isolate;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.06);
  background:radial-gradient(circle at 14% 20%, rgba(255,31,61,.14), transparent 40%),
             radial-gradient(circle at 80% 0%, rgba(110,146,255,.12), transparent 46%);
  opacity:.8;
  pointer-events:none;
  z-index:0;
}
.feature-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), transparent 32%);
  opacity:.4;
  pointer-events:none;
  z-index:0;
}
.feature-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 36px 110px rgba(0,0,0,.6);
}
.feature-card h3{
  margin:0 0 10px;
  font-size:20px;
  letter-spacing:-.01em;
  position:relative;
  z-index:1;
}
.feature-card p{
  margin:0;
  color:rgba(232,232,232,.8);
  font-size:15px;
  line-height:1.65;
  position:relative;
  z-index:1;
}

.project-showcase{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.project-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.project-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.project-grid{display:none}
.project-carousel{
  position:relative;
  overflow:hidden;
}
.project-track{
  display:flex;
  gap:14px;
  scroll-snap-type:x mandatory;
  overflow-x:auto;
  padding:4px;
  scroll-behavior:smooth;
  position:relative;
  z-index:1;
}
.project-track::-webkit-scrollbar{display:none}
.project-track .project-card{
  flex:0 0 320px;
  scroll-snap-align:start;
}
.project-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.65);
  color:#f5f5f5;
  font-size:22px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  transition:background .2s ease, border-color .2s ease, transform .15s ease;
}
.project-nav:hover{background:rgba(0,0,0,.8);border-color:rgba(255,255,255,.2);transform:translateY(-50%) scale(1.03)}
.project-nav.prev{left:-6px}
.project-nav.next{right:-6px}
.project-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  min-height:260px;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
  background:var(--bg,#0e0e0e);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 22px 60px rgba(0,0,0,.45);
  transition:transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.project-card.large{
  grid-column:span 2;
  min-height:280px;
}
.project-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 38%;
  filter:saturate(.98) contrast(1.05);
}
.project-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 48%, rgba(0,0,0,.28) 95%);
  z-index:0;
}
.project-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(120% 120% at 50% 0%, rgba(0,0,0,.18), transparent 60%);
  z-index:0;
}
.project-card:hover{
  transform:translateY(-4px);
  box-shadow:0 32px 80px rgba(0,0,0,.55);
  border-color:rgba(255,255,255,.12);
}
.project-card:hover::after{opacity:.9}
.project-chip{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.02em;
  position:relative;
  z-index:1;
  text-transform:uppercase;
}
.project-card h3{
  margin:0;
  font-size:19px;
  letter-spacing:-.01em;
  position:relative;
  z-index:1;
}
.project-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}
.project-meta span{
  padding:7px 10px;
  border-radius:12px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(240,240,240,.88);
  font-size:12px;
  font-weight:800;
  letter-spacing:.01em;
}
.service-simple{
  text-align:center;
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.kicker{
  margin:0 0 10px;
  color:rgba(255,255,255,.62);
  letter-spacing:.32em;
  text-transform:uppercase;
  font-size:12px;
}
.service-showcase{
  display:flex;
  flex-direction:column;
  gap:26px;
}
.service-top{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(280px,0.7fr);
  gap:26px;
  padding:28px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,31,61,.22), transparent 44%),
    radial-gradient(circle at 92% 12%, rgba(0,102,255,.18), transparent 55%),
    rgba(9,9,10,.9);
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}
.service-lead{
  margin:10px 0 14px;
  color:rgba(235,235,235,.8);
  max-width:640px;
}
.service-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}
.service-pills span{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.06);
  color:rgba(245,245,245,.9);
  font-weight:700;
  font-size:13px;
  letter-spacing:.01em;
}
.service-note{
  padding:18px 20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(12,12,12,.9));
  color:rgba(240,240,240,.88);
  box-shadow:0 24px 70px rgba(0,0,0,.48);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.service-note-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.service-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}
.service-card{
  position:relative;
  overflow:hidden;
  min-height:300px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72)),
    var(--bg, #0c0c0c);
  background-size:cover;
  background-position:center;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  isolation:isolate;
  box-shadow:0 24px 68px rgba(0,0,0,.48);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 86px rgba(0,0,0,.6);
  border-color:rgba(255,255,255,.14);
}
.service-card h3{
  margin:4px 0 2px;
  font-size:19px;
  letter-spacing:-.01em;
  position:relative;
  z-index:1;
}
.service-chip{
  display:inline-flex;
  align-self:flex-start;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.48);
  color:#fff;
  font-weight:700;
  letter-spacing:.02em;
  z-index:1;
  box-shadow:0 10px 26px rgba(0,0,0,.35);
}
.service-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
  position:relative;
  z-index:1;
}
.service-meta span{
  padding:8px 11px;
  border-radius:12px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(240,240,240,.9);
  font-size:12px;
  font-weight:800;
  letter-spacing:.01em;
}
.project-card,
.service-card{
  background-color:#0b0b0c;
}
.service-cta-bar{
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:24px 26px;
  background:
    radial-gradient(circle at 14% 40%, rgba(255,31,61,.18), transparent 42%),
    linear-gradient(120deg, rgba(255,255,255,.08), rgba(8,8,8,.92));
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 24px 80px rgba(0,0,0,.52);
}
.service-cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

main[data-page="about"] .section{
  padding-top:64px;
}
.about-landing{
  padding:80px 0 40px;
}
.display{
  font-size:clamp(38px,6vw,68px);
  line-height:1.05;
  letter-spacing:-.02em;
  margin:0;
}
.about-hero-top{
  padding:72px 0 32px;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,0.95fr);
  gap:26px;
  align-items:start;
  max-width:1180px;
  margin:0 auto;
  padding-inline:12px;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.about-hero-top .desc{
  font-weight:600;
}
.lead{
  margin:0;
  color:rgba(234,234,234,.8);
  line-height:1.8;
  font-size:17px;
  max-width:62ch;
}
.hero-bullets{
  margin-top:4px;
}
.hero-bullets li{line-height:1.55;}
.hero-metrics{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:8px;
}
.hero-metrics div{
  min-width:160px;
  padding:12px 10px;
  border-radius:10px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.1);
}
.hero-metrics strong{
  display:block;
  font-size:28px;
}
.hero-metrics span{
  color:rgba(230,230,230,.75);
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.hero-visual{
  display:grid;
  gap:12px;
}
.hero-img{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#0b0b0c;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}
.hero-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}
.hero-img.primary{
  aspect-ratio:4/3;
  min-height:300px;
}
.visual-label{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.6);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}
.about-text{
  padding:0;
}

.visual-band{
  padding:40px 0 30px;
}
.visual-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:14px;
  max-width:1100px;
  margin:0 auto;
}
.visual-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#0b0b0c;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}
.visual-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:260px;
}
.visual-label{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.6);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}

.split-section{
  padding:36px 0;
}
.split-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:18px;
  align-items:center;
  max-width:1100px;
  margin:0 auto;
  padding-inline:12px;
}
.split-grid.reverse .split-media{order:2}
.split-grid.reverse .split-copy{order:1}
.split-media{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.split-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:240px;
}
.split-copy{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.landing-visual{
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}
.section-head .h2{margin:0}
.section-head .subhead{margin:0}

.about-pillars{
  padding:34px 0 10px;
}
.pillar-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}
.pillar-card{
  padding:16px 16px 18px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:none;
  box-shadow:none;
}
.pillar-card h3{
  margin:0 0 8px;
  font-size:18px;
}
.pillar-card p{
  margin:0;
  color:rgba(235,235,235,.78);
  line-height:1.6;
}

.company-about{
  padding:46px 0 18px;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:18px;
}
.info-block{
  padding:22px 20px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:none;
  box-shadow:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.info-list{
  list-style:none;
  margin:4px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.info-list li{
  position:relative;
  padding-left:16px;
  color:rgba(234,234,234,.82);
  font-weight:600;
}
.info-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--brand);
}
.info-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:10px;
}
.info-stats div{
  padding:12px 12px 14px;
  border-radius:10px;
  border:1px dashed var(--stroke);
  background:none;
  box-shadow:none;
}
.info-stats .label{
  display:block;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(234,234,234,.7);
}
.info-stats strong{
  display:block;
  font-size:28px;
  margin:2px 0;
}
.info-stats p{
  margin:0;
  color:rgba(234,234,234,.78);
  line-height:1.55;
}
.info-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.info-tags span{
  padding:8px 12px;
  border-radius:10px;
  border:1px solid var(--stroke);
  background:none;
  color:rgba(240,240,240,.88);
  font-weight:700;
  letter-spacing:.01em;
}

.craft{
  padding:64px 0 10px;
}
.craft-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.craft-copy{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.bullet-list{
  list-style:none;
  margin:6px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.bullet-list li{
  position:relative;
  padding-left:18px;
  color:rgba(235,235,235,.86);
  font-weight:600;
}
.bullet-list li::before{
  content:"";
  position:absolute;
  left:0;top:10px;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 12px rgba(255,31,61,.55);
}
.craft-gallery{
}

.process{
  padding:64px 0 24px;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.step-card{
  padding:18px 16px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:none;
  box-shadow:none;
}
.step-no{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.45);
  font-weight:800;
  letter-spacing:.12em;
  font-size:11px;
}
.step-card h3{
  margin:8px 0 6px;
  font-size:18px;
}
.step-card p{
  margin:0;
  color:rgba(234,234,234,.8);
  line-height:1.6;
}

.footprint{
  padding:40px 0 24px;
}
.footprint-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,1fr);
  gap:26px;
  align-items:start;
}
.footprint-copy{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footprint-metrics{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:10px;
  margin-top:4px;
}
.footprint-metrics div{
  padding:12px 14px;
  border-radius:10px;
  border:1px dashed var(--stroke);
  background:none;
  box-shadow:none;
}
.footprint-metrics strong{
  display:block;
  font-size:26px;
}
.footprint-metrics span{
  color:rgba(234,234,234,.76);
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.footprint-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
}
.presence-card{
  padding:16px 16px 18px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:none;
  box-shadow:none;
}
.presence-card h3{
  margin:0 0 6px;
  font-size:18px;
}
.presence-card p{
  margin:0;
  color:rgba(234,234,234,.78);
}

.gallery-section{
  display:none;
}

@media (max-width: 960px){
  .footprint-grid{
    grid-template-columns:1fr;
  }
}
.about-hero{
  position:relative;
  margin:6px 0 40px;
  padding:32px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,31,61,.22), transparent 52%),
    radial-gradient(circle at 86% 10%, rgba(52,132,255,.16), transparent 55%),
    linear-gradient(135deg, rgba(10,10,12,.95), rgba(8,8,8,.86));
  box-shadow:0 32px 110px rgba(0,0,0,.55);
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(280px,0.85fr);
  gap:28px;
  overflow:hidden;
  isolation:isolate;
}
.about-hero::after{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.06);
  pointer-events:none;
  opacity:.55;
}
.about-hero-copy{
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
  z-index:1;
}
.about-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}
.about-hero-tags span{
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.35);
  color:rgba(240,240,240,.9);
  font-weight:700;
  letter-spacing:.01em;
  box-shadow:0 12px 32px rgba(0,0,0,.35);
}
.about-hero-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
  align-self:stretch;
}
.metric-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px 16px 16px;
  background:linear-gradient(180deg, rgba(12,12,12,.9), rgba(6,6,6,.84));
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.metric-card strong{
  font-size:32px;
  letter-spacing:-.01em;
}
.metric-card .label{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  color:rgba(255,255,255,.65);
}
.metric-card .desc,
.metric-card p{
  margin:0;
  color:rgba(234,234,234,.78);
  line-height:1.5;
}
.metric-card p{font-size:14px}

.about-metric-band{
  margin:34px 0 28px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
}

.about-story{
  display:flex;
  flex-direction:column;
  gap:26px;
  margin:52px 0 24px;
}
.story-block{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,0.95fr);
  gap:24px;
  align-items:center;
  padding:26px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(140deg, rgba(16,16,18,.96), rgba(8,8,8,.88));
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}
.story-block.reverse .story-copy{order:2}
.story-block.reverse .story-media{order:1}
.story-copy{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.story-list{
  margin:8px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.story-list li{
  position:relative;
  padding-left:18px;
  color:rgba(235,235,235,.85);
  font-weight:600;
}
.story-list li::before{
  content:"";
  position:absolute;
  left:0;top:10px;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 14px rgba(255,31,61,.55);
}
.story-media{
  margin:0;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 26px 80px rgba(0,0,0,.55);
  background:#080808;
}
.story-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:260px;
}
.story-media figcaption{
  margin:0;
  padding:10px 14px;
  font-weight:700;
  letter-spacing:.01em;
  color:#f3f3f3;
  background:rgba(0,0,0,.65);
  border-top:1px solid rgba(255,255,255,.06);
}
.story-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:2px;
}
.story-tags span{
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.38);
  color:rgba(240,240,240,.88);
  font-weight:700;
  letter-spacing:.01em;
}

.about-showcase{
  margin-top:70px;
  display:grid;
  grid-template-columns:minmax(280px,420px) minmax(0,1fr);
  gap:32px;
  align-items:stretch;
}
.about-showcase-copy{
  background:rgba(10,10,10,.85);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:32px;
  box-shadow:0 24px 80px rgba(0,0,0,.55);
}
.about-showcase-list{
  list-style:none;
  margin:22px 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.about-showcase-list li{
  padding-left:28px;
  position:relative;
  color:rgba(234,234,234,.82);
  font-weight:600;
}
.about-showcase-list li::before{
  content:"";
  position:absolute;
  left:0;top:10px;
  width:10px;height:10px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 16px rgba(255,31,61,.6);
}
.about-showcase-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:14px;
}
.about-showcase-meta div{
  flex:1 1 120px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px 20px;
  background:linear-gradient(180deg, rgba(12,12,12,.94), rgba(6,6,6,.82));
  box-shadow:0 18px 50px rgba(0,0,0,.42);
}
.about-showcase-meta .label{
  display:block;
  font-size:12px;
  letter-spacing:.2em;
  color:var(--muted);
}
.about-showcase-meta strong{
  display:block;
  font-size:34px;
  margin-top:4px;
}
.about-showcase-meta .desc{
  display:block;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(234,234,234,.72);
}
.about-showcase-media{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(200px,1fr));
  grid-auto-rows:minmax(160px,auto);
  gap:14px;
  align-items:stretch;
  min-height:0;
}
.about-shot{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 26px 80px rgba(0,0,0,.55);
  width:100%;
  height:100%;
  background:#080808;
}
.about-shot img{width:100%;height:100%;object-fit:cover;display:block}
.about-shot.primary{
  grid-column:1 / -1;
  min-height:260px;
}
.about-shot.secondary{
  min-height:220px;
}
.about-partner{
  margin-top:60px;
  padding:38px 40px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,31,61,.22), transparent 52%),
    radial-gradient(circle at 88% 80%, rgba(0,154,255,.2), transparent 55%),
    linear-gradient(135deg,#050505 0%,#0f0f10 45%,#060607 100%);
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 100px rgba(0,0,0,.55);
  isolation:isolate;
}
.about-partner::before,
.about-partner::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.about-partner::before{
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(-120deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px, transparent 1px, transparent 22px);
  opacity:.35;
  mix-blend-mode:screen;
}
.about-partner::after{
  background:radial-gradient(circle at 80% 40%, rgba(255,31,61,.32), transparent 70%);
  filter:blur(40px);
  opacity:.7;
}
.about-partner-copy{
  position:relative;
  z-index:2;
  max-width:620px;
}
.about-partner-brand{
  position:absolute;
  inset:0 40px 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  pointer-events:none;
  z-index:1;
  mix-blend-mode:screen;
}
.about-partner-brand img{
  width:360px;
  max-width:38vw;
  filter:invert(1) brightness(1.6);
  opacity:.4;
}
.about-partner-copy .label{
  text-transform:uppercase;
  letter-spacing:.32em;
  font-size:12px;
  color:rgba(255,255,255,.6);
  margin-bottom:14px;
  display:block;
}
.about-partner-copy h3{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:-.015em;
}
.about-partner-copy .desc{
  margin:0;
  color:rgba(234,234,234,.78);
}
.about-partner-copy ul{
  margin:20px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:12px 26px;
}
.about-partner-copy li{
  position:relative;
  padding-left:18px;
  font-weight:600;
  color:rgba(255,255,255,.85);
}
.about-partner-copy li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 14px rgba(255,31,61,.6);
}
.about-gallery{margin-top:42px}
.about-gallery img{
  height:220px;
  border-radius:22px;
}
.about-visual{
  margin:30px 0 20px;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:16px;
  align-items:stretch;
}
.visual-hero{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.08);
  min-height:320px;
}
.visual-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.02);
}
.visual-overlay{
  position:absolute;
  inset:0;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
  background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  color:#f5f5f5;
}
.visual-overlay p{
  margin:0;
  letter-spacing:.18em;
  font-size:12px;
  text-transform:uppercase;
  opacity:.85;
}
.visual-overlay h3{
  margin:0;
  font-size:26px;
  letter-spacing:-.01em;
}
.visual-overlay span{
  font-size:13px;
  opacity:.85;
}
.visual-stack{
  display:grid;
  gap:10px;
}
.visual-stack figure{
  position:relative;
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  background:rgba(6,6,6,.7);
}
.visual-stack img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.visual-stack figcaption{
  position:absolute;
  left:12px;
  bottom:10px;
  margin:0;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.6);
  color:#f5f5f5;
  font-weight:700;
  font-size:13px;
  letter-spacing:.01em;
  backdrop-filter:blur(6px);
}
.about-presence{
  margin:54px 0 0;
  padding:34px 28px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,31,61,.18), transparent 46%),
    radial-gradient(circle at 80% 80%, rgba(76,126,255,.12), transparent 48%),
    linear-gradient(135deg, rgba(10,10,12,.95), rgba(7,7,8,.9));
  box-shadow:0 30px 100px rgba(0,0,0,.55);
  display:grid;
  gap:18px;
}
.presence-intro{
  max-width:720px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.presence-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.presence-card{
  padding:18px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(16,16,16,.9), rgba(8,8,8,.86));
  box-shadow:0 20px 60px rgba(0,0,0,.48);
}
.presence-card h3{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:-.01em;
}
.presence-card p{
  margin:0;
  color:rgba(234,234,234,.8);
  line-height:1.6;
}
@media (max-width: 960px){
  .about-visual{
    grid-template-columns:1fr;
  }
  .visual-stack img{height:220px}
  .about-metric-band{grid-template-columns:repeat(auto-fit,minmax(160px,1fr))}
  .story-block{
    grid-template-columns:1fr;
    padding:22px;
  }
  .story-block.reverse .story-copy,
  .story-block.reverse .story-media{
    order:unset;
  }
  .metric-card strong{font-size:28px}
  .about-presence{padding:26px 22px}
  .about-showcase{
    grid-template-columns:1fr;
  }
  .about-showcase-media{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  }
  .about-shot.primary{grid-column:1}
}
@media(max-width:900px){
  .service-top{
    grid-template-columns:1fr;
    padding:22px;
  }
  .service-cards{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  }
  .service-card{min-height:240px}
  .project-card.large{grid-column:span 1}
}

/* Referans şeridi */
.brand-strip{
  position:relative;
  overflow:hidden;
  padding:18px 0;
  margin:22px auto 0;
  max-width:100%;
  min-height:86px;
}
.brand-track{
  display:flex;
  gap:46px;
  animation:scroll 32s linear infinite;
  width:max-content;
  padding-inline:8vw;
  align-items:center;
  will-change:transform;
}
.brand{
  flex:0 0 auto;
  min-width:120px;
  display:flex;align-items:center;justify-content:center;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.45));
}
.brand img{
  max-height:62px;
  width:auto;
  filter:grayscale(.05) contrast(1.05);
}
.brand-strip::before,
.brand-strip::after{
  content:"";
  position:absolute;top:0;bottom:0;width:12vw;pointer-events:none;
  background:linear-gradient(to right, rgba(8,8,8,.86), rgba(8,8,8,0));
}
.brand-strip::after{
  right:0;
  transform:scaleX(-1);
}
.brand-strip::before{
  left:0;
}
@keyframes scroll{
  from{transform:translateX(0)} to{transform:translateX(-50%)}
}

.ref-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}
.ref-box{
  background:#0f0f0f;border:1px solid var(--stroke);border-radius:18px;
  padding:22px;display:grid;place-items:center;
  box-shadow:var(--shadow);
}
.ref-box img{max-width:100%;max-height:70px;object-fit:contain;filter:grayscale(.12) contrast(1.08)}
.references-intro{
  margin-bottom:32px;
  display:block;
}

.gallery{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  margin-top:28px;
}
.gallery img{
  width:100%;height:220px;object-fit:cover;
  border-radius:18px;border:1px solid var(--stroke);
  box-shadow:var(--shadow);background:#101010;
  transition:transform .25s ease,box-shadow .25s ease;
}
.gallery img:hover{transform:translateY(-4px);box-shadow:0 20px 42px rgba(0,0,0,.45)}

/* Fabrika visuals */
.factory-showcase{
  margin-top:56px;
  padding:32px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 14% 12%, rgba(255,31,61,.18), transparent 50%),
    radial-gradient(circle at 82% 0%, rgba(88,142,255,.12), transparent 52%),
    linear-gradient(125deg, rgba(12,12,12,.9), rgba(6,6,6,.86));
  box-shadow:0 36px 120px rgba(0,0,0,.58);
  display:flex;
  flex-direction:column;
  gap:28px;
  position:relative;
  overflow:hidden;
}
.factory-showcase::after{
  content:"";
  position:absolute;
  inset:0 0 50%;
  background:
    linear-gradient(180deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,.9) 40%, rgba(8,8,8,.95) 100%),
    url("../media/fabrika/fabrika1.jpeg");
  background-size:cover;
  background-position:center;
  filter:blur(10px) saturate(.65);
  opacity:.28;
  z-index:0;
}
.factory-showcase::before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.05);
  opacity:.55;
  pointer-events:none;
}
.factory-showcase .factory-filmstrip-wrap{
  background:none;
  border-radius:0;
  border:none;
  padding:0;
  box-shadow:none;
}
.factory-showcase .factory-filmstrip{
  max-width:100%;
}
.factory-copy{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.factory-filmstrip-wrap{
  position:relative;
  z-index:1;
}
.factory-hero-meta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.factory-hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.factory-hero-badges span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.14);
  color:#f2f2f2;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size:12px;
  box-shadow:0 16px 40px rgba(0,0,0,.38);
}
.factory-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.factory-hero-actions .btn{
  min-width:160px;
  justify-content:center;
}
.factory-pill{
  align-self:flex-start;
  padding:8px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}
.factory-highlights{
  list-style:none;
  margin:14px 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.factory-highlights li{
  position:relative;
  padding-left:20px;
  color:rgba(235,235,235,.9);
  font-weight:600;
}
.factory-highlights li::before{
  content:"";
  position:absolute;
  left:0;top:10px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 12px rgba(255,31,61,.55);
}
.factory-metric-band{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
  margin-top:8px;
}
.factory-metric-band div{
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(12,12,12,.92), rgba(6,6,6,.8));
  box-shadow:0 18px 52px rgba(0,0,0,.42);
}
.factory-metric-label{
  display:block;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
}
.factory-metric-band strong{
  display:block;
  font-size:30px;
  margin:6px 0 4px;
}
.factory-metric-desc{
  display:block;
  color:rgba(234,234,234,.72);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.factory-media-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:140px;
  gap:16px;
}
.factory-media-item{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 26px 78px rgba(0,0,0,.52);
  background:linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.6));
}
.factory-media-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  aspect-ratio:4/3;
}
.factory-media-item figcaption{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:7px 12px;
  border-radius:11px;
  background:rgba(0,0,0,.62);
  color:#f7f7f7;
  font-weight:700;
  letter-spacing:.01em;
  box-shadow:0 10px 26px rgba(0,0,0,.42);
}
.factory-media-item.media-hero{
  grid-column:1 / span 7;
  grid-row:1 / span 3;
  min-height:360px;
}
.factory-media-item.media-tall{
  grid-column:8 / span 5;
  grid-row:1 / span 3;
  min-height:360px;
}
.factory-media-item.media-wide{
  grid-column:1 / span 6;
  grid-row:4 / span 2;
  min-height:260px;
}
.factory-media-item.media-square{
  grid-column:7 / span 6;
  grid-row:4 / span 2;
  min-height:260px;
}
.factory-ribbon{
  position:absolute;
  right:12px;
  top:12px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.75);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}
.factory-filmstrip{
  margin-top:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  max-width:1260px;
  width:100%;
  padding:0;
  margin-inline:auto;
  align-items:stretch;
}
.filmshot.span-2{
  grid-column:span 2;
}
.factory-filmstrip-wrap{
  margin-top:12px;
  padding:0;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none;
  position:relative;
  z-index:1;
}
.filmshot{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#0f1013;
  box-shadow:0 18px 46px rgba(0,0,0,.38);
  display:flex;
  flex-direction:column;
  min-height:320px;
}
.filmshot img{
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  object-fit:cover;
  display:block;
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:transform .3s ease, filter .3s ease;
}
.filmshot:hover img{
  transform:scale(1.02);
  filter:brightness(1.04);
}
.filmshot figcaption{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:10px 16px;
  border-radius:14px;
  background:rgba(0,0,0,.7);
  color:#f5f5f5;
  font-weight:800;
  letter-spacing:.01em;
  font-size:15px;
  backdrop-filter:blur(4px);
}
@media (max-width:900px){
  .filmshot.span-2{grid-column:auto;}
  .factory-filmstrip{
    grid-template-columns:1fr;
    max-width:100%;
    padding:0;
  }
}

.projects-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin-top:36px;
}
.projects-gallery .gallery-item{display:flex;flex-direction:column;gap:0;margin:0;}
.projects-gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 60px rgba(0,0,0,.5);
  transition:transform .25s ease,box-shadow .25s ease;
  cursor:pointer;
}
.projects-gallery figcaption{
  font-size:14px;
  line-height:1.3;
  color:rgba(255,255,255,.78);
  padding:0 2px;
  display:none;
}
.projects-gallery img:hover{
  transform:translateY(-8px);
  box-shadow:0 42px 88px rgba(0,0,0,.58);
}

.fairs-hero{padding-top:40px}
.fairs-gallery{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:20px;
}
.fairs-strip{
  margin:22px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  align-items:stretch;
  justify-content:flex-start;
}
.fair-mini{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg, rgba(255,96,96,.08), rgba(72,162,255,.08));
  box-shadow:0 18px 46px rgba(0,0,0,.38);
}
.fair-mini img{
  height:70px;
  width:auto;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:#0f1013;
  object-fit:contain;
  padding:8px 10px;
}
.fair-mini-body{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.fair-mini-title{
  margin:0;
  font-weight:800;
  font-size:16px;
}
.fair-mini-meta{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.fair-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  background:linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.6));
}
.fair-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 16 / 6;
  transition:transform .25s ease, filter .25s ease;
}
.fair-card:hover img{
  transform:scale(1.01);
  filter:brightness(1.02);
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:120;
  backdrop-filter:blur(6px);
  padding:24px;
}
.lightbox.open{display:flex}
.lightbox-frame{
  max-width:min(1200px,90vw);
  max-height:80vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.lightbox img{
  max-width:100%;
  max-height:70vh;
  border-radius:22px;
  box-shadow:0 40px 120px rgba(0,0,0,.6);
}
.lightbox-frame figcaption{
  color:#f0f0f0;
  font-size:15px;
  text-align:center;
  line-height:1.4;
  max-width:70ch;
  opacity:.85;
}
.lightbox-close{
  position:absolute;
  top:32px;right:32px;
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(10,10,10,.6);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  display:grid;place-items:center;
  transition:transform .2s ease,background .2s ease;
}
.lightbox-close:hover{
  transform:scale(1.08);
  background:var(--brand);color:#111;border-color:transparent;
}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(10,10,10,.6);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  display:grid;place-items:center;
  transition:transform .2s ease,background .2s ease;
}
.lightbox-nav.prev{left:32px}
.lightbox-nav.next{right:32px}
.lightbox-nav:hover{
  transform:translateY(-50%) scale(1.1);
  background:var(--brand);
  color:#111;
  border-color:transparent;
}
.lightbox-nav:disabled{
  opacity:.35;
  cursor:not-allowed;
  transform:translateY(-50%);
}

.map-wrap{
  margin:22px 0 32px;
  display:grid;gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.map-wrap iframe{
  width:100%;min-height:220px;border:0;border-radius:18px;
  box-shadow:var(--shadow);border:1px solid rgba(255,255,255,.12);
}

.input{
  width:100%;padding:12px 16px;border-radius:14px;
  border:1px solid var(--stroke);background:#0f0f0f;color:var(--text);
  font:600 15px/1.4 "Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.input::placeholder{color:var(--muted);font-weight:500}
.input:focus{
  outline:none;border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(255,59,63,.28);
  transform:translateY(-1px);
}
textarea.input{min-height:140px;resize:vertical}
.input.select-input{
  appearance:none;
  -webkit-appearance:none;
  padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg width='22' height='12' viewBox='0 0 22 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l9 8 9-8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.7'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
}
.input.select-input option{color:#111}

.quote-redirect{
  margin-top:32px;
  padding:24px 28px;
  border:1px solid var(--stroke);
  border-radius:22px;
  background:rgba(10,10,10,.85);
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:space-between;
  box-shadow:var(--shadow);
}
.quote-redirect .desc{
  flex:1 1 260px;
  margin:0;
}
.quote-redirect .btn{
  flex:0 0 auto;
}
.quote-highlights{
  margin-top:32px;
}
.quote-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  margin-top:40px;
}
.quote-step{
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:22px;
  background:rgba(8,8,8,.9);
  box-shadow:0 18px 44px rgba(0,0,0,.45);
}
.quote-step .label{
  font-size:12px;
  letter-spacing:.3em;
  color:var(--muted);
  text-transform:uppercase;
}
.quote-step h3{
  margin:8px 0 10px;
  font-size:20px;
}
.quote-step p{
  margin:0;
  color:rgba(234,234,234,.78);
  line-height:1.6;
}
.quote-form{
  max-width:1040px;
  margin:72px auto 0;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}
.quote-form-card{
  border-radius:32px;
  padding:56px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(6,6,6,.82);
  backdrop-filter:blur(14px);
  box-shadow:0 40px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}
.quote-form-card::after{
  content:"";
  position:absolute;
  inset:-50% -10% auto;
  height:150%;
  background:radial-gradient(circle at 50% 0%, rgba(255,59,92,.5), transparent 70%);
  opacity:.7;
  filter:blur(70px);
  transform:translateY(-40px);
  pointer-events:none;
}
.quote-form-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,65,100,.6), rgba(41,41,41,.7));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.6;
}
.quote-form-card>*{position:relative;z-index:1}
.quote-form-card h2{
  text-align:center;
  margin-bottom:12px;
  font-size:clamp(30px,4vw,40px);
}
.quote-mail{max-width:980px;margin:48px auto 0;padding:0 24px;}
.quote-mail-card{
  align-items:center;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.quote-mail-card .mail-desc{
  margin:0;
  text-align:center;
  color:rgba(234,234,234,.85);
  font-size:15px;
  line-height:1.7;
  max-width:720px;
}
.quote-mail-card .mail-hints{
  width:100%;
  max-width:720px;
  text-align:left;
  color:var(--text-subtle,#c7ccd4);
  font-size:14px;
  line-height:1.7;
  padding:14px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.quote-mail-card .mail-hints strong{
  color:#fff;
  display:block;
  margin-bottom:6px;
}
.quote-mail-card .mail-hints ul{
  padding-left:18px;
  margin:0;
}
.quote-mail-card .mail-hints li{margin-bottom:6px;}
.quote-mail-card .mail-btn{
  width:240px;
  justify-content:center;
}
.quote-mail-card .mail-note{
  text-align:center;
  margin-top:6px;
}
.quote-form-lead{
  text-align:center;
  margin:0 auto 18px;
  color:rgba(234,234,234,.78);
  max-width:640px;
  line-height:1.6;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin-top:20px;
}
.form-grid .full,
.form-grid textarea{
  grid-column:1 / -1;
}
.file-upload{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:26px 24px;
  border-radius:22px;
  border:1px dashed rgba(255,255,255,.22);
  background:rgba(12,12,12,.88);
  cursor:pointer;
  overflow:hidden;
}
.file-upload::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  pointer-events:none;
}
.file-upload input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.file-upload-text{
  font-weight:600;
  font-size:16px;
  color:var(--text);
}
.file-upload-hint{
  font-size:13px;
  color:var(--muted);
  max-width:46ch;
}
.quote-form .input,
.quote-form .select-input,
.quote-form textarea.input{
  min-height:58px;
  font-size:16px;
  padding:15px 20px;
}
.quote-form textarea.input{min-height:200px}
.quote-form .btn{
  width:100%;
  margin-top:22px;
  justify-content:center;
}
.quote-form .btn::before{opacity:.9}
.quote-form .btn span{text-transform:uppercase;letter-spacing:.05em}
.form-note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.tabs{
  display:flex;flex-wrap:wrap;gap:10px;margin:18px 0;
}
.tab{
  border:1px solid var(--stroke);background:#0f0f0f;color:var(--muted);
  padding:9px 18px;border-radius:12px;font-weight:600;cursor:pointer;
  transition:all .2s ease;
}
.tab[aria-selected="true"],.tab:hover{
  color:var(--text);border-color:var(--brand);box-shadow:0 12px 28px rgba(255,59,63,.26);
}

.filters+.filters{margin-top:10px}
.chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 16px;border-radius:999px;background:#111;
  border:1px solid var(--stroke);color:var(--muted);font-weight:600;
  cursor:pointer;transition:all .2s ease;
}
.chip:hover{color:var(--text)}
.chip.active{
  background:var(--brand-soft);color:var(--brand);border-color:rgba(255,59,63,.4);
}

.grid-3{
  display:grid;gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  margin-top:26px;
}
.card{
  background:linear-gradient(180deg,#101010,#0a0a0a);
  border:1px solid var(--stroke);border-radius:18px;overflow:hidden;
  text-decoration:none;color:inherit;box-shadow:var(--shadow);
  display:flex;flex-direction:column;
  transition:transform .25s ease,box-shadow .25s ease;
}
.card img{width:100%;height:180px;object-fit:cover}
.card .body{padding:18px 20px;display:flex;flex-direction:column;gap:6px}
.card strong{font-size:18px}
.card .p{margin:0;color:var(--muted)}
.card:hover{transform:translateY(-6px);box-shadow:0 24px 48px rgba(0,0,0,.45)}

.products-mega .desc{max-width:720px}
.products-mega .container{
  max-width:1400px;
  padding:0 16px;
}
body[data-page="products"]:not(.products-showing) .product-hero-row,
body[data-page="products"]:not(.products-showing) #productDetail{
  display:none;
}
body[data-page="products"].products-showing .product-quicklist{
  display:none;
}
.product-hero-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:18px 0 6px;
  position:relative;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:radial-gradient(circle at 25% 25%, rgba(255,64,82,.14), transparent 48%), rgba(10,10,10,.9);
  box-shadow:0 24px 62px rgba(0,0,0,.55);
}
.product-hero-visual img{
  width:100%;
  max-width:980px;
  height:auto;
  display:block;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 22px 40px rgba(0,0,0,.5);
}
.product-hero-specs{
  position:absolute;
  left:36px;
  top:120px;
  right:auto;
  bottom:auto;
  max-width:360px;
  color:#f4f4f4;
  text-shadow:0 10px 24px rgba(0,0,0,.65);
  pointer-events:none;
}
.product-hero-specs-list{
  list-style:disc;
  padding-left:18px;
  margin:0;
  display:grid;
  gap:8px;
  font-size:18px;
  line-height:1.45;
}
.product-hero-specs-list li{
  margin:0;
}
.product-hero-specs[hidden]{
  display:none;
}
.product-hero-label{
  display:none;
}
.product-hero-row{
  display:grid;
  grid-template-columns:1fr;
  align-items:stretch;
  gap:0;
  margin-bottom:16px;
  position:relative;
}
.product-hero-copy{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-self:center;
  max-width:420px;
  justify-content:center;
  position:absolute;
  right:auto;
  left:48px;
  top:48px;
  padding:0;
  border-radius:0;
  border:0;
  background:none;
  backdrop-filter:none;
  box-shadow:none;
  z-index:2;
}
.product-hero-copy .desc{
  display:none;
}
.product-hero-row .h1{margin:0}
.product-hero-row .desc{margin:0}
.product-hero-visual img{max-width:100%;}
.product-quicklist{
  margin:12px auto 28px;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,59,63,.16), transparent 45%),
    rgba(10,10,10,.9);
  box-shadow:0 26px 60px rgba(0,0,0,.55);
  max-width:520px;
}
.product-quicklist-title{
  margin:0 0 12px;
  color:var(--brand);
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:13px;
}
.product-quicklist-buttons{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.product-quick-btn{
  width:100%;
  text-align:left;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(24,24,26,.9), rgba(12,12,12,.9));
  color:#f2f2f2;
  font-weight:800;
  font-size:18px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
}
.product-quick-btn:hover{
  background:rgba(255,255,255,.12);
  transform:translateX(4px);
  border-color:rgba(255,255,255,.16);
}
.product-quick-btn.active{
  background:var(--brand);
  color:#0c0c0c;
}
.product-quick-thumb{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.35);
  flex-shrink:0;
}
.product-projects{
  margin-top:28px;
}
.product-projects-head{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.product-projects-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  max-width:1040px;
  margin-left:auto;
  margin-right:auto;
}
.product-projects-grid figure{
  margin:0;
  overflow:hidden;
  border-radius:12px;
}
.product-projects-grid img{
  width:100%;
  height:auto;
  aspect-ratio:3/2;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 12px 24px rgba(0,0,0,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.product-projects-grid img:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 32px rgba(0,0,0,.45);
}
@media (max-width: 720px){
  .product-projects-grid{
    grid-template-columns:1fr;
    max-width:none;
  }
}
@media (max-width: 1280px){
  .product-hero-copy{
    left:24px;
    top:24px;
    max-width:360px;
  }
  .product-hero-visual{
    padding:14px;
  }
  .product-hero-visual img{
    max-width:760px;
  }
}
@media (max-width: 1100px){
  .product-hero-copy{
    left:18px;
    top:18px;
    max-width:320px;
  }
  .product-hero-visual{
    padding:12px;
  }
}
@media (max-width: 960px){
  .product-hero-row{
    grid-template-columns:1fr;
    gap:12px;
    position:static;
  }
  .product-hero-visual{
    justify-content:flex-start;
    align-items:flex-start;
    padding:12px;
  }
  .product-hero-specs{
    left:22px;
    right:22px;
    bottom:18px;
    max-width:none;
  }
  .product-hero-visual img{
    width:100%;
    max-width:620px;
  }
  .product-hero-copy{
    position:static;
    max-width:none;
    padding:0;
    border:0;
    background:none;
    box-shadow:none;
  }
  .product-quicklist{
    max-width:none;
  }
}
.product-layout{
  margin-top:32px;
  display:grid;
  gap:32px;
  grid-template-columns:minmax(0,2.1fr) minmax(280px,1fr);
  align-items:start;
}
.product-catalog{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.product-block{
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(12,12,12,.92);
  padding:28px;
  box-shadow:0 34px 80px rgba(0,0,0,.55);
}
.product-block h3{
  margin:0 0 18px;
  font-size:19px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#ff6179;
}
.product-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.product-list li{margin:0;padding:0}
.product-item{
  width:100%;
  background:none;
  border:0;
  color:rgba(244,244,244,.86);
  font-weight:600;
  font-size:15px;
  text-align:left;
  padding:10px 6px;
  cursor:pointer;
  position:relative;
  transition:color .2s ease, transform .2s ease;
  display:flex;
  align-items:center;
  gap:10px;
}
.product-item::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:2px;
  width:0;
  background:var(--brand);
  border-radius:999px;
  transition:width .25s ease;
}
.product-item:hover,
.product-item:focus-visible{
  color:#fff;
  outline:none;
  transform:translateX(4px);
}
.product-item:hover::after,
.product-item:focus-visible::after{
  width:32px;
}
.product-item.active{
  color:#fff;
  text-shadow:0 0 18px rgba(255,59,92,.45);
}
.product-item.active::after{
  width:48px;
}
@media (hover:none){
  .product-item:hover,
  .product-item:focus-visible{
    color:rgba(244,244,244,.86);
    transform:none;
  }
  .product-item:hover::after,
  .product-item:focus-visible::after{
    width:0;
  }
}
.product-thumb{
  width:46px;
  height:46px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:#0f0f0f;
  flex-shrink:0;
  display:grid;
  place-items:center;
}
.product-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product-label{
  display:inline-block;
}
.product-preview{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  background:radial-gradient(circle at 20% 0%, rgba(255,65,110,.3), transparent 58%), rgba(10,10,10,.95);
  padding:30px;
  box-shadow:0 40px 90px rgba(0,0,0,.55);
  display:flex;
  flex-direction:column;
  gap:18px;
}
.product-preview-media{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
}
.preview-zoom{
  display:block;
  border:0;
  background:none;
  padding:0;
  width:100%;
  cursor:pointer;
  border-radius:inherit;
}
.preview-zoom:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:4px;
}
.product-preview-media img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}
.product-preview-body h3{
  margin:0 0 8px;
  font-size:26px;
}
.product-preview-body p{
  margin:0;
  color:rgba(243,243,243,.82);
  line-height:1.6;
}
.product-preview-media{
  position:relative;
  isolation:isolate;
}
.product-preview-media::after,
.product-preview-media::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  opacity:.35;
  transition:opacity .35s ease, transform .35s ease, border-color .35s ease;
  z-index:2;
  pointer-events:none;
}
.product-preview-media::before{
  transform:translate(-6px,-6px);
}
.product-preview-media::after{
  transform:translate(6px,6px);
}
.product-preview-media.stacked::before{
  opacity:.65;
  transform:translate(-10px,-10px);
  border-color:rgba(255,255,255,.16);
  box-shadow:0 16px 38px rgba(0,0,0,.5);
}
.product-preview-media.stacked::after{
  opacity:.45;
  transform:translate(10px,10px);
  border-color:rgba(255,255,255,.2);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.product-preview-media img{
  display:block;
  position:relative;
  z-index:3;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 25px 60px rgba(0,0,0,.45), 0 8px 22px rgba(255,255,255,.08);
}
.preview-group{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.3em;
  color:rgba(255,255,255,.6);
  margin-bottom:10px;
}
.product-preview-body .preview-placeholder{
  color:var(--muted);
}

@media (max-width:960px){
  .product-hero-visual{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .product-hero-label{
    left:10px;
    bottom:10px;
  }
  .product-hero-visual img{width:100%}
  .product-hero-copy{
    text-align:center;
  }
  .product-layout{
    grid-template-columns:1fr;
  }
  .product-preview-media img{height:220px}
}

/* Sayaçlar */
.counters{display:grid;grid-template-columns:repeat(5,1fr);gap:24px}
.counter{
  background:linear-gradient(180deg,#0f0f0f,#0b0b0b);
  border:1px solid var(--stroke);border-radius:18px;padding:26px;box-shadow:var(--shadow);
  text-align:center
}
.num{font-size:clamp(36px,5vw,64px);font-weight:900;color:var(--brand)}
.unit{font-weight:900;color:var(--brand);margin-left:6px}
.unit.sup{
  font-size:18px;
  vertical-align:super;
  margin-left:4px;
}
.label{color:var(--muted);margin-top:8px;font-weight:700}

/* Footer */
.mega-footer{
  margin-top:18px;
  padding:22px 0 10px;
  background:linear-gradient(135deg,#0d0e10 0%,#0f1417 50%,#0d0e10 100%);
  border-top:1px solid rgba(255,255,255,.04);
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px 14px;
  max-width:1180px;
  margin:0 auto;
  padding:0 12px;
}
.footer-col h4{
  margin:0 0 8px;
  font-size:15px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(240,240,240,.9);
}
.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.footer-col a{
  color:rgba(235,235,235,.68);
  text-decoration:none;
  font-weight:600;
  transition:color .2s ease, transform .2s ease;
}
.footer-col a:hover,
.footer-col a:focus-visible{
  color:#f1f1f1;
  outline:none;
  transform:translateX(4px);
}
.footer-hours{
  margin-top:6px;
  color:rgba(235,235,235,.78);
  display:flex;
  flex-direction:column;
  gap:2px;
  font-weight:600;
}
.footer-hours strong{font-size:13px;letter-spacing:.05em;text-transform:uppercase;color:#f5f5f5;}
.footer-hours span{font-size:13px;}
.footer-brand{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  padding-top:6px;
}
.footer-brand img{
  max-width:200px;
  height:auto;
  filter:drop-shadow(0 10px 32px rgba(0,0,0,.5));
  opacity:.9;
}
.links-two-col{
  column-count:2;
  column-gap:16px;
}
.links-two-col li{break-inside:avoid;}
.footer-contact a{word-break:break-word;}

.footer{
  border-top:1px solid var(--stroke);color:var(--muted);
  text-align:center;padding:20px 16px;margin-top:0
}
.cert-strip{
  padding:18px 0 14px;
  background:rgba(8,8,8,.86);
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.cert-track{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px 28px;
  align-items:center;
  justify-items:center;
}
.cert-track img{
  max-height:70px;
  width:auto;
  opacity:1;
  filter:none;
  background:transparent;
}
.project-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding:20px;
  backdrop-filter:blur(6px);
}
.project-lightbox[hidden]{display:none}
.project-lightbox figure{
  margin:0;
  width:min(1100px,92vw);
  max-height:90vh;
  position:relative;
  display:grid;
  grid-template-rows:1fr auto;
  align-items:center;
  gap:12px;
}
.project-lightbox img{
  width:100%;
  height:100%;
  max-height:calc(90vh - 82px);
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 30px 90px rgba(0,0,0,.6);
}
.project-lightbox figcaption{
  color:#f5f5f5;
  text-align:center;
  font-weight:700;
  background:rgba(0,0,0,.85);
  padding:12px 16px;
  border-radius:12px;
  width:100%;
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.project-lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  border-radius:50%;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.4);
}

/* Projeler sayfası lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding:20px;
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.lightbox.open{
  opacity:1;
  pointer-events:auto;
}
.lightbox figure{
  margin:0;
  width:min(1200px,92vw);
  max-height:92vh;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
  padding:0;
  box-sizing:border-box;
}
.lightbox img{
  width:100%;
  height:auto;
  max-height:calc(92vh - 128px);
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 30px 90px rgba(0,0,0,.6);
}
.lightbox figcaption{
  display:none;
}
.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  border-radius:50%;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  font-size:20px;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.lightbox-close:hover{background:rgba(0,0,0,.8);border-color:rgba(255,255,255,.4)}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.55);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:22px;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.lightbox-nav.prev{left:10px}
.lightbox-nav.next{right:10px}
.lightbox-nav:disabled{opacity:.3;cursor:not-allowed}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(0,0,0,.4);
  color:#fff;
  cursor:pointer;
}
.lightbox-nav.prev{left:10px}
.lightbox-nav.next{right:10px}
.lightbox-nav:disabled{opacity:.3;cursor:not-allowed}

/* Mobil */
@media (max-width:980px){
  .nav{gap:10px;padding:16px 18px 18px;flex-wrap:nowrap}
  .nav-toggle{
    display:inline-flex;
    margin-left:auto;
    width:60px;
    height:60px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    background:
      radial-gradient(circle at 50% 28%, rgba(255,255,255,.08), transparent 60%),
      linear-gradient(160deg, #050506, #151515);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      inset 0 -18px 30px rgba(0,0,0,.75),
      0 18px 40px rgba(0,0,0,.6);
  }
  .nav-toggle span{display:none;}
  .nav-toggle::before{
    inset:6px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.06);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
  }
  .nav-toggle::after{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    border-radius:999px;
    background:rgba(255,255,255,.82);
    box-shadow:
      -14px 0 0 rgba(255,255,255,.7),
      14px 0 0 rgba(255,255,255,.7);
  }
  body.nav-open .nav-toggle::after{
    background:rgba(255,75,105,.95);
    box-shadow:
      -14px 0 0 rgba(255,75,105,.85),
      14px 0 0 rgba(255,75,105,.85);
  }
  .links{
    position:fixed;
    top:86px;
    right:16px;
    width:min(320px, calc(100% - 32px));
    background:rgba(4,4,4,.94);
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:24px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    box-shadow:0 30px 90px rgba(0,0,0,.65);
    transform:translateX(110%);
    opacity:0;
    pointer-events:none;
    transition:transform .3s ease,opacity .3s ease;
    z-index:60;
    margin-left:0;
  }
  body.nav-open .links{
    transform:translateX(0);
    opacity:1;
    pointer-events:auto;
  }
  .links a{font-size:16px}
  .links .btn{width:100%;justify-content:center}
  .lang-switch{margin-left:0}
  .lang-switch .lang-toggle{width:100%;justify-content:center}
  body.nav-open .nav-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
  body.nav-open .nav-toggle span:nth-child(2){opacity:0}
  body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .counters{grid-template-columns:repeat(2,1fr)}
  .brand-strip{padding:14px 0}
  .brand-track{animation-duration:36s;gap:36px;padding-inline:14vw}
  .projects-gallery{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:26px;margin-top:32px}
  .projects-gallery img{height:220px;border-radius:24px}
  .about-hero{
    grid-template-columns:1fr;
    padding:26px 22px;
    gap:18px;
  }
  .about-hero::after{inset:10px;border-radius:22px}
  .about-showcase{
    grid-template-columns:1fr;
  }
  .about-showcase-media{min-height:320px;margin-top:30px}
  .about-partner{
    text-align:center;
    padding:34px 28px;
    display:flex;
    flex-direction:column;
    gap:18px;
    align-items:center;
  }
  .about-partner-copy{
    width:100%;
    max-width:100%;
    text-align:left;
  }
  .about-partner-brand{
    position:static;
    inset:auto;
    order:-1;
    justify-content:center;
    width:100%;
    margin-bottom:6px;
    mix-blend-mode:normal;
  }
  .about-partner-brand img{
    width:min(240px,60vw);
    max-width:100%;
    opacity:.55;
    filter:none;
  }
  .about-partner-copy ul{
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
    width:100%;
    text-align:left;
  }
  .about-partner-copy li{
    padding-left:0;
  }
  .about-partner-copy li::before{
    display:none;
  }
  .hero{
    padding:160px 32px 128px;
    align-items:flex-end;
    text-align:center;
  }
  .hero::after{inset:-30% -38% 34% -38%;filter:blur(100px)}
  .hero-inner{max-width:100%;padding:20px 8px}
  .hero-cta{justify-content:center}
  .factory-showcase{
    grid-template-columns:1fr;
    padding:26px 22px;
    gap:18px;
  }
  .factory-media-grid{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  }
  .factory-filmstrip{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  }
  .quote-redirect{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .quote-redirect .btn{
    width:100%;
    justify-content:center;
  }
}
@media (max-width:540px){
  .counters{grid-template-columns:1fr}
  .hero{padding:152px 24px 132px}
  .hero::after{inset:-36% -46% 40% -46%}
  .hero-title{font-size:clamp(32px,10vw,46px)}
  .hero-cta{gap:10px}
  .map-wrap{grid-template-columns:1fr}
  .gallery img{height:200px}
  .brand-strip{padding:12px 0}
  .brand-track{gap:26px;padding-inline:18vw}
  .projects-gallery{gap:22px;margin-top:30px}
  .projects-gallery img{height:200px;border-radius:22px}
  .mission-slab{padding:72px 0;}
  .mission-actions{gap:10px}
  .factory-hero-meta{flex-direction:column;align-items:flex-start}
  .factory-hero-actions{width:100%}
  .factory-hero-actions .btn{width:100%}
  .factory-filmstrip{
    grid-template-columns:1fr;
  }
  .filmshot{min-height:240px}
  .filmshot figcaption{font-size:14px}
  .about-hero{
    padding:22px 18px;
    margin-bottom:30px;
    border-radius:26px;
  }
  .about-hero-tags span{font-size:13px}
  .about-showcase-media{min-height:260px}
  .about-shot{position:relative;inset:auto;max-width:100%;width:100%;height:220px;margin-bottom:20px}
  .about-shot.secondary{transform:none;height:200px}
  .factory-showcase{
    padding:22px 18px;
    border-radius:28px;
    gap:18px;
  }
  .factory-media-grid{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    grid-auto-rows:auto;
  }
  .factory-media-item{
    grid-column:auto !important;
    grid-row:auto !important;
    min-height:220px;
  }
  .factory-ribbon{position:static;display:inline-flex;margin-top:6px;right:auto;top:auto}
  .filmshot img{height:170px}
  .about-partner{
    padding:28px 22px;
    gap:14px;
  }
  .about-partner-brand img{
    width:180px;
  }
  .about-partner-copy h3{
    font-size:24px;
  }
  .about-partner-copy .desc{
    font-size:15px;
    line-height:1.65;
  }
  .quote-redirect{
    text-align:center;
  }
  .quote-redirect .btn{
    width:100%;
  }
}
