:root{
  --bg: #ffffff;
  --text: #0b0d12;
  --muted: #5a616f;
  --line: #e8eaf0;
  --soft: #f6f7fb;
  --soft-2: #fbfbfd;
  --accent: #ff3aa7;
  --accent-2: #12131a;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 14px 40px rgba(11,13,18,.08);
  --shadow2: 0 8px 22px rgba(11,13,18,.07);
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.35;
}
a{color:inherit}
img{max-width:100%}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  font-weight:700;
  transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease, background-color .14s ease;
  box-shadow:0 0 0 rgba(0,0,0,0);
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow2); border-color:#d8dbea}
.btn:active{transform:translateY(0) scale(.99)}
.btn:focus-visible{outline:3px solid rgba(255,58,167,.32); outline-offset:3px}
.btn.primary{
  background:var(--text);
  color:#fff;
  border-color:transparent;
}
.btn.primary:hover{box-shadow:0 14px 34px rgba(11,13,18,.16)}
.btn.accent{
  background:var(--accent);
  color:#fff;
  border-color:transparent;
}
.btn.accent:hover{box-shadow:0 16px 36px rgba(255,58,167,.24)}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
  background:#fff;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(232,234,240,.75);
}
.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.brandName{font-weight:800; letter-spacing:-.02em; font-size:18px}
.brandSub{font-size:12px; color:var(--muted); margin-top:1px}
.brandText{display:flex; flex-direction:column; line-height:1.1}

.navLinks{display:flex; gap:12px; align-items:center}
.navLinks a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
  transition:background .12s ease, color .12s ease;
}
.navLinks a:hover{background:var(--soft); color:var(--text)}

.burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  margin:5px auto;
  border-radius:2px;
}
.mobileMenu{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid rgba(232,234,240,.65);
}
.mobileMenu a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
}
.mobileMenu a:hover{color:var(--text)}
.mobileMenu .row{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}

/* Hero */
.hero{padding:44px 0 24px}
.heroGrid{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:22px;
  align-items:stretch;
}
.heroCard,
.heroAside,
.contact,
.ctaCardAlt,
.card,
.proofCard,
.schemaCard,
.pairCard,
.step,
.details,
details,
.modelCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
}
.heroCard{
  box-shadow:var(--shadow);
  padding:30px;
  overflow:hidden;
  position:relative;
}
.heroCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 280px at 20% 8%, rgba(255,58,167,.10), transparent 60%),
    radial-gradient(520px 240px at 78% 26%, rgba(11,13,18,.06), transparent 55%);
  pointer-events:none;
}
.heroInner{position:relative}
.h1{
  font-size:50px;
  letter-spacing:-.045em;
  line-height:.97;
  margin:0 0 14px;
  max-width:40ch;
}
.lead{
  padding-top: 8px;
  font-size:17px;
  color:var(--muted);
  max-width:62ch;
  margin:0 0 18px;
  line-height:1.52;
}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.fine{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.stats,
.heroKpi{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:14px;
}
.stat b{display:block; font-size:16px; line-height:1.15}
.stat span{display:block; font-size:12px; color:var(--muted); margin-top:6px; line-height:1.45}

.heroAside{
  background:linear-gradient(180deg, #fff, #fafbff);
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.heroAside h3,
.miniLabel{
  margin:0;
  font-size:12px;
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.miniGrid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
}
.miniShot{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  aspect-ratio:4/5;
  position:relative;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow:0 6px 18px rgba(11,13,18,.08);
}
.miniShot:hover{
  transform:translateY(-3px);
  border-color:rgba(255,58,167,.35);
  box-shadow:0 18px 40px rgba(11,13,18,.16);
}
.miniShot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#fff;
  transform:scale(1);
  opacity:1;
  transition:transform .25s ease, opacity .45s ease;
}
.miniShot:hover img{transform:scale(1.05)}
.miniShot:active{transform:translateY(-1px) scale(.99)}
.miniShot:focus-visible{outline:3px solid rgba(255,58,167,.35); outline-offset:3px}
.miniShot .cap{
  position:absolute;
  left:10px;
  bottom:10px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(232,234,240,.9);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

/* Sections */

.case-carousel{
width:100%;
aspect-ratio:4/5;
overflow:hidden;
border-radius:14px;
position:relative;
}

.case-carousel img{
width:100%;
height:100%;
object-fit:cover;
display:none;
}

.case-carousel img.active{
display:block;
}

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:white;
border:none;
width:32px;
height:32px;
border-radius:50%;
cursor:pointer;
}

.prev{ left:10px }
.next{ right:10px }


section{padding:42px 0}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.kicker{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  margin:0 0 10px;
}
h2{
  margin:0;
  font-size:38px;
  letter-spacing:-.035em;
  line-height:1.02;
  max-width:45ch;
}
.sub{
  margin:10px 0 0;
  color:var(--muted);
  /* max-width:72ch; */
  max-width:120ch;
  font-size:15px;
  line-height:1.58;
}

.cards,
.cards4,
.proofGrid,
.solutionList,
.visualPair,
.step3,
.ctaBand,
.solutionGrid,
.splitShowcase,
.showcaseStack{
  display:grid;
  gap:16px;
}
.cards{grid-template-columns:repeat(3, 1fr)}
.cards4{grid-template-columns:repeat(4, 1fr)}
.proofGrid{grid-template-columns:repeat(3, 1fr)}
.solutionGrid{grid-template-columns:1.2fr .8fr}
.solutionList{grid-template-columns:repeat(2, 1fr); margin-top:18px}
.visualPair{grid-template-columns:repeat(2, 1fr)}
.step3{grid-template-columns:repeat(3, 1fr)}
.ctaBand{grid-template-columns:1.15fr .85fr; align-items:stretch}
.splitShowcase{grid-template-columns:.92fr 1.08fr}
.showcaseStack{grid-template-columns:1fr}

.card,
.proofCard,
.schemaCard,
.pairCard,
.ctaCardAlt,
.contact,
.step{
  padding:15px;
}
.card h3,
.proofCard h3,
.schemaCard h3,
.pairBody h3,
.contact h3{margin:0 0 8px}
.card p,
.proofCard p,
.schemaCard p,
.pairBody p,
.contact p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}

.ctaCardAlt,
.contact,
.heroAside{
  background:linear-gradient(180deg, #fff, #fafbff);
}
.ctaCardAlt{
  padding:30px;
  border-radius:28px;
}
.ctaList{display:grid; gap:10px; margin-top:16px}
.ctaList div{font-size:15px; color:#444; line-height:1.45}

.placeholderBox,
.placeholderWide,
.placeholderMini{
  border:1.5px dashed rgba(17,17,17,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(245,245,245,.95));
  border-radius:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:22px;
  color:#555;
  min-height:180px;
}
.placeholderWide{min-height:220px}
.placeholderMini{min-height:150px}
.placeholderBox b,
.placeholderWide b,
.placeholderMini b{
  font-size:14px;
  color:#111;
  margin-bottom:8px;
}
.placeholderBox span,
.placeholderWide span,
.placeholderMini span{
  font-size:13px;
  line-height:1.45;
  max-width:32ch;
}

.eyebrowRow{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px}
.eyebrowPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.12);
  font-size:12px;
  font-weight:700;
  background:#fff;
}
.pairCard{overflow:hidden; padding:0}
.pairImage{
  aspect-ratio:4/5;
  background:#f3f3f3;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pairImage img{width:100%; height:100%; object-fit:cover; display:block}
.pairBody{padding:18px}
.pairBody h3{font-size:18px; line-height:1.15}

.schemaCard{min-height:200px}
.schemaCard .num,
.stepIndex{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  background:rgba(255,0,153,.08);
  border:1px solid rgba(255,0,153,.18);
  font-size:14px;
  font-weight:800;
}
.schemaCard .num{margin-bottom:18px}
.schemaCard h3{font-size:20px; line-height:1.1}

/* Steps */
.steps{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.step{
  position:relative;
  overflow:hidden;
  min-height:220px;
}
.step:after{
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width:200px;
  height:200px;
  background:radial-gradient(circle, rgba(255,58,167,.10), transparent 60%);
  pointer-events:none;
}
.step b{display:flex; align-items:center; gap:10px}
.step3 .step b{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  font-size:20px;
  line-height:1.1;
}
.dot{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-grid;
  place-items:center;
  line-height:1;
  font-weight:700;
  font-size:14px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  color:#111;
  flex:0 0 auto;
}
.step:hover .dot{border-color:#ff6ea8; color:#ff6ea8}
.step span{display:block; margin-top:8px; color:var(--muted); font-size:14px; line-height:1.55}

/* Work */
.workGrid{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px}
.workItem{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  position:relative;
  aspect-ratio:4/5;
}
.workItem img{width:100%; height:100%; object-fit:cover; display:block}
.workItem:after{
  content:"Ver";
  position:absolute;
  right:10px;
  bottom:10px;
  background:rgba(11,13,18,.82);
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .12s ease, transform .12s ease;
}
.workItem:hover:after{opacity:1; transform:translateY(0)}
.workItem:active{transform:scale(.99)}
.workItem:focus-visible{outline:3px solid rgba(255,58,167,.32); outline-offset:4px}

/* Models */
.toolbar{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:14px}
.pill{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  color:var(--muted);
  cursor:pointer;
}
.pill.active{
  border-color:rgba(255,58,167,.45);
  color:var(--text);
  box-shadow:0 8px 18px rgba(255,58,167,.10);
}
.modelGrid{display:grid; grid-template-columns:repeat(4, minmax(0, 1fr)); gap:18px}
.modelCard{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:unset;
}
.modelInfo{padding:16px; display:flex; flex-direction:column; gap:8px}
.modelTop{display:block}
.modelName{font-weight:800; letter-spacing:.02em}
.modelMeta{color:var(--muted); font-size:13px; margin-top:2px}
.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--soft);
}
.modelHeader{display:flex; flex-direction:column; gap:4px}
.modelTitle{font-weight:700; letter-spacing:-0.01em; font-size:18px; line-height:1.15}
.modelText{margin-top:0; display:flex; flex-direction:column; gap:0}
.modelLine{display:flex; flex-direction:column; gap:0}
.modelLabel{display:none}
.modelValue{font-size:14px; line-height:1.45; color:var(--muted)}
.modelShot,
.modelShots{
  position:relative;
  padding:0;
  overflow:hidden;
  background:#fff;
  aspect-ratio:4/5;
}
.modelShot img,
.modelShots img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.modelZoom{cursor:zoom-in; position:relative; transition:transform .18s ease, opacity .18s ease}
.modelZoom:hover{transform:translateY(-2px)}
.modelZoom:focus-visible{outline:2px solid rgba(17,17,17,.35); outline-offset:4px}
.galleryZoomHint{position:absolute;right:12px;bottom:12px;background:rgba(17,17,17,.72);color:#fff;font-size:12px;font-weight:700;padding:6px 10px;border-radius:999px;pointer-events:none}

/* FAQ */
details{padding:14px 16px}
details + details{margin-top:10px}
summary{cursor:pointer; font-weight:800; list-style:none}
summary::-webkit-details-marker{display:none}
details p{color:var(--muted); margin:10px 0 0; font-size:14px; line-height:1.55}

/* Contact */
.contact{
  padding:26px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  align-items:center;
  box-shadow:var(--shadow);
}

.contact .row{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}

.contact .row .btn{
  min-width:220px;
  text-align:center;
}


/* Footer */
footer{
  padding:26px 0 40px;
  color:var(--muted);
  border-top:1px solid rgba(232,234,240,.8);
  margin-top:30px;
}
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
}
.legal a{text-decoration:none; color:var(--muted)}
.legal a:hover{color:var(--text)}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(11,13,18,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:5vh 18px;
  z-index:9999;
}
.lightbox.open{display:flex}
.lbCard{
  width:auto;
  max-width:min(90vw, 720px);
  max-height:90vh;
  background:transparent;
  border-radius:18px;
  overflow:hidden;
  border:0;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  position:relative;
}
.lbCard img{
  width:auto;
  max-width:100%;
  max-height:90vh;
  height:auto;
  display:block;
  background:transparent;
  object-fit:contain;
}
.lbClose{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(232,234,240,.9);
  background:rgba(255,255,255,.94);
  cursor:pointer;
  font-weight:900;
  font-size:24px;
  line-height:1;
}

.anchorHide{display:none}

/* Responsive */
@media (max-width: 1100px){
  .cards4,
  .proofGrid,
  .step3{grid-template-columns:repeat(2, 1fr)}
  .splitShowcase,
  .solutionGrid,
  .ctaBand{grid-template-columns:1fr}
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .cards,
  .steps,
  .pricingGrid,
  .modelGrid,
  .contact,
  .solutionList,
  .visualPair,
  .cards4,
  .proofGrid,
  .step3,
  .heroKpi,
  .stats{grid-template-columns:1fr}
  .workGrid{grid-template-columns:repeat(2, 1fr)}
  .contact{grid-template-columns:1fr}
  .contact .row{justify-content:flex-start}
  .navLinks{display:none}
  .burger{display:block}
  .mobileMenu.show{display:block}
  .h1{font-size:40px; max-width:12ch}
  h2{font-size:32px; max-width:unset}
  .modelGrid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .modelCard{grid-template-columns:1fr}
  .modelInfo{height:auto}
  .modelShot,
  .modelShots{min-height:unset}
}

@media (max-width: 640px){
  .hero{padding:28px 0 16px}
  section{padding:30px 0}
  .heroCard,
  .heroAside,
  .contact,
  .ctaCardAlt,
  .card,
  .proofCard,
  .schemaCard,
  .step,
  details{padding:18px}
  .h1{font-size:34px}
  h2{font-size:28px}
  .lead{font-size:15px}
  .btn{width:100%}
  .ctaRow{align-items:stretch}
  .wrap{padding:0 14px}
}
