:root {
  --ink: #101113;
  --paper: #f4f1e9;
  --sun: #ffd400;
  --sun-deep: #f4aa00;
  --line: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
[hidden] { display: none !important; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; padding: 11px 15px; background: var(--sun); color: #111; font-weight: 900; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; width: 174px; }
.brand img { display: block; width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 32px; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.desktop-nav a { color: #d8d8d6; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--sun); }
.header-cta {
  justify-self: end;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
}
.header-cta span { color: var(--sun); margin-left: 9px; }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 28px;
  padding: 138px clamp(22px, 5vw, 80px) 72px;
  background:
    radial-gradient(circle at 82% 46%, rgba(255,212,0,.13), transparent 27%),
    linear-gradient(115deg, #17191b 0%, #101113 56%, #080909 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 76%);
}
.hero-copy { position: relative; z-index: 3; max-width: 650px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: #cacac7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: var(--sun); }
h1 {
  margin: 0;
  font-size: clamp(68px, 8vw, 126px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.075em;
}
h1 em { color: var(--sun); font-style: normal; font-weight: 300; }
.hero-lead { max-width: 590px; margin: 34px 0 0; color: #b9b9b5; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; gap: 13px; min-height: 54px; padding: 0 22px; border-radius: 3px; font-size: 13px; font-weight: 800; }
.button-primary { background: var(--sun); color: #151515; }
.button-primary span { font-size: 18px; }
.button-ghost { border: 1px solid rgba(255,255,255,.25); color: #eee; }
.play { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--sun); font-size: 8px; }
.hero-proof { display: flex; align-items: center; gap: 11px; margin-top: 50px; color: #868784; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: #545553; }
.hero-proof strong { color: #d8d8d4; }

.orbit-stage {
  position: relative;
  z-index: 2;
  min-height: 610px;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.ambient { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; }
.ambient-one { width: 280px; height: 280px; right: 18%; top: 28%; background: #f3b300; }
.ambient-two { width: 180px; height: 180px; left: 24%; bottom: 9%; background: #705b00; }
.orbit {
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid rgba(255,212,0,.48);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit-outer { width: 560px; height: 350px; margin: -175px 0 0 -280px; transform: rotate(-17deg) rotateX(66deg); box-shadow: 0 0 30px rgba(255,212,0,.08); animation: orbit-breathe 6s ease-in-out infinite; }
.orbit-inner { width: 410px; height: 240px; margin: -120px 0 0 -205px; transform: rotate(24deg) rotateX(64deg); border-color: rgba(255,255,255,.17); }
.core {
  position: absolute;
  left: 50%; top: 50%;
  width: 226px; height: 226px;
  margin: -113px 0 0 -113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,212,0,.7);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #34322a, #121313 68%);
  box-shadow: inset -20px -25px 50px #050505, 0 0 75px rgba(255,190,0,.18), 0 40px 80px rgba(0,0,0,.55);
  transform: translateZ(60px);
}
.core::before, .core::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); }
.core::before { inset: 13px; }
.core::after { inset: 26px; border-style: dashed; }
.core-glow { width: 9px; height: 9px; margin-bottom: 14px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 20px var(--sun); animation: pulse 2s ease-in-out infinite; }
.core span { color: #8f908d; font-size: 8px; font-weight: 800; letter-spacing: .24em; }
.core strong { margin: 7px 0 8px; font-size: 27px; letter-spacing: -.04em; }
.core small { color: var(--sun); font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.orbit-node {
  position: absolute;
  width: 104px; height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(48,49,47,.92), rgba(15,16,16,.94));
  box-shadow: 0 24px 50px rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
  animation: node-float 5s ease-in-out infinite;
}
.orbit-node img { width: 70px; height: 70px; object-fit: contain; filter: contrast(1.08); }
.orbit-node span { position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%); color: #cbcbc7; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.node-access { left: 7%; top: 22%; animation-delay: -.8s; }
.node-time { right: 4%; top: 18%; animation-delay: -2.1s; }
.node-camera { right: 7%; bottom: 16%; animation-delay: -3.2s; }
.node-gate { left: 13%; bottom: 10%; animation-delay: -4.1s; }
.status-chip { position: absolute; right: 18%; top: 54%; padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(10,10,10,.72); color: #c6c6c2; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-chip span { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #81e066; box-shadow: 0 0 8px #81e066; }

.signal-strip { position: relative; z-index: 3; padding: 70px clamp(22px, 5vw, 80px) 86px; background: var(--paper); color: var(--ink); }
.strip-intro { margin: 0 0 48px; color: #66645f; font-size: 13px; line-height: 1.5; text-transform: uppercase; letter-spacing: .09em; }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d3cfc5; }
.signal-grid article { position: relative; padding: 30px 36px 4px 0; border-right: 1px solid #d3cfc5; }
.signal-grid article + article { padding-left: 36px; }
.signal-grid article:last-child { border-right: 0; }
.signal-grid article > span { color: #9b968b; font-size: 10px; font-weight: 800; }
.signal-grid h2 { margin: 45px 0 12px; font-size: clamp(24px, 2.4vw, 38px); letter-spacing: -.045em; }
.signal-grid p { max-width: 360px; margin: 0; color: #74716a; font-size: 14px; line-height: 1.6; }

.menu-button, .mobile-menu { display: none; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-heading > div { flex: 1; }
.section-heading > p { max-width: 470px; margin: 0; font-size: 15px; line-height: 1.7; }
.section-kicker { margin: 0 0 19px; font-size: 10px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.section-heading h2, .segments-intro h2, .process-title h2, .contact-copy h2 { margin: 0; font-size: clamp(42px, 5.5vw, 82px); line-height: .98; letter-spacing: -.065em; }
.light-heading .section-kicker { color: var(--sun); }
.light-heading > p { color: #a9aaa6; }
.dark-heading .section-kicker { color: #867f70; }
.dark-heading > p { color: #6c6962; }

.operations-section { padding: 110px clamp(22px, 5vw, 80px) 120px; background: #141516; }
.operations-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 292px 292px; gap: 14px; }
.operation-feature, .operation-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.11); background: #1a1b1c; }
.operation-feature { grid-row: span 2; display: flex; flex-direction: column; min-width: 0; }
.operation-toolbar, .operation-footer { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; color: #9d9e99; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.operation-toolbar { border-bottom: 1px solid rgba(255,255,255,.08); }
.operation-toolbar strong { color: #c8c9c4; }
.operation-toolbar i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #84de67; box-shadow: 0 0 9px #84de67; }
.operation-map { position: relative; flex: 1; overflow: hidden; background: radial-gradient(circle at center, rgba(255,211,0,.13), transparent 37%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.map-rings, .map-rings span { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,212,0,.2); border-radius: 50%; }
.map-rings { width: 330px; height: 330px; }
.map-rings span:nth-child(1) { width: 240px; height: 240px; }
.map-rings span:nth-child(2) { width: 150px; height: 150px; border-color: rgba(255,255,255,.12); }
.map-rings span:nth-child(3) { width: 420px; height: 420px; border-color: rgba(255,255,255,.05); }
.map-center { position: absolute; left: 50%; top: 50%; width: 112px; height: 112px; transform: translate(-50%,-50%); display: grid; place-items: center; align-content: center; gap: 5px; border: 1px solid rgba(255,212,0,.52); border-radius: 50%; color: #fff; font-weight: 900; font-size: 14px; box-shadow: 0 0 45px rgba(255,195,0,.14); }
.map-center small { color: var(--sun); font-size: 6px; letter-spacing: .12em; }
.map-point { position: absolute; display: flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.11); background: rgba(20,21,22,.85); color: #bfc0bb; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.map-point i { width: 5px; height: 5px; border-radius: 50%; background: var(--sun); }
.point-one { left: 13%; top: 22%; }
.point-two { right: 13%; top: 28%; }
.point-three { left: 18%; bottom: 18%; }
.point-four { right: 11%; bottom: 22%; }
.operation-footer { border-top: 1px solid rgba(255,255,255,.08); }
.operation-footer strong { color: var(--sun); }
.operation-card { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.operation-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(140deg, transparent 55%, rgba(255,212,0,.055)); }
.operation-card .card-index { position: absolute; right: 16px; top: 15px; color: #676863; font-size: 8px; font-weight: 900; }
.operation-card > img { position: absolute; width: 160px; height: 160px; object-fit: contain; right: -8px; top: -12px; opacity: .82; }
.operation-card > div:last-child { position: relative; z-index: 1; margin-top: auto; }
.operation-card small { color: var(--sun); font-size: 7px; font-weight: 900; letter-spacing: .17em; }
.operation-card strong { display: block; margin: 8px 0 7px; font-size: 22px; letter-spacing: -.04em; }
.operation-card p { max-width: 260px; margin: 0; color: #8d8e89; font-size: 11px; line-height: 1.5; }
.warm-card { background: var(--sun); color: #161616; }
.warm-card::after { background: none; }
.warm-card small { color: #6f5d00; }
.warm-card p { color: #645800; }
.warm-card .card-index { color: #8c7600; }
.attendance-chart { display: flex; align-items: end; gap: 7px; height: 100px; margin: 8px 8px 18px; }
.attendance-chart i { flex: 1; border-radius: 2px 2px 0 0; background: rgba(20,20,20,.78); }
.attendance-chart i:nth-child(1) { height: 42%; }
.attendance-chart i:nth-child(2) { height: 65%; }
.attendance-chart i:nth-child(3) { height: 52%; }
.attendance-chart i:nth-child(4) { height: 86%; }
.attendance-chart i:nth-child(5) { height: 74%; }
.attendance-chart i:nth-child(6) { height: 94%; }
.attendance-chart i:nth-child(7) { height: 68%; }
.wide-card { grid-column: span 2; display: grid; grid-template-columns: 1.1fr 1fr; align-items: end; gap: 22px; }
.camera-frame { position: relative; height: 205px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: radial-gradient(circle, #323433, #111); }
.camera-frame::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.07); }
.camera-frame img { display: block; width: 100%; height: 100%; object-fit: contain; opacity: .7; }
.camera-frame span { position: absolute; left: 12px; top: 12px; color: #c9cbc5; font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.camera-frame i { position: absolute; right: 12px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: #ff4a3e; box-shadow: 0 0 8px #ff4a3e; }

.catalog-section { padding: 120px clamp(22px, 5vw, 80px); background: var(--paper); color: var(--ink); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-row button { border: 1px solid #c9c4b8; border-radius: 999px; background: transparent; padding: 10px 15px; color: #5d5950; cursor: pointer; font: inherit; font-size: 11px; font-weight: 800; transition: .2s ease; }
.filter-row button:hover, .filter-row button.active { border-color: var(--ink); background: var(--ink); color: var(--sun); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card { min-width: 0; border: 1px solid #d5d0c5; background: #f8f6f0; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(34,31,24,.1); }
.product-card[hidden] { display: none; }
.filter-empty { margin: 30px 0 0; color: #6a675f; }
.product-image { position: relative; height: 270px; overflow: hidden; display: grid; place-items: center; background: #eae6dc; }
.product-image::after { content: ''; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(60,57,49,.13); border-radius: 50%; }
.product-image > span { position: absolute; left: 15px; top: 15px; color: #8e897d; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.product-image img { position: relative; z-index: 1; width: 220px; height: 220px; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.05) rotate(-2deg); }
.product-copy { padding: 24px; }
.product-copy small { color: #8b8477; font-size: 8px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.product-copy h3 { margin: 10px 0 9px; font-size: 21px; letter-spacing: -.035em; }
.product-copy p { min-height: 46px; margin: 0 0 22px; color: #6a675f; font-size: 12px; line-height: 1.55; }
.product-copy a { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid #d6d1c6; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-copy a span { color: #9a7200; }

.segments-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding: 120px clamp(22px, 5vw, 80px); background: #101113; }
.segments-intro { position: sticky; top: 40px; align-self: start; }
.segments-intro .section-kicker { color: var(--sun); }
.segments-intro > p:not(.section-kicker) { max-width: 480px; margin: 28px 0; color: #9a9b97; line-height: 1.7; }
.text-link { display: inline-flex; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 12px; font-weight: 800; }
.text-link span { color: var(--sun); }
.segments-list { border-top: 1px solid rgba(255,255,255,.14); }
.segments-list article { display: grid; grid-template-columns: 48px 1fr auto; gap: 18px; align-items: center; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.segments-list article > span { color: #636460; font-size: 9px; font-weight: 900; }
.segments-list h3 { margin: 0 0 8px; font-size: clamp(23px, 2.6vw, 38px); letter-spacing: -.045em; }
.segments-list p { margin: 0; color: #8f908c; font-size: 13px; line-height: 1.55; }
.segments-list article > i { color: var(--sun); font-style: normal; font-size: 20px; }

.process-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: 110px clamp(22px, 5vw, 80px); background: var(--sun); color: #151515; }
.process-title .section-kicker { color: #725e00; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(20,20,20,.28); }
.process-list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(20,20,20,.28); }
.process-list li > span { font-size: 9px; font-weight: 900; }
.process-list strong { display: block; margin-bottom: 6px; font-size: 20px; letter-spacing: -.025em; }
.process-list p { margin: 0; color: #655700; font-size: 13px; line-height: 1.55; }

.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; padding: 120px clamp(22px, 5vw, 80px); background: #e9e5db; color: var(--ink); }
.contact-copy .section-kicker { color: #847d70; }
.contact-copy > p:not(.section-kicker) { max-width: 520px; margin: 26px 0; color: #6c6961; font-size: 16px; line-height: 1.7; }
.contact-directory { display: grid; gap: 26px; margin: 36px 0; }
.directory-block { display: grid; gap: 10px; }
.directory-label { color: #817b70; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.regional-contacts, .email-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #cbc5b9; }
.regional-contacts a, .email-contacts a { position: relative; min-width: 0; display: flex; flex-direction: column; gap: 5px; padding: 16px; background: #e9e5db; transition: background .2s ease, color .2s ease; }
.regional-contacts a:hover, .email-contacts a:hover { background: #ded8cc; }
.regional-contacts span, .email-contacts span { color: #817b70; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.regional-contacts span small { margin-left: 4px; color: #a17800; font: inherit; }
.regional-contacts strong, .email-contacts strong { overflow-wrap: anywhere; font-size: 12px; }
.regional-contacts em { color: #36804c; font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.whatsapp-link { display: inline-flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid #8b857a; font-size: 12px; font-weight: 900; }
.whatsapp-link span { color: #927000; }
.lead-form { padding: clamp(24px, 4vw, 50px); background: #111213; color: #fff; }
.form-top { display: flex; justify-content: space-between; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.form-top span { font-size: 18px; font-weight: 800; }
.form-top small { color: var(--sun); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 18px; color: #a7a8a4; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; outline: none; background: transparent; padding: 10px 0 12px; color: #fff; font: inherit; font-size: 14px; text-transform: none; letter-spacing: 0; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--sun); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #646561; }
.lead-form select { color-scheme: dark; }
.lead-form textarea { resize: vertical; }
.lead-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; color: #8c8d89; font-size: 9px; font-weight: 700; line-height: 1.5; letter-spacing: .03em; text-transform: none; }
.consent input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--sun); }
.honey { position: absolute; left: -9999px; }
.submit-button { width: 100%; display: flex; justify-content: space-between; border: 0; background: var(--sun); padding: 17px 19px; color: #141414; cursor: pointer; font: inherit; font-size: 12px; font-weight: 900; }
.submit-button:disabled { opacity: .65; cursor: wait; }
.form-status { min-height: 18px; margin: 12px 0 0; font-size: 11px; line-height: 1.45; }
.form-status.success { color: #9ee98b; }
.form-status.error { color: #ff9c91; }

footer { display: grid; grid-template-columns: 1fr 1.2fr 1fr auto; gap: 35px; align-items: center; padding: 45px clamp(22px, 5vw, 80px); border-top: 1px solid rgba(255,255,255,.12); background: #0a0b0b; }
footer img {
  display: block;
  width: min(155px, 100%);
  height: auto;
  aspect-ratio: 900 / 317;
  object-fit: contain;
  object-position: left center;
}
footer p { margin: 0; color: #777874; font-size: 11px; }
footer div { display: flex; gap: 20px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.footer-contact-links { flex-wrap: wrap; row-gap: 8px; }
footer a:hover { color: var(--sun); }
footer small { color: #5b5c59; font-size: 9px; }
.floating-whatsapp { position: fixed; z-index: 30; right: 24px; bottom: 94px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: #22c55e; color: #082c14; box-shadow: 0 14px 35px rgba(0,0,0,.3); font-size: 10px; font-weight: 900; }
.floating-whatsapp svg { width: 25px; height: 25px; fill: currentColor; }

.assistant-shell { position: fixed; z-index: 50; right: 22px; bottom: 20px; font-family: Arial, Helvetica, sans-serif; }
.assistant-launcher { position: relative; z-index: 2; width: 58px; height: 58px; margin-left: auto; display: grid; place-items: center; border: 1px solid rgba(255,220,50,.65); border-radius: 50%; background: #111213; color: var(--sun); cursor: pointer; box-shadow: 0 18px 45px rgba(0,0,0,.42), 0 0 0 6px rgba(255,212,0,.08); }
.assistant-launcher strong { position: relative; z-index: 2; font-size: 10px; letter-spacing: .08em; }
.launcher-orbit { position: absolute; inset: 9px; border: 1px solid rgba(255,212,0,.48); border-radius: 50%; transform: rotateX(63deg) rotate(22deg); animation: assistant-orbit 4s linear infinite; }
.launcher-orbit::after { content: ''; position: absolute; width: 5px; height: 5px; right: 2px; top: 4px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 9px var(--sun); }
.launcher-close { font-size: 29px; font-weight: 300; line-height: 1; }
.assistant-nudge { position: absolute; right: 70px; bottom: 7px; width: 205px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.14); background: #151617; color: #fff; box-shadow: 0 16px 35px rgba(0,0,0,.3); }
.assistant-nudge::after { content: ''; position: absolute; right: -7px; bottom: 15px; width: 12px; height: 12px; border-top: 1px solid rgba(255,255,255,.14); border-right: 1px solid rgba(255,255,255,.14); background: #151617; transform: rotate(45deg); }
.assistant-nudge strong { display: block; margin-bottom: 3px; color: var(--sun); font-size: 11px; }
.assistant-nudge span { color: #aaa; font-size: 10px; }
.assistant-panel { position: absolute; right: 0; bottom: 72px; width: min(390px, calc(100vw - 28px)); height: min(620px, calc(100vh - 115px)); display: grid; grid-template-rows: auto 3px 1fr auto auto; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 18px 18px 4px 18px; background: #f1eee6; color: #151515; box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: assistant-enter .25s ease-out both; }
.assistant-header { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; padding: 16px 17px; background: #111213; color: #fff; }
.assistant-avatar { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,212,0,.6); border-radius: 50%; }
.assistant-avatar::before { content: 'S'; position: relative; z-index: 1; color: var(--sun); font-size: 13px; font-weight: 900; }
.assistant-avatar span { position: absolute; inset: 7px; border: 1px solid rgba(255,212,0,.35); border-radius: 50%; transform: rotateX(60deg); }
.assistant-header > div:nth-child(2) { display: grid; gap: 4px; }
.assistant-header strong { font-size: 14px; }
.assistant-header div > span { color: #9fa09c; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.assistant-header i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #75de65; box-shadow: 0 0 8px #75de65; }
.assistant-header > button { width: 32px; height: 32px; border: 0; background: transparent; color: #8b8c89; cursor: pointer; font-size: 25px; font-weight: 300; }
.assistant-progress { height: 3px; background: #303131; }
.assistant-progress span { display: block; height: 100%; background: var(--sun); transition: width .35s ease; }
.assistant-messages { min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 9px; padding: 18px 16px; scroll-behavior: smooth; }
.assistant-message { max-width: 84%; padding: 11px 13px; font-size: 12px; line-height: 1.48; }
.assistant-message.assistant { align-self: flex-start; border: 1px solid #d6d1c6; border-radius: 3px 14px 14px 14px; background: #fff; color: #34332f; }
.assistant-message.user { align-self: flex-end; border-radius: 14px 3px 14px 14px; background: #1a1b1c; color: #fff; }
.assistant-controls { padding: 0 16px 14px; }
.assistant-options { display: flex; flex-wrap: wrap; gap: 7px; }
.assistant-options button { border: 1px solid #c9c3b6; border-radius: 999px; background: transparent; padding: 9px 11px; color: #403e38; cursor: pointer; font: inherit; font-size: 10px; font-weight: 800; transition: .18s ease; }
.assistant-options button:hover, .assistant-options button:focus-visible { border-color: #161616; background: #161616; color: var(--sun); }
.assistant-input-row { display: grid; grid-template-columns: 1fr 44px; gap: 8px; }
.assistant-input-row input { min-width: 0; border: 1px solid #c9c3b7; border-radius: 3px; background: #fff; padding: 12px; outline: none; color: #151515; font: inherit; font-size: 12px; }
.assistant-input-row input:focus { border-color: #8a7400; box-shadow: 0 0 0 3px rgba(255,212,0,.18); }
.assistant-input-row button { border: 0; border-radius: 3px; background: var(--sun); color: #151515; cursor: pointer; font-size: 19px; font-weight: 900; }
.assistant-input-row button:disabled { opacity: .45; cursor: default; }
.assistant-consent { display: grid; gap: 8px; }
.assistant-consent button, .assistant-consent a, .assistant-finish a, .assistant-finish button { border: 0; border-radius: 3px; padding: 12px 14px; text-align: center; cursor: pointer; font: inherit; font-size: 10px; font-weight: 900; }
.assistant-consent .consent-primary, .assistant-finish a { background: var(--sun); color: #151515; }
.assistant-consent a { border: 1px solid #bbb5a9; color: #393731; }
.assistant-typing { display: flex; align-items: center; gap: 5px; color: #77736a; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.assistant-typing i { width: 6px; height: 6px; border-radius: 50%; background: #8a857b; animation: typing-dot 1s ease-in-out infinite; }
.assistant-typing i:nth-child(2) { animation-delay: .15s; }
.assistant-typing i:nth-child(3) { animation-delay: .3s; margin-right: 5px; }
.assistant-finish { display: grid; gap: 8px; }
.assistant-finish a { display: flex; justify-content: space-between; }
.assistant-finish button { background: transparent; color: #67635b; }
.assistant-footer { padding: 10px 16px; border-top: 1px solid #d7d1c5; color: #888278; font-size: 8px; line-height: 1.4; text-align: center; }
.privacy-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.privacy-header { position: static; background: #101113; }
.privacy-main { width: min(900px, calc(100% - 44px)); margin: 0 auto; padding: 90px 0 110px; }
.privacy-main .section-kicker { color: #8b8477; }
.privacy-main h1 { max-width: 800px; font-size: clamp(48px, 8vw, 90px); line-height: .92; }
.privacy-main h2 { margin: 50px 0 12px; font-size: 25px; letter-spacing: -.03em; }
.privacy-main p, .privacy-main li { color: #5f5b53; font-size: 16px; line-height: 1.75; }
.privacy-main a { text-decoration: underline; text-underline-offset: 3px; }
.privacy-back { display: inline-flex; margin-top: 40px; padding: 14px 18px; background: #101113; color: var(--sun); font-size: 12px; font-weight: 900; }
.noscript-message { position: fixed; z-index: 100; inset: auto 15px 15px; padding: 14px; background: #fff3b4; color: #111; box-shadow: 0 8px 30px rgba(0,0,0,.2); font-size: 13px; }

@keyframes assistant-orbit { to { transform: rotateX(63deg) rotate(382deg); } }
@keyframes assistant-enter { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes typing-dot { 0%,100% { opacity: .35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }

@keyframes node-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes pulse { 0%,100% { opacity: .55; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes orbit-breathe { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .menu-button { display: flex; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(10,10,10,.35); }
  .menu-button span { width: 17px; height: 1px; background: #fff; }
  .mobile-menu { position: absolute; display: grid; right: 22px; top: 76px; min-width: 210px; padding: 12px; border: 1px solid rgba(255,255,255,.14); background: #121313; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
  .mobile-menu a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; font-weight: 800; }
  .mobile-menu a:last-child { border-bottom: 0; color: var(--sun); }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .orbit-stage { min-height: 570px; }
  .section-heading { align-items: start; flex-direction: column; }
  .operations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 520px 280px 280px; }
  .operation-feature { grid-column: span 2; grid-row: auto; }
  .wide-card { grid-column: span 2; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-section, .process-section, .contact-section { grid-template-columns: 1fr; gap: 55px; }
  .segments-intro { position: static; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 78px; }
  .brand { width: 140px; }
  .hero { padding-top: 124px; padding-bottom: 38px; }
  h1 { font-size: clamp(60px, 20vw, 84px); }
  .hero-lead { font-size: 17px; }
  .hero-proof { flex-wrap: wrap; margin-top: 35px; }
  .orbit-stage { min-height: 430px; transform: scale(.78); margin: -42px -80px -50px; }
  .orbit-outer { width: 470px; height: 290px; margin: -145px 0 0 -235px; }
  .orbit-inner { width: 350px; height: 210px; margin: -105px 0 0 -175px; }
  .core { width: 190px; height: 190px; margin: -95px 0 0 -95px; }
  .orbit-node { width: 86px; height: 86px; }
  .orbit-node img { width: 58px; height: 58px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid article, .signal-grid article + article { padding: 26px 0 30px; border-right: 0; border-bottom: 1px solid #d3cfc5; }
  .signal-grid h2 { margin-top: 20px; }
  .operations-section, .catalog-section, .segments-section, .process-section, .contact-section { padding-top: 80px; padding-bottom: 80px; }
  .section-heading h2, .segments-intro h2, .process-title h2, .contact-copy h2 { font-size: clamp(42px, 13vw, 60px); }
  .operations-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 470px repeat(3, 280px); }
  .operation-feature, .wide-card { grid-column: auto; }
  .wide-card { display: flex; }
  .wide-card .camera-frame { height: 135px; margin-right: 0; }
  .map-rings { width: 260px; height: 260px; }
  .map-rings span:nth-child(1) { width: 190px; height: 190px; }
  .map-rings span:nth-child(2) { width: 120px; height: 120px; }
  .map-rings span:nth-child(3) { width: 330px; height: 330px; }
  .map-point { font-size: 7px; }
  .point-one { left: 4%; }
  .point-two { right: 4%; }
  .point-three { left: 7%; }
  .point-four { right: 4%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 240px; }
  .segments-list article { grid-template-columns: 32px 1fr auto; }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .regional-contacts, .email-contacts { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 22px; }
  .assistant-shell { right: 12px; bottom: 12px; }
  .assistant-nudge { display: none; }
  .assistant-panel { position: fixed; right: 10px; bottom: 82px; width: calc(100vw - 20px); height: min(650px, calc(100vh - 98px)); border-radius: 14px; }
  .floating-whatsapp { right: 19px; bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
