/* =========================================================
   RG Soluciones — Interior pages shared styles
   (links AFTER styles.css + home.css)
   ========================================================= */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--ink-2); font-weight: 500; }

/* ---------- Interior page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 55%; height: 90%;
  background: radial-gradient(60% 60% at 60% 40%, rgba(31,167,220,.20) 0%, transparent 62%);
  filter: blur(46px);
  pointer-events: none;
  animation: floatGlow 16s ease-in-out infinite;
}
[data-theme="dark"] .page-hero::before { background: radial-gradient(60% 60% at 60% 40%, rgba(31,167,220,.28) 0%, transparent 62%); }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.page-hero.solo .page-hero-grid { grid-template-columns: 1fr; max-width: 60ch; }
.page-hero h1 { margin-top: 18px; }
.page-hero h1 .accent {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--navy) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 400;
}
.page-hero .lead {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--ink-2);
  max-width: 54ch;
  margin: 20px 0 32px;
}
.page-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* mini-stats row */
.mini-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 30px;
  border-top: 1px solid var(--line);
}
.mini-stats .ms .n {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.9rem; letter-spacing: -0.04em; line-height: 1; color: var(--ink);
}
.mini-stats .ms .n em { color: var(--cyan); font-style: normal; }
.mini-stats .ms .l {
  display: block; margin-top: 8px; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Generic hero visual stage ---------- */
.visual-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  perspective: 1500px;
  perspective-origin: 50% 40%;
}
.visual-stage .floor {
  position: absolute; left: 8%; right: 8%; bottom: 10%; height: 8%;
  background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,.18) 0%, transparent 70%);
  filter: blur(8px);
}
[data-theme="dark"] .visual-stage .floor { background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,.6) 0%, transparent 70%); }

/* Big single premium card (reused, with finish variants) */
.show-card {
  position: absolute;
  left: 50%; top: 50%;
  width: 74%;
  aspect-ratio: 1.585 / 1;
  border-radius: 20px;
  transform: translate(-50%, -50%) rotate(-9deg);
  overflow: hidden;
  z-index: 2;
  transform-style: preserve-3d;
  box-shadow: 0 40px 90px rgba(20,33,90,.34), inset 0 0 0 1px rgba(255,255,255,.18);
  background:
    radial-gradient(120% 90% at 80% 0%, #38BEF0 0%, transparent 52%),
    radial-gradient(120% 100% at 20% 100%, #2A3F8F 0%, transparent 58%),
    linear-gradient(135deg, #0B1238 0%, #14215A 50%, #1E2E6E 100%);
  animation: floatShow 8s ease-in-out infinite;
}
/* Keep floating tags inside the clipped stage */
.visual-stage .float-tag.t1 { top: 10%; left: 4%; }
.visual-stage .float-tag.t2 { bottom: 12%; right: 4%; }

/* Float that preserves the card's centering transform */
@keyframes floatShow {
  0%, 100% { transform: translate(-50%, -50%) rotate(-9deg) translateY(0); }
  50%      { transform: translate(-50%, -50%) rotate(-8deg) translateY(-14px); }
}
@keyframes floatShowBack {
  0%, 100% { transform: translate(-30%, -34%) rotate(6deg) scale(.92) translateY(0); }
  50%      { transform: translate(-30%, -34%) rotate(7deg) scale(.92) translateY(-10px); }
}
.show-card .holo {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255,80,150,.22) 38%, rgba(80,220,255,.28) 46%, rgba(180,255,120,.2) 54%, transparent 64%);
  mix-blend-mode: screen; opacity: .85;
  animation: holoShift 7s ease-in-out infinite;
}
.show-card .shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.32) 50%, transparent 70%);
  mix-blend-mode: overlay; opacity: .6;
  animation: shineMove 6s ease-in-out infinite;
}
.show-card .logo-block { position: absolute; top: 22px; left: 26px; display:flex; align-items:center; gap:10px; color:#fff; }
.show-card .logo-mark { width: 34px; height: 34px; border-radius: 50%; background: conic-gradient(from -30deg, #38BEF0 0deg, #1FA7DC 70deg, transparent 90deg, transparent 270deg, #38BEF0 290deg, #1FA7DC 360deg); position: relative; }
.show-card .logo-mark::after { content:''; position:absolute; inset:5px; background:#14215A; border-radius:50%; }
.show-card .logo-mark::before { content:'RG'; position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-size:10px; font-weight:700; z-index:2; }
.show-card .brand-txt { font-family: var(--font-display); font-weight: 600; font-size: 13px; }
.show-card .chip {
  position: absolute; left: 26px; top: 40%;
  width: 46px; height: 36px; border-radius: 6px;
  background: linear-gradient(135deg, #E8C76B 0%, #C49A2F 40%, #F4DC8A 70%, #B88A1F 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}
.show-card .chip::before, .show-card .chip::after { content:''; position:absolute; left:0; right:0; height:1px; background:rgba(0,0,0,.35); }
.show-card .chip::before { top: 33%; } .show-card .chip::after { top: 66%; }
.show-card .emboss {
  position: absolute; left: 26px; bottom: 46px;
  font-family: 'Courier New', monospace; font-size: 17px; letter-spacing: .12em; font-weight: 700;
  color: rgba(255,255,255,.96);
  text-shadow: 0 1px 0 rgba(255,255,255,.35), 0 -1px 0 rgba(0,0,0,.5), 0 4px 10px rgba(0,0,0,.4);
}
.show-card .holder { position: absolute; left: 26px; bottom: 18px; color: rgba(255,255,255,.78); font-size: 9px; letter-spacing:.16em; text-transform: uppercase; }
.show-card .holder strong { display:block; color:#fff; font-size: 12px; letter-spacing:.02em; margin-top: 2px; text-transform:none; font-family: var(--font-display); font-weight: 500; }
.show-card .contactless { position: absolute; right: 24px; top: 50%; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.7); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(-45deg); }
.show-card .contactless::before, .show-card .contactless::after { content:''; position:absolute; border: 2px solid rgba(255,255,255,.45); border-left-color: transparent; border-bottom-color: transparent; border-radius:50%; }
.show-card .contactless::before { inset:-6px; } .show-card .contactless::after { inset:-12px; border-color: rgba(255,255,255,.28); border-left-color: transparent; border-bottom-color: transparent; }

/* secondary floating card behind */
.show-card.back {
  width: 64%;
  transform: translate(-30%, -34%) rotate(6deg) scale(.92);
  z-index: 0; opacity: .98;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(56,190,240,.18) 0%, transparent 55%),
    linear-gradient(135deg, #FAFBFE 0%, #E9EEF7 60%, #D7DFEE 100%);
  box-shadow: 0 30px 70px rgba(20,33,90,.22), inset 0 0 0 1px rgba(255,255,255,.6);
  animation: floatShowBack 9s ease-in-out -3s infinite;
}
.show-card.back .holder { color: rgba(20,33,90,.55); }
.show-card.back .holder strong { color: #14215A; }
.show-card.back .brand-txt { color: #14215A; }
.show-card.back .emboss {
  color: rgba(20,33,90,.85);
  text-shadow: 0 1px 0 rgba(255,255,255,.7), 0 -1px 0 rgba(0,0,0,.12);
}

/* ---------- Section: finishes / features grid ---------- */
.feature-band { background: var(--bg-2); border-block: 1px solid var(--line); }
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.finish {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.finish:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.finish .ic {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(31,167,220,.16), rgba(30,46,110,.10));
  color: var(--cyan);
  margin-bottom: 20px;
}
.finish .ic svg { width: 24px; height: 24px; }
.finish h3 { font-size: 1.18rem; margin-bottom: 8px; }
.finish p { font-size: .96rem; margin: 0; color: var(--ink-2); }

/* ---------- Use cases ---------- */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.use {
  position: relative;
  padding: 26px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.use:hover { transform: translateY(-4px); border-color: var(--cyan); }
.use .tag { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); font-weight: 600; margin-bottom: 6px; }
.use h4 { font-size: 1.1rem; margin: 0; }
.use p { font-size: .9rem; color: var(--muted); margin: 6px 0 0; }
.use .blob {
  position: absolute; top: -30%; right: -20%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,167,220,.18) 0%, transparent 70%);
}

/* ---------- Specs ---------- */
.spec-band { position: relative; }
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}
.spec-row {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row dt { color: var(--ink-2); font-weight: 500; }
.spec-row dd { margin: 0; color: var(--ink); font-weight: 600; font-family: var(--font-display); text-align: right; }

/* ---------- Split content blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 100px);
  align-items: center;
}
.split.rev .split-media { order: 2; }
.split-media {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-content {
  position: relative;
  z-index: 1;
}
.split-content h2 .accent {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--navy) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 400;
}
.split-content .lead { color: var(--ink-2); font-size: 1.08rem; margin: 16px 0 28px; }
.tick-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 16px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; }
.tick-list .ic { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--cyan); color: #fff; font-size: 13px; margin-top: 2px; }
.tick-list h4 { margin: 0; font-size: 1.02rem; }
.tick-list .desc { display: block; color: var(--muted); font-size: .92rem; margin-top: 3px; }

/* ---------- Accordion / FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display); font-weight: 500; font-size: 1.2rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.acc-q .plus { flex: 0 0 28px; width: 28px; height: 28px; position: relative; }
.acc-q .plus::before, .acc-q .plus::after { content:''; position: absolute; left: 50%; top: 50%; background: var(--cyan); transition: transform .35s var(--ease); }
.acc-q .plus::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.acc-q .plus::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.acc-item.open .acc-q .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a-inner { padding: 0 0 26px; color: var(--ink-2); max-width: 70ch; }

/* ---------- Printer model cards ---------- */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.model {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.model:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.model .badge { position: absolute; top: 20px; right: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: 5px 11px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), var(--navy)); color: #fff; }
.model h3 { font-size: 1.4rem; margin-bottom: 6px; }
.model .sub { color: var(--cyan); font-weight: 600; font-size: .9rem; margin-bottom: 14px; }
.model p { font-size: .95rem; margin: 0 0 16px; color: var(--ink-2); }
.model ul { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.model ul li { font-size: .8rem; padding: 5px 11px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-2); }
.model .more { display: inline-flex; gap: 8px; align-items: center; color: var(--cyan); font-weight: 600; font-size: .92rem; transition: gap .3s var(--ease); }
.model:hover .more { gap: 14px; }

/* printer CSS illustration */
.printer-3d {
  align-self: center;
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
}
.printer-3d .body {
  position: relative;
  width: 70%; aspect-ratio: 1.15/1;
  border-radius: 14px;
  background: linear-gradient(180deg, #2A3047 0%, #14172A 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
}
.printer-3d .body::before { content:''; position: absolute; left: 14%; right: 14%; top: 18%; height: 30%; border-radius: 8px; background: linear-gradient(180deg, #0B0F1F 0%, #1A1F38 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.printer-3d .body::after { content:''; position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%); width: 46%; aspect-ratio: 1.585/1; border-radius: 4px; background: linear-gradient(135deg, #38BEF0, #1FA7DC); box-shadow: 0 12px 24px rgba(31,167,220,.45); }
.printer-3d .led { position: absolute; left: 22%; top: 26%; width: 7px; height: 7px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 4px rgba(34,197,94,.2); animation: pulse 2s infinite; }

/* Real product photo frame (replaces .printer-3d illustration) */
.printer-photo {
  align-self: center;
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  border-radius: 16px;
  background: radial-gradient(120% 100% at 50% 0%, #ffffff 0%, #eef2f9 100%);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
  padding: 9%;
}
.printer-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(20,33,90,.20));
}

/* Hero product photo / composite — natural proportions, responsive */
.hero-photo { display: flex; align-items: center; justify-content: center; }
.hero-photo img {
  width: 100%; max-width: 580px; height: auto;
  filter: drop-shadow(0 24px 40px rgba(20,33,90,.22));
}

/* ---------- Accessories grid (CSS illustrations) ---------- */
.acc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.acc {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.acc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.acc .acc-vis { position: relative; height: 200px; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); overflow: hidden; display: grid; place-items: center; }
.acc .acc-body { padding: 22px 24px 26px; }
.acc h3 { font-size: 1.2rem; margin-bottom: 6px; }
.acc p { font-size: .92rem; margin: 0; color: var(--ink-2); }

/* lanyard illustration */
.ill-lanyard { position: relative; width: 56px; height: 150px; }
.ill-lanyard::before { content:''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 26px; height: 110px; background: repeating-linear-gradient(0deg, #1E2E6E 0 14px, #2A3F8F 14px 28px); border-radius: 4px; }
.ill-lanyard::after { content:''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 50px; aspect-ratio: 1.585/1; background: linear-gradient(135deg, #FAFBFE, #E9EEF7); border-radius: 5px; box-shadow: 0 10px 20px rgba(20,33,90,.25); }
/* funda illustration */
.ill-funda { position: relative; width: 96px; aspect-ratio: 1.585/1; border-radius: 8px; background: linear-gradient(135deg, rgba(200,210,224,.5), rgba(255,255,255,.2)); border: 1.5px solid rgba(31,167,220,.5); box-shadow: inset 0 0 16px rgba(31,167,220,.18), 0 10px 22px rgba(20,33,90,.18); }
.ill-funda::before { content:''; position: absolute; inset: 10px; border-radius: 4px; background: linear-gradient(135deg, #1E2E6E, #14215A); }
.ill-funda::after { content:''; position: absolute; left: 50%; top: -7px; transform: translateX(-50%); width: 26px; height: 8px; border-radius: 4px 4px 0 0; background: rgba(31,167,220,.6); }
/* yoyo illustration */
.ill-yoyo { position: relative; width: 70px; height: 70px; }
.ill-yoyo::before { content:''; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #38BEF0, #1E2E6E); box-shadow: 0 12px 24px rgba(20,33,90,.3), inset 0 0 0 4px rgba(255,255,255,.15); }
.ill-yoyo::after { content:''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--surface); }
.ill-yoyo .cord { position: absolute; left: 50%; top: -34px; transform: translateX(-50%); width: 3px; height: 38px; background: var(--ink-2); opacity: .5; }
/* clip illustration */
.ill-clip { position: relative; width: 60px; height: 130px; }
.ill-clip::before { content:''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 22px; height: 46px; border: 3px solid var(--muted); border-radius: 6px; }
.ill-clip::after { content:''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 52px; aspect-ratio: 1.585/1; background: linear-gradient(135deg, #1E2E6E, #2A3F8F); border-radius: 5px; box-shadow: 0 10px 20px rgba(20,33,90,.25); }

/* ---------- Design gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 18px; }
.gcard { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .3s var(--ease); }
.gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gcard .cap { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; }
.gcard .cap .t { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.gcard .cap .s { font-size: .8rem; opacity: .8; }
.gcard::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5) 100%); }
.g-wide { grid-column: span 3; }
.g-tall { grid-row: span 2; }
.g-sq { grid-column: span 2; }
.g-1 { background: radial-gradient(80% 60% at 30% 20%, #38BEF0 0%, transparent 60%), linear-gradient(135deg, #14215A, #1E2E6E); }
.g-2 { background: linear-gradient(135deg, #FF6B6B 0%, #1FA7DC 60%, #1E2E6E 100%); }
.g-3 { background: radial-gradient(70% 70% at 70% 30%, #F4DC8A 0%, transparent 60%), linear-gradient(135deg, #0B1238, #14215A); }
.g-4 { background: linear-gradient(135deg, #1FA7DC, #38BEF0); }
.g-5 { background: radial-gradient(60% 60% at 40% 40%, rgba(255,255,255,.5) 0%, transparent 60%), linear-gradient(135deg, #2A3F8F, #1E2E6E); }
.g-6 { background: linear-gradient(135deg, #14215A 0%, #2A3F8F 50%, #38BEF0 100%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info .ci-block { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-block .ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(31,167,220,.16), rgba(30,46,110,.1)); color: var(--cyan); }
.contact-info .ci-block .ic svg { width: 22px; height: 22px; }
.contact-info .ci-block h4 { margin: 0 0 4px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: var(--font-sans); font-weight: 700; }
.contact-info .ci-block a, .contact-info .ci-block p { font-size: 1.12rem; color: var(--ink); font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; margin: 0; transition: color .2s var(--ease); }
.contact-info .ci-block a:hover { color: var(--cyan); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: var(--glow); }
.field textarea { resize: vertical; min-height: 120px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); max-width: 38ch; }
.consent input { margin-top: 3px; accent-color: var(--cyan); }
.contact-form .btn-cyan { width: 100%; justify-content: center; margin-top: 6px; font-size: 1.05rem; padding: 16px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--cyan), var(--navy)); color: #fff; font-size: 30px; }

/* map */
.map-wrap { margin-top: 28px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.2); }

/* ---------- Pill row / chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip-pill { font-size: .85rem; padding: 8px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .visual-stage { max-width: 480px; margin: 0 auto; width: 100%; }
  .finish-grid { grid-template-columns: 1fr 1fr; }
  .uses-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr; gap: 0; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.rev .split-media { order: 0; }
  .models { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .finish-grid, .uses-grid, .acc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .model { grid-template-columns: 1fr; }
  .printer-3d { max-width: 240px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide, .g-sq { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}
