/* ==========================================================================
   VARSH GLOBAL TECHNOLOGIES — Design System
   Typefaces : Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------ */
:root{
  --ink:        #0A1628;   /* near-black navy — dark sections, footer */
  --navy:       #0F2A4A;   /* primary brand blue */
  --navy-2:     #123563;
  --blue:       #1D5FD6;   /* action blue */
  --blue-dark:  #164AAD;
  --cyan:       #12C7D6;   /* brand accent from mark */
  --signal:     #FF6A1A;   /* warm signal accent — CTAs, tags (used sparingly) */
  --signal-dark:#E4590F;
  --paper:      #F3F6FB;   /* light section background */
  --paper-2:    #EAF0FA;
  --white:      #FFFFFF;
  --ink-soft:   #48566E;   /* body copy on light bg */
  --ink-faint:  #7E8CA3;
  --line:       #DCE4F0;   /* hairline borders on light */
  --line-dark:  rgba(255,255,255,.14);

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --container: 1240px;
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 18px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset --------------------------------------------------------------*/
*,*::before,*::after{ box-sizing:border-box; }
*{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
body{
  font-family:var(--font-body);
  color:var(--ink-soft);
  background:var(--white);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,textarea,select{ font:inherit; color:inherit; }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); line-height:1.15; font-weight:700; letter-spacing:-.01em; }
:focus-visible{ outline:2px solid var(--blue); outline-offset:3px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
@media (max-width:640px){ .container{ padding:0 18px; } }

/* ---- Type scale ----------------------------------------------------------*/
h1{ font-size:clamp(34px,5.4vw,60px); }
h2{ font-size:clamp(26px,3.6vw,40px); }
h3{ font-size:clamp(19px,2.2vw,23px); }
p{ max-width:62ch; }
.lede{ font-size:clamp(16px,1.6vw,19px); color:var(--ink-soft); max-width:56ch; }

.mono-tag{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.03em;
  color:var(--blue);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.mono-tag::before{ content:''; width:16px; height:1px; background:var(--blue); display:inline-block; }

/* ---- Corner-bracket frame motif -------------------------------------------
   Used around imagery — echoes equipment / spec-sheet registration marks.  */
.bracket-frame{ position:relative; }
.bracket-frame::before,
.bracket-frame::after{
  content:''; position:absolute; width:22px; height:22px;
  border:2px solid var(--cyan); pointer-events:none;
}
.bracket-frame::before{ top:-10px; left:-10px; border-right:none; border-bottom:none; }
.bracket-frame::after{ bottom:-10px; right:-10px; border-left:none; border-top:none; }

/* ---- Buttons ---------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px; border-radius:4px;
  font-family:var(--font-body); font-weight:600; font-size:15px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap; border:1.5px solid transparent;
}
.btn-primary{ background:var(--signal); color:var(--white); position:relative; overflow:hidden; box-shadow:0 0 0 0 rgba(255,106,26,.5); animation:ctaPulse 2.6s ease-in-out infinite; }
.btn-primary:hover{ background:var(--signal-dark); transform:translateY(-2px); box-shadow:0 12px 26px rgba(255,106,26,.32); }
@keyframes ctaPulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(255,106,26,.45); }
  50%{ box-shadow:0 0 0 9px rgba(255,106,26,0); }
}
@media (prefers-reduced-motion: reduce){ .btn-primary{ animation:none; } }
.btn-secondary{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-secondary:hover{ border-color:var(--navy); background:var(--paper); transform:translateY(-2px); }
.btn-ghost-light{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.35); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.1); border-color:#fff; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none !important; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(10,22,40,.0);
  border-bottom:1px solid transparent;
  transition:background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  padding:18px 0;
}
.site-header.is-scrolled{
  background:rgba(10,22,40,.92);
  backdrop-filter:blur(10px);
  border-bottom-color:rgba(255,255,255,.08);
  padding:12px 0;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:38px; width:auto; }
.brand-text{ font-family:var(--font-display); font-weight:700; font-size:16.5px; color:#fff; line-height:1.15; }
.brand-text span{ display:block; font-family:var(--font-mono); font-size:10px; font-weight:400; color:var(--cyan); letter-spacing:.12em; margin-top:2px; }

.nav-main{ display:flex; align-items:center; gap:36px; }
.nav-main a{
  color:rgba(255,255,255,.82); font-size:14.5px; font-weight:500; position:relative; padding:6px 0;
}
.nav-main a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:2px; background:var(--cyan);
  transition:right .3s var(--ease);
}
.nav-main a:hover{ color:#fff; }
.nav-main a:hover::after, .nav-main a.is-active::after{ right:0; }
.nav-main a.is-active{ color:#fff; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.header-actions .btn{ padding:11px 20px; font-size:14px; }
.call-chip{ display:flex; align-items:center; gap:8px; color:#fff; font-family:var(--font-mono); font-size:13.5px; }
.call-chip svg{ width:16px; height:16px; stroke:var(--cyan); flex-shrink:0; }

.nav-toggle{ display:none; width:40px; height:40px; align-items:center; justify-content:center; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{ content:''; display:block; width:22px; height:2px; background:#fff; transition:.3s var(--ease); }
.nav-toggle::before{ transform:translateY(-7px); }
.nav-toggle span{ }
.nav-toggle::after{ transform:translateY(5px); }
.nav-toggle.is-open{ }
.nav-toggle.is-open::before{ transform:translateY(0) rotate(45deg); }
.nav-toggle.is-open::after{ transform:translateY(-2px) rotate(-45deg); }
.nav-toggle.is-open span{ opacity:0; }

@media (max-width:980px){
  .nav-main{
    position:fixed; inset:0 0 0 30%; top:0; background:var(--ink); flex-direction:column;
    justify-content:flex-start; align-items:flex-start; padding:100px 32px 40px; gap:8px;
    transform:translateX(100%); transition:transform .4s var(--ease); z-index:150;
    border-left:1px solid rgba(255,255,255,.08);
  }
  .nav-main.is-open{ transform:translateX(0); }
  .nav-main a{ width:100%; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:17px; }
  .call-chip{ display:none; }
  .nav-toggle{ display:flex; flex-direction:column; gap:0; z-index:160; }
  .header-actions .btn-secondary{ display:none; }
}
@media (max-width:480px){
  .nav-main{ inset:0 0 0 18%; }
  .brand-text span{ display:none; }
  .brand img{ height:32px; }
  .brand-text{ font-size:14.5px; }
  .header-actions{ gap:10px; }
  .header-actions .btn{ padding:9px 14px; font-size:13px; }
}
.nav-scrim{
  position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:140; opacity:0; pointer-events:none; transition:opacity .35s var(--ease);
}
.nav-scrim.is-open{ opacity:1; pointer-events:auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; background:var(--ink); color:#fff; overflow:hidden;
  padding:168px 0 100px;
}
.hero-grid-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 70% 60% at 30% 30%, #000 40%, transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 30% 30%, #000 40%, transparent 100%);
}
.hero-glow{
  position:absolute; top:-20%; right:-10%; width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle, rgba(18,199,214,.22) 0%, rgba(29,95,214,.12) 45%, transparent 72%);
  filter:blur(10px); pointer-events:none;
}
.hero-glow-2{
  position:absolute; bottom:-15%; left:-8%; width:460px; height:460px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,106,26,.16) 0%, rgba(29,95,214,.08) 50%, transparent 72%);
  filter:blur(14px); pointer-events:none; animation:blobDrift2 18s ease-in-out infinite;
}
.hero-glow-3{
  position:absolute; top:35%; left:38%; width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle, rgba(18,199,214,.14) 0%, transparent 70%);
  filter:blur(16px); pointer-events:none; animation:blobDrift3 11s ease-in-out infinite;
}
@keyframes blobDrift2{
  0%,100%{ transform:translate(0,0) scale(1); }
  40%{ transform:translate(50px,-30px) scale(1.12); }
  70%{ transform:translate(-20px,20px) scale(.9); }
}
@keyframes blobDrift3{
  0%,100%{ transform:translate(0,0) scale(1); opacity:.7; }
  50%{ transform:translate(-40px,-25px) scale(1.2); opacity:1; }
}

/* Ambient floating particles — small drifting dots, purely decorative motion
   that reads as "alive" without needing any user interaction */
.particle-field{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle{
  position:absolute; border-radius:50%; background:var(--cyan); opacity:.5;
  animation:particleFloat linear infinite;
}
@keyframes particleFloat{
  0%{ transform:translateY(0) translateX(0); opacity:0; }
  10%{ opacity:.6; }
  90%{ opacity:.4; }
  100%{ transform:translateY(-140px) translateX(20px); opacity:0; }
}
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero-copy h1{ color:#fff; margin:22px 0 22px; }
.hero-copy h1 em{ font-style:normal; color:var(--cyan); }
.hero-copy .lede{ color:rgba(255,255,255,.72); margin-bottom:34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:52px; }

.hero-stats{ display:grid; grid-template-columns:repeat(4,auto); gap:32px; border-top:1px solid rgba(255,255,255,.14); padding-top:28px; }
.hero-stat .num{ font-family:var(--font-mono); font-size:clamp(22px,2.6vw,30px); font-weight:600; color:#fff; }
.hero-stat .num span{ color:var(--cyan); }
.hero-stat .lbl{ font-size:12px; color:rgba(255,255,255,.55); margin-top:4px; max-width:14ch; }

.hero-visual{ position:relative; }
.hero-visual-frame{ position:relative; background:linear-gradient(155deg,#0F2A4A,#0A1830); border-radius:var(--radius-l); padding:34px; }
.hero-visual-frame img{ border-radius:8px; }
.hero-floating-tag{
  position:absolute; background:rgba(10,22,40,.9); border:1px solid rgba(18,199,214,.4);
  padding:9px 14px; border-radius:8px; font-family:var(--font-mono); font-size:12px; color:#fff;
  backdrop-filter:blur(6px); display:flex; align-items:center; gap:8px; animation:floatTag 5s ease-in-out infinite;
}
.hero-floating-tag .dot{ width:6px; height:6px; border-radius:50%; background:var(--cyan); box-shadow:0 0 8px var(--cyan); }
.hero-floating-tag.t1{ top:8%; left:-6%; animation-delay:0s; }
.hero-floating-tag.t2{ bottom:12%; right:-6%; animation-delay:1.4s; }
@keyframes floatTag{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

@media (max-width:980px){
  .hero{ padding:150px 0 70px; }
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:420px; margin:0 auto 20px; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); row-gap:22px; }
  .hero-floating-tag{ display:none; }
}
@media (max-width:640px){
  /* keep hero copy clear of the fixed WhatsApp / back-to-top stack */
  .hero-copy{ padding-right:64px; }
}

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
section{ padding:104px 0; }
@media (max-width:768px){ section{ padding:68px 0; } }
.section-light{ background:var(--white); }
.section-paper{ background:var(--paper); }
.section-dark{ background:var(--ink); color:rgba(255,255,255,.72); }
.section-dark h2, .section-dark h3{ color:#fff; }
.section-navy{ background:linear-gradient(160deg,var(--navy),#0B2140); color:rgba(255,255,255,.75); }
.section-navy h2, .section-navy h3{ color:#fff; }

.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:56px; }
.section-head .htext{ max-width:640px; }
.section-head h2{ margin-top:14px; }
.section-head .lede{ margin-top:14px; }
@media (max-width:768px){ .section-head{ flex-direction:column; align-items:flex-start; gap:18px; margin-bottom:40px; } }

.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.03s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.09s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.15s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.21s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.27s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.33s; }

/* ==========================================================================
   ABOUT SNAPSHOT / SPLIT SECTIONS
   ========================================================================== */
.split{ display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center; }
.split.reverse{ grid-template-columns:1.1fr .9fr; }
.split.reverse .split-media{ order:2; }
@media (max-width:900px){
  .split, .split.reverse{ grid-template-columns:1fr; gap:36px; }
  .split.reverse .split-media{ order:0; }
}
.split-media img{ border-radius:var(--radius-m); }

.check-list{ margin-top:24px; display:grid; gap:14px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--ink-soft); }
.check-list li svg{ flex-shrink:0; width:18px; height:18px; margin-top:2px; stroke:var(--blue); }

/* ==========================================================================
   SERVICE / FEATURE CARDS  (flat bordered — not the SaaS shadow-card kit)
   ========================================================================== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); perspective:1200px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); perspective:1200px; }
@media (max-width:860px){ .grid-3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }

.feature-cell{
  background:var(--white); padding:36px 32px; transition:background .3s var(--ease);
  position:relative;
}
.feature-cell:hover{ background:var(--paper); }
.feature-cell .ficon{
  width:46px; height:46px; border-radius:var(--radius-s); background:var(--paper-2);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.feature-cell .ficon svg{ width:22px; height:22px; stroke:var(--blue); }
.feature-cell h3{ margin-bottom:10px; font-size:18px; }
.feature-cell p{ font-size:14.5px; margin:0; }
.feature-cell .ftags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; }
.ftag{ font-family:var(--font-mono); font-size:11px; color:var(--blue); background:var(--paper-2); padding:4px 9px; border-radius:20px; }

/* ==========================================================================
   PRODUCT CARDS  (spec-tag / inventory-label treatment)
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; perspective:1200px; }
@media (max-width:980px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .product-grid{ grid-template-columns:1fr; } }

.product-card{
  border:1px solid var(--line); border-radius:var(--radius-m); background:var(--white); overflow:hidden;
  transition:border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.product-card:hover{ border-color:var(--blue); transform:translateY(-6px); box-shadow:0 20px 40px rgba(15,42,74,.1); }
.product-media{ position:relative; background:var(--paper); padding:26px; display:flex; align-items:center; justify-content:center; height:230px; }
.product-media img{ max-height:180px; width:auto; margin:auto; mix-blend-mode:multiply; }
.product-category{
  position:absolute; top:14px; left:14px; font-family:var(--font-mono); font-size:10.5px; letter-spacing:.04em;
  background:var(--ink); color:#fff; padding:4px 9px; border-radius:3px; text-transform:uppercase;
}
.product-body{ padding:22px 24px 26px; display:flex; flex-direction:column; gap:12px; flex:1; }
.product-body h3{ font-size:16.5px; }
.product-tagline{ font-size:13.5px; color:var(--ink-faint); margin-top:-6px; }
.spec-row{ display:grid; grid-template-columns:1fr 1fr; gap:6px 14px; margin-top:4px; }
.spec-row div{ font-size:12.5px; color:var(--ink-soft); border-top:1px solid var(--line); padding-top:8px; }
.spec-row div b{ display:block; font-family:var(--font-mono); font-size:13px; color:var(--ink); }
.product-body .btn{ margin-top:auto; padding:11px 18px; font-size:13.5px; }

.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.filter-chip{
  font-family:var(--font-mono); font-size:12.5px; padding:9px 18px; border-radius:30px; border:1px solid var(--line);
  color:var(--ink-soft); transition:.25s var(--ease);
}
.filter-chip:hover{ border-color:var(--blue); color:var(--blue); }
.filter-chip.is-active{ background:var(--ink); border-color:var(--ink); color:#fff; }

/* ==========================================================================
   TIMELINE (real sequence → numbered markers legitimate here)
   ========================================================================== */
.timeline{ position:relative; margin-top:20px; }
.timeline::before{ content:''; position:absolute; left:19px; top:6px; bottom:6px; width:1px; background:var(--line); }
.timeline-item{ position:relative; padding:0 0 44px 60px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-marker{
  position:absolute; left:0; top:0; width:40px; height:40px; border-radius:50%;
  background:var(--ink); color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:11px; border:3px solid var(--white); box-shadow:0 0 0 1px var(--line);
}
.timeline-item.is-current .timeline-marker{ background:var(--signal); }
.timeline-year{ font-family:var(--font-mono); color:var(--blue); font-size:13px; margin-bottom:6px; display:block; }
.timeline-item h3{ font-size:18px; margin-bottom:8px; }
.timeline-item p{ font-size:14.5px; }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; }
.stats-strip .stat{ padding:34px 24px; text-align:left; border-left:1px solid var(--line); }
.stats-strip .stat:first-child{ border-left:none; }
.stats-strip .num{ font-family:var(--font-mono); font-size:clamp(28px,3.4vw,40px); font-weight:600; color:var(--ink); }
.stats-strip .num span{ color:var(--signal); }
.stats-strip .lbl{ font-size:13px; color:var(--ink-faint); margin-top:6px; }
@media (max-width:760px){ .stats-strip{ grid-template-columns:repeat(2,1fr); } .stats-strip .stat:nth-child(3){ border-left:none; } }

/* ==========================================================================
   PROCESS STEPS (sequence)
   ========================================================================== */
.process-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; counter-reset:step; }
@media (max-width:900px){ .process-row{ grid-template-columns:repeat(2,1fr); gap:32px 24px; } }
@media (max-width:560px){ .process-row{ grid-template-columns:1fr; } }
.process-step{ position:relative; padding-right:24px; }
.process-step:not(:last-child)::after{
  content:''; position:absolute; top:18px; right:-2px; width:calc(100% - 60px); height:1px; background:var(--line);
  display:block;
}
@media (max-width:900px){ .process-step:not(:last-child)::after{ display:none; } }
.process-index{ font-family:var(--font-mono); font-size:13px; color:var(--blue); border:1px solid var(--line); width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.process-step h3{ font-size:16.5px; margin-bottom:8px; }
.process-step p{ font-size:14px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-wrap{ position:relative; z-index:2; max-width:760px; }
.testi-slide{ display:none; }
.testi-slide.is-active{ display:block; animation:fadeIn .5s var(--ease); }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }
.testi-quote-mark{ font-family:var(--font-display); font-size:64px; color:var(--cyan); line-height:1; margin-bottom:8px; }
.testi-slide p{ font-size:clamp(18px,2vw,22px); color:#fff; max-width:none; font-family:var(--font-display); font-weight:500; line-height:1.5; }
.testi-person{ margin-top:26px; display:flex; align-items:center; gap:14px; }
.testi-avatar{ width:46px; height:46px; border-radius:50%; background:var(--blue); display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); color:#fff; font-size:15px; }
.testi-name{ color:#fff; font-weight:600; font-size:14.5px; }
.testi-role{ color:rgba(255,255,255,.55); font-size:13px; }
.testi-nav{ display:flex; gap:10px; margin-top:36px; }
.testi-dot{ width:28px; height:3px; background:rgba(255,255,255,.25); border-radius:2px; transition:.3s var(--ease); }
.testi-dot.is-active{ background:var(--cyan); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; padding:24px 0; display:flex; justify-content:space-between; align-items:center;
  font-family:var(--font-display); font-weight:600; font-size:16.5px; color:var(--ink); gap:20px;
}
.faq-q .plus{ position:relative; width:20px; height:20px; flex-shrink:0; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--ink); transition:transform .3s var(--ease), opacity .3s var(--ease); }
.faq-q .plus::before{ left:0; top:9px; width:20px; height:2px; }
.faq-q .plus::after{ left:9px; top:0; width:2px; height:20px; }
.faq-item.is-open .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.faq-a p{ padding-bottom:24px; font-size:14.5px; max-width:70ch; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-l); padding:44px; }
@media (max-width:640px){ .form-card{ padding:26px; } }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13px; font-weight:600; color:var(--ink); }
.field label .req{ color:var(--signal); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--line); border-radius:var(--radius-s); padding:13px 15px; font-size:14.5px;
  background:var(--paper); transition:border-color .25s var(--ease), background .25s var(--ease);
  width:100%;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--blue); background:#fff; }
.field textarea{ resize:vertical; min-height:120px; }
.field-error{ font-size:12.5px; color:#D6304A; min-height:15px; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color:#D6304A; }
.hp-field{ position:absolute; left:-9999px; opacity:0; height:0; width:0; }

.form-msg{ display:none; padding:14px 18px; border-radius:var(--radius-s); font-size:14px; margin-top:20px; align-items:center; gap:10px; }
.form-msg.is-visible{ display:flex; }
.form-msg.success{ background:#E7F7EE; color:#0F7A42; border:1px solid #BEE9D0; }
.form-msg.error{ background:#FDEBEC; color:#C22437; border:1px solid #F5C6CB; }

.btn .spinner{ display:none; width:16px; height:16px; border-radius:50%; border:2px solid rgba(255,255,255,.4); border-top-color:#fff; animation:spin .7s linear infinite; }
.btn.is-loading .spinner{ display:inline-block; }
.btn.is-loading .btn-label{ opacity:.85; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ==========================================================================
   CONTACT INFO CARDS / MAP
   ========================================================================== */
.contact-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-bottom:0; }
@media (max-width:760px){ .contact-cards{ grid-template-columns:1fr; } }
.contact-card{ background:var(--white); padding:30px 28px; display:flex; gap:16px; align-items:flex-start; }
.contact-card .cicon{ width:40px; height:40px; border-radius:50%; background:var(--paper-2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card .cicon svg{ width:18px; height:18px; stroke:var(--blue); }
.contact-card h4{ font-family:var(--font-display); font-size:15px; color:var(--ink); margin-bottom:4px; }
.contact-card p, .contact-card a{ font-size:14px; color:var(--ink-soft); }
.contact-card a:hover{ color:var(--blue); }

.map-embed{ border-radius:var(--radius-m); overflow:hidden; border:1px solid var(--line); height:360px; }
.map-embed iframe{ width:100%; height:100%; border:0; }

.office-tabs{ display:flex; gap:10px; margin-bottom:22px; }
.office-tab{ font-family:var(--font-mono); font-size:12.5px; padding:9px 16px; border:1px solid var(--line); border-radius:30px; color:var(--ink-soft); }
.office-tab.is-active{ background:var(--ink); color:#fff; border-color:var(--ink); }
.office-panel{ display:none; }
.office-panel.is-active{ display:block; animation:fadeIn .4s var(--ease); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{
  background:linear-gradient(135deg,var(--navy),#0B1F3A); border-radius:var(--radius-l); padding:56px;
  display:flex; align-items:center; justify-content:space-between; gap:36px; color:#fff; position:relative; overflow:hidden;
}
.cta-banner::before{
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:40px 40px; mask-image:radial-gradient(ellipse 60% 100% at 100% 50%, #000, transparent);
}
.cta-banner h3{ color:#fff; font-size:clamp(22px,2.6vw,30px); position:relative; z-index:2; max-width:20ch; }
.cta-banner p{ color:rgba(255,255,255,.65); margin-top:8px; position:relative; z-index:2; }
.cta-banner .btn{ position:relative; z-index:2; flex-shrink:0; }
@media (max-width:760px){ .cta-banner{ flex-direction:column; align-items:flex-start; padding:36px 28px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer{ background:var(--ink); color:rgba(255,255,255,.6); padding:80px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand .brand-text{ color:#fff; }
.footer-brand p{ font-size:14px; max-width:34ch; }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{ width:36px; height:36px; border:1px solid rgba(255,255,255,.16); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:.25s var(--ease); }
.footer-social a:hover{ background:var(--cyan); border-color:var(--cyan); }
.footer-social svg{ width:15px; height:15px; stroke:#fff; }
.footer-col h4{ color:#fff; font-family:var(--font-display); font-size:14px; margin-bottom:18px; letter-spacing:.02em; }
.footer-col ul{ display:grid; gap:11px; }
.footer-col a{ font-size:14px; }
.footer-col a:hover{ color:var(--cyan); }
.footer-col .fitem{ display:flex; gap:10px; font-size:14px; align-items:flex-start; }
.footer-col .fitem svg{ width:15px; height:15px; stroke:var(--cyan); margin-top:3px; flex-shrink:0; }
.footer-bottom{ padding:24px 0; display:flex; justify-content:space-between; align-items:center; gap:16px; font-size:12.5px; flex-wrap:wrap; }
.footer-bottom a:hover{ color:#fff; }

/* ==========================================================================
   FLOATING UI — WhatsApp / Back to top
   ========================================================================== */
.float-stack{ position:fixed; right:22px; bottom:22px; z-index:180; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.float-btn{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(10,22,40,.28); transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.float-btn:hover{ transform:translateY(-3px) scale(1.05); }
.float-whatsapp{ background:#25D366; }
.float-whatsapp svg{ width:26px; height:26px; fill:#fff; }
.float-top{ background:var(--ink); opacity:0; pointer-events:none; transform:translateY(10px); }
.float-top.is-visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.float-top svg{ width:18px; height:18px; stroke:#fff; }

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-header{ background:var(--ink); color:#fff; padding:160px 0 64px; position:relative; overflow:hidden; }
.page-header .container{ position:relative; z-index:2; }
.page-header .crumb{ font-family:var(--font-mono); font-size:12.5px; color:var(--cyan); margin-bottom:16px; display:block; }
.page-header h1{ color:#fff; font-size:clamp(30px,4.6vw,48px); }
.page-header p{ color:rgba(255,255,255,.65); margin-top:16px; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-8{ margin-top:8px; } .mt-16{ margin-top:16px; } .mt-24{ margin-top:24px; } .mt-32{ margin-top:32px; } .mt-48{ margin-top:48px; }
.hidden{ display:none !important; }
.eyebrow-plain{ font-size:13px; color:var(--ink-faint); }

/* ==========================================================================
   PREMIUM MOTION LAYER — grain texture, scroll progress, spotlight,
   magnetic buttons, tilt cards, kinetic hero text, infinite marquee
   ========================================================================== */

/* Film-grain texture — adds tactile depth to flat colour fields */
body::before{
  content:''; position:fixed; inset:0; z-index:9000; pointer-events:none;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce){ body::before{ display:none; } }

/* Scroll progress bar */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:300;
  background:linear-gradient(90deg,var(--cyan),var(--blue),var(--signal));
  transition:width .1s linear;
}

/* Cursor spotlight — soft light that tracks the pointer on dark sections */
.spotlight{ position:relative; overflow:hidden; }
.spotlight::after{
  content:''; position:absolute; inset:0; pointer-events:none; z-index:1;
  background:radial-gradient(560px circle at var(--mx,50%) var(--my,20%), rgba(18,199,214,.10), transparent 60%);
  opacity:0; transition:opacity .4s var(--ease);
}
.spotlight:hover::after{ opacity:1; }
.spotlight > .container{ position:relative; z-index:2; }

/* Magnetic buttons — small pointer-following pull, snaps back on leave */
.magnetic{ display:inline-flex; transition:transform .35s cubic-bezier(.2,1,.3,1); will-change:transform; }

/* Tilt cards — subtle 3D perspective tilt following the cursor */
.tilt-parent{ perspective:1200px; }
.tilt, .product-card, .feature-cell{ transition:transform .4s cubic-bezier(.2,1,.3,1), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); transform-style:preserve-3d; will-change:transform; }

/* Kinetic hero heading — words fade/slide up in sequence on load */
.kinetic-word{
  display:inline-block; opacity:0; transform:translateY(100%) rotate(2deg);
  animation:kineticIn .8s cubic-bezier(.2,1,.3,1) forwards;
}
@keyframes kineticIn{ to{ opacity:1; transform:translateY(0) rotate(0); } }
@media (prefers-reduced-motion: reduce){
  .kinetic-word{ animation:none; opacity:1; transform:none; }
}

/* Animated gradient blobs — slow ambient drift, replaces the static glow */
.hero-glow{ animation:blobDrift 14s ease-in-out infinite; }
@keyframes blobDrift{
  0%,100%{ transform:translate(0,0) scale(1); }
  33%{ transform:translate(-40px,30px) scale(1.08); }
  66%{ transform:translate(20px,-20px) scale(.95); }
}
.hero-grid-bg{ animation:gridPan 40s linear infinite; }
@keyframes gridPan{ from{ background-position:0 0; } to{ background-position:64px 64px; } }

/* Infinite marquee strip */
.marquee{ overflow:hidden; position:relative; }
.marquee::before, .marquee::after{
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none;
}
.marquee::before{ left:0; background:linear-gradient(90deg,var(--ink),transparent); }
.marquee::after{ right:0; background:linear-gradient(-90deg,var(--ink),transparent); }
.marquee-track{
  display:flex; gap:32px; width:max-content; animation:marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes marqueeScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* Fade the whole page in on load to avoid a jarring flash of unstyled content */
body{ animation:pageIn .5s ease both; }
@keyframes pageIn{ from{ opacity:0; } to{ opacity:1; } }

/* Laptop/desktop spec-card icon tile (used on Products page in place of photos) */
.device-icon-tile{
  background:linear-gradient(155deg,#0F2A4A,#0A1830); border-radius:var(--radius-m);
  display:flex; align-items:center; justify-content:center; height:230px; position:relative; overflow:hidden;
}
.device-icon-tile svg.device-illust{ width:100%; height:auto; }
.device-icon-tile .device-badge{
  position:absolute; top:14px; left:14px; font-family:var(--font-mono); font-size:10.5px; letter-spacing:.04em;
  background:rgba(255,255,255,.1); color:#fff; padding:4px 9px; border-radius:3px; text-transform:uppercase; backdrop-filter:blur(4px); z-index:2;
}
.device-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:contain;
  background:var(--paper); padding:22px; box-sizing:border-box; z-index:1;
}
.spec-grid-full{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid var(--line); margin-top:6px; }
.spec-grid-full div{ padding:10px 0; font-size:13px; color:var(--ink-soft); border-bottom:1px solid var(--line); }
.spec-grid-full div:nth-child(odd){ border-right:1px solid var(--line); padding-right:12px; }
.spec-grid-full div:nth-child(even){ padding-left:12px; }
.spec-grid-full b{ display:block; font-family:var(--font-mono); font-size:12.5px; color:var(--ink); margin-bottom:1px; }

/* ==========================================================================
   LIVE PRINTER ANIMATION — a label continuously feeds out of the printer
   ========================================================================== */
.printer-demo{
  position:relative; width:100%; max-width:360px; margin:0 auto;
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
}
.printer-demo svg{ width:100%; height:100%; overflow:visible; }
.printer-demo .p-body{ fill:#0F2A4A; }
.printer-demo .p-panel{ fill:#123563; }
.printer-demo .p-slot{ fill:#050B16; }
.printer-demo .p-led{ fill:var(--signal); animation:ledBlink 1.8s ease-in-out infinite; }
@keyframes ledBlink{ 0%,100%{ opacity:1; } 50%{ opacity:.25; } }
.printer-demo .p-label-clip rect{ }
.printer-demo .p-label{
  animation:labelFeed 3.4s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes labelFeed{
  0%{ transform:translateY(-92px); }
  38%{ transform:translateY(0px); }
  72%{ transform:translateY(0px); }
  100%{ transform:translateY(96px); }
}
.printer-demo .p-label-text{ opacity:0; animation:labelTextFade 3.4s ease infinite; }
@keyframes labelTextFade{
  0%,38%{ opacity:0; } 46%,72%{ opacity:1; } 86%,100%{ opacity:0; }
}
.printer-demo .p-flash{
  fill:#fff; opacity:0; animation:printFlash 3.4s ease infinite;
}
@keyframes printFlash{ 0%,35%{ opacity:0; } 38%{ opacity:.5; } 42%{ opacity:0; } 100%{ opacity:0; } }
@media (prefers-reduced-motion: reduce){
  .printer-demo .p-label, .printer-demo .p-label-text, .printer-demo .p-flash, .printer-demo .p-led{ animation:none; }
  .printer-demo .p-label{ transform:translateY(0); }
  .printer-demo .p-label-text{ opacity:1; }
}

/* ==========================================================================
   POP-IN REVEAL — a quick bright "flash then settle" entrance, used sparingly
   on badges, icons and key numbers (not everywhere — see design notes)
   ========================================================================== */
.pop-in{ opacity:0; }
.pop-in.is-visible{ animation:popFlash .65s cubic-bezier(.2,.8,.3,1.3) forwards; }
@keyframes popFlash{
  0%{ opacity:0; transform:scale(.7); filter:brightness(2.4); }
  55%{ opacity:1; transform:scale(1.08); filter:brightness(1.3); }
  100%{ opacity:1; transform:scale(1); filter:brightness(1); }
}
@media (prefers-reduced-motion: reduce){
  .pop-in{ opacity:1; }
  .pop-in.is-visible{ animation:none; }
}

/* ==========================================================================
   ANIMATED DEVICE ILLUSTRATIONS — laptop/desktop cards with a "live" screen
   (growing bar chart, drawing line graph, blinking cursor, LED, keypress)
   ========================================================================== */
.device-icon-tile{ padding:18px; }
.device-illust{ width:100%; height:auto; max-width:280px; overflow:visible; }

.device-illust .d-bar{
  transform-box:fill-box; transform-origin:bottom;
  animation:barGrow 2.6s ease-in-out infinite;
}
.device-illust .d-bar1{ animation-delay:0s; }
.device-illust .d-bar2{ animation-delay:.15s; }
.device-illust .d-bar3{ animation-delay:.3s; }
.device-illust .d-bar4{ animation-delay:.45s; }
.device-illust .d-bar5{ animation-delay:.6s; }
@keyframes barGrow{
  0%,100%{ transform:scaleY(.55); opacity:.7; }
  50%{ transform:scaleY(1); opacity:1; }
}

.device-illust .d-line{
  stroke-dasharray:90; stroke-dashoffset:90;
  animation:lineDraw 3.2s ease-in-out infinite;
}
.device-illust .d-line-dot{ animation:dotPulse 3.2s ease-in-out infinite; }
@keyframes lineDraw{
  0%{ stroke-dashoffset:90; opacity:0; }
  10%{ opacity:1; }
  55%{ stroke-dashoffset:0; opacity:1; }
  85%{ stroke-dashoffset:0; opacity:1; }
  100%{ stroke-dashoffset:0; opacity:0; }
}
@keyframes dotPulse{
  0%,45%{ opacity:0; transform:scale(.4); }
  55%,85%{ opacity:1; transform:scale(1); }
  100%{ opacity:0; transform:scale(.4); }
}

.device-illust .d-cursor{ animation:cursorBlink 1s step-end infinite; }
@keyframes cursorBlink{ 0%,100%{ opacity:1; } 50%{ opacity:0; } }

.device-illust .d-led{ animation:ledBlink 1.8s ease-in-out infinite; }

.device-illust .d-key{ animation:keyPress 2.8s ease-in-out infinite; }
@keyframes keyPress{
  0%,85%,100%{ fill:#0A1830; }
  90%{ fill:#12C7D6; }
}

.product-card:hover .device-illust .d-bar,
.tilt:hover .device-illust .d-bar{ animation-play-state:running; }

/* ==========================================================================
   AUTO-PLAYING SHIMMER SWEEP — a light band drifts across cards periodically
   so the page reads as "alive" even before anyone touches it
   ========================================================================== */
.product-card, .feature-cell{ position:relative; }
.product-card::before, .feature-cell::before{
  content:''; position:absolute; inset:0; z-index:3; pointer-events:none; border-radius:inherit;
  background:linear-gradient(115deg, transparent 40%, rgba(29,95,214,.14) 50%, transparent 60%);
  background-size:250% 250%; background-position:200% 0;
  animation:shimmerSweep 6s ease-in-out infinite;
}
.feature-cell::before{ animation-duration:7s; }
.product-card:nth-of-type(2)::before, .feature-cell:nth-child(2)::before{ animation-delay:.7s; }
.product-card:nth-of-type(3)::before, .feature-cell:nth-child(3)::before{ animation-delay:1.4s; }
.product-card:nth-of-type(4)::before, .feature-cell:nth-child(4)::before{ animation-delay:2.1s; }
.product-card:nth-of-type(5)::before, .feature-cell:nth-child(5)::before{ animation-delay:2.8s; }
.product-card:nth-of-type(6)::before, .feature-cell:nth-child(6)::before{ animation-delay:3.5s; }
@keyframes shimmerSweep{
  0%,55%{ background-position:200% 0; }
  85%,100%{ background-position:-50% 0; }
}
@media (prefers-reduced-motion: reduce){
  .product-card::before, .feature-cell::before{ animation:none; display:none; }
}

/* ==========================================================================
   DEVICE CONFIGURATOR — React-powered interactive picker (Products page)
   ========================================================================== */
.configurator{
  border:1px solid var(--line); border-radius:var(--radius-l); background:var(--white);
  padding:32px; display:flex; flex-direction:column; gap:26px;
}
.configurator-loading{ padding:40px; text-align:center; color:var(--ink-faint); font-family:var(--font-mono); font-size:13px; }
.configurator-devices{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
@media (max-width:760px){ .configurator-devices{ grid-template-columns:1fr; } }
.configurator-device{
  display:flex; align-items:center; gap:12px; text-align:left; padding:14px 16px;
  border:1.5px solid var(--line); border-radius:var(--radius-m); background:var(--paper);
  transition:border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.configurator-device:hover{ transform:translateY(-2px); background:#fff; }
.configurator-device.is-active{ background:#fff; box-shadow:0 8px 20px rgba(15,42,74,.08); }
.configurator-device-text{ display:flex; flex-direction:column; gap:2px; }
.configurator-device-text b{ font-size:13.5px; color:var(--ink); font-weight:600; line-height:1.3; }
.configurator-device-text span{ font-family:var(--font-mono); font-size:11px; color:var(--ink-faint); text-transform:uppercase; }

.configurator-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:600px){ .configurator-row{ grid-template-columns:1fr; } }
.configurator-field label{ display:block; font-size:12.5px; font-weight:600; color:var(--ink); margin-bottom:10px; }
.configurator-stepper{
  display:inline-flex; align-items:center; gap:0; border:1.5px solid var(--line); border-radius:30px; overflow:hidden;
}
.configurator-stepper button{
  width:38px; height:38px; font-size:18px; color:var(--blue); transition:background .2s var(--ease);
}
.configurator-stepper button:hover{ background:var(--paper-2); }
.configurator-stepper span{ min-width:44px; text-align:center; font-family:var(--font-mono); font-size:15px; color:var(--ink); }
.configurator-toggle{ display:inline-flex; border:1.5px solid var(--line); border-radius:30px; overflow:hidden; }
.configurator-toggle button{ padding:9px 18px; font-size:13px; font-weight:600; color:var(--ink-soft); transition:.2s var(--ease); }
.configurator-toggle button.is-active{ background:var(--ink); color:#fff; }

.configurator-summary{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  border-top:1px solid var(--line); padding-top:24px;
}
.configurator-summary p{ font-size:16px; color:var(--ink); margin-top:6px; max-width:none; }
.configurator-summary strong{ color:var(--blue); }
