:root {
  --bg: #f4f5f7;
  --card: #ffffff;
  --text: #15171b;
  --muted: #626a76;
  --line: #e5e7eb;
  --primary: #ff6a00;
  --primary-dark: #d95700;
  --accent: #2d3239;
  --soft: #fff3e8;
  --shadow: 0 18px 55px rgba(18, 24, 34, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.top {
  background: #1b1f25;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 6%;
  font-size: 13px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
}

.logo img { width: 220px; height: auto; }

.links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.links a { color: #2b3139; }

.links a:hover { color: var(--primary); }

.links button,
.menu {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu {
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(21,23,27,.98), rgba(37,42,49,.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px);
}

.tech-grid {
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0 26%, rgba(255,106,0,.22) 26% 34%, transparent 34% 100%);
}

.hero::after {
  left: 6%;
  bottom: 102px;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  align-items: center;
  gap: 48px;
  padding: 70px 6%;
  color: #fff;
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pill {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffd2ae;
  background: rgba(255,255,255,.08);
}

.hero h1,
.hero h2 {
  margin: 18px 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 28px;
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-badges span {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 420px;
}

.tech-scene {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.tech-scene::before {
  content: "";
  position: absolute;
  width: min(390px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,106,0,.18), transparent 58%),
    conic-gradient(from 120deg, rgba(255,106,0,.38), rgba(255,255,255,.05), rgba(255,106,0,.22), rgba(255,255,255,.04));
  opacity: .95;
  z-index: -1;
}

.tech-scene::after {
  content: "";
  position: absolute;
  width: min(500px, 86vw);
  height: 260px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: skewY(-5deg);
  opacity: .42;
  z-index: -2;
}

.floating-card,
.repair-card,
.phone-card,
.mini-dashboard {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 14px;
}

.floating-card small,
.repair-card span,
.phone-card small,
.phone-card span,
.mini-dashboard span {
  color: rgba(255,255,255,.72);
}

.floating-card b,
.repair-card b {
  color: #fff;
}

.card-status { left: 0; top: 62px; }
.card-tools { right: 0; bottom: 38px; }

.tool-chip,
.tech-chip {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255,106,0,.26);
}

.chip-a { right: 34px; top: 32px; }
.chip-b { left: 34px; bottom: 54px; background: #39414c; }

.service-stack {
  display: grid;
  place-items: center;
}

.laptop-visual {
  width: min(500px, 100%);
  display: grid;
  justify-items: center;
}

.laptop-screen {
  width: 86%;
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(135deg, rgba(255,106,0,.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}

.laptop-screen span {
  width: 76px;
  height: 76px;
  border: 8px solid rgba(255,255,255,.22);
  border-top-color: var(--primary);
  border-radius: 999px;
}

.laptop-screen strong {
  font-size: 28px;
}

.laptop-screen small {
  color: rgba(255,255,255,.68);
  font-weight: 800;
}

.laptop-base {
  width: 100%;
  height: 28px;
  border-radius: 4px 4px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.09));
}

.repair-card {
  position: absolute;
  display: grid;
  gap: 7px;
  padding: 18px;
}

.repair-main {
  left: 0;
  bottom: 42px;
  max-width: 230px;
}

.repair-small {
  right: 10px;
  top: 50px;
  min-width: 140px;
}

.repair-small b {
  color: var(--primary);
  font-size: 34px;
}

.icon-strip {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.icon-strip span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.contact-visual {
  display: grid;
  align-content: center;
  gap: 16px;
}

.phone-card {
  padding: 30px;
  display: grid;
  gap: 10px;
}

.phone-card strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
}

.mini-dashboard div {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: rgba(255,255,255,.06);
}

.mini-dashboard b {
  color: #fff;
}

.contact-lines {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.contact-lines i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.contact-lines i:nth-child(2) { width: 74%; }
.contact-lines i:nth-child(3) { width: 52%; }

.hero-panel,
.hero-contact-card {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 32px;
  min-height: 270px;
  display: grid;
  align-content: center;
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}

.hero-panel b,
.hero-contact-card strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.hero-panel span,
.hero-contact-card small {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 14px;
}

.hero-controls {
  position: absolute;
  left: 6%;
  bottom: 36px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}

.hero-dot.is-active { background: var(--primary); }

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 20px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(255,106,0,.24);
  cursor: pointer;
}

.btn:hover { background: var(--primary-dark); }

.btn.whats {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 22px rgba(22,154,81,.24);
  gap: 8px;
  animation: none;
}

.btn.whats img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: none;
}

.btn.outline-dark {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: none;
}

section { padding: 64px 6%; }

.section-block,
.why-section,
.contact-section {
  background: var(--card);
}

.section-block {
  position: relative;
  overflow: hidden;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2,
.why-copy h2,
.process-band h2,
.contact-section h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.why-copy p,
.contact-section p,
article p {
  color: var(--muted);
  line-height: 1.6;
}

.grid { display: grid; gap: 20px; }

.services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(18, 24, 34, .06);
}

.services article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.services article::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 120px;
  height: 120px;
  border: 18px solid var(--soft);
  border-radius: 999px;
}

.services article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.services article h3,
.services article p,
.services article small,
.services article .service-visual {
  position: relative;
  z-index: 1;
}

.services article small {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
}

article h3 { margin: 0 0 8px; }

.process-band {
  background: #252a31;
  color: #fff;
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 34px;
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.process-grid b {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary);
  margin-bottom: 12px;
}

.process-grid p { color: rgba(255,255,255,.72); }

.process-mascot {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  margin-top: 22px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.process-mascot img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.22));
}

.process-mascot span {
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}

.why-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}

.why-list {
  display: grid;
  gap: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 42px 6%;
  overflow: hidden;
  border-radius: 8px;
  background: #1b1f25;
  color: #fff;
}

.stats div {
  display: grid;
  gap: 6px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stats b {
  color: var(--primary);
  font-size: 28px;
}

.stats span { color: rgba(255,255,255,.72); }

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-section > div:first-child { max-width: 680px; }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.map-wrap {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(18, 24, 34, .10);
}

.map-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-mini-visual {
  position: relative;
  display: grid;
  width: 290px;
  flex: 0 0 290px;
  padding: 12px;
  border-radius: 8px;
  background: #f5f6f8;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(18,24,34,.08);
}

.contact-mini-visual img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 7px;
}

.contact-mini-visual span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(17,19,23,.84);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.formwrap { max-width: 940px; margin: auto; }
.wide { max-width: 1220px; }

.page-title,
.dash-head {
  margin-bottom: 24px;
}

.page-title h1,
.dash-head h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.page-title p,
.dash-head p {
  color: var(--muted);
  line-height: 1.6;
}

.auth-page {
  min-height: 62vh;
  display: grid;
  align-content: center;
}

.dashboard {
  max-width: 1280px;
  margin: auto;
}

.dash-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.dash-head.compact {
  margin: 34px 0 14px;
}

.dash-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--card);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form.small {
  max-width: 480px;
  grid-template-columns: 1fr;
}

.form.embedded {
  max-width: none;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.form textarea,
.form button { grid-column: 1 / -1; }

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.error {
  background: #ffe2e2;
  color: #9b0000;
  padding: 12px;
  border-radius: 8px;
}

.success {
  background: #e2f7ec;
  color: #0f6a39;
  padding: 12px;
  border-radius: 8px;
}

.table {
  overflow: auto;
  background: var(--card);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(18, 24, 34, .06);
}

table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: #f7f8fa; font-size: 13px; text-transform: uppercase; }

.table-link {
  color: var(--primary);
  font-weight: 900;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, 1.1fr);
  gap: 20px;
  align-items: start;
}

.profile-card {
  display: grid;
  gap: 10px;
}

.avatar-lg {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid var(--soft);
  background: var(--soft);
}

.avatar-empty {
  display: inline-grid;
  place-items: center;
  color: var(--primary);
  font-size: 42px;
  font-weight: 900;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-cell img,
.user-cell span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.user-cell span {
  display: inline-grid;
  place-items: center;
  background: var(--soft);
  color: var(--primary);
  font-weight: 900;
}

.ticket {
  max-width: 560px;
  background: var(--card);
  border: 1px dashed var(--muted);
  margin: 40px auto;
  border-radius: 8px;
  padding: 24px;
}

.status { color: var(--primary); font-weight: 900; }

.history-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  line-height: 1.8;
}

footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 40px 6%;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

footer strong { color: var(--text); }

.afip-badge {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.afip-badge small {
  color: var(--muted);
  font-size: 12px;
}

.afip-badge img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.floating-contact-stack {
  position: fixed;
  right: 18px;
  bottom: 110px;
  z-index: 25;
  display: grid;
  gap: 0;
  justify-items: end;
  pointer-events: none;
}

.floating-robot {
  pointer-events: auto;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  width: 94px;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 8px 12px rgba(18,24,34,.14));
  animation: robotFloatUi 7s ease-in-out infinite;
  will-change: transform;
}

.floating-robot img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.floating-robot-tooltip {
  position: absolute;
  right: 76px;
  top: 24px;
  white-space: nowrap;
  background: rgba(37,42,49,.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

@keyframes robotFloatUi {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes whatsGlow {
  0%, 100% { box-shadow: 0 14px 35px rgba(22,154,81,.24); }
  50% { box-shadow: 0 18px 42px rgba(22,154,81,.34); }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  text-align: center;
  transition: .35s ease;
}

#preloader img { width: 220px; }

.loaded #preloader { opacity: 0; pointer-events: none; }

.bar {
  width: 240px;
  height: 7px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}

.bar i {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--primary);
  animation: load 1s infinite;
}

@keyframes load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(240%); }
}

@media (max-width: 980px) {
  .top { display: none; }

  .nav { padding: 12px 5%; }
  .logo img { width: 176px; }
  .menu { display: inline-flex; }

  .links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 5%;
    flex-direction: column;
    align-items: flex-start;
  }

  .open .links { display: flex; }

  .hero,
  .hero-stage { min-height: 860px; }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
    padding: 42px 5% 80px;
  }

  .hero h1,
  .hero h2 { font-size: clamp(40px, 11vw, 62px); }

  .hero p { font-size: 17px; }

  .hero-controls { left: 5%; bottom: 28px; }

  .card-status,
  .repair-main {
    left: 8px;
  }

  .card-tools,
  .repair-small {
    right: 8px;
  }

  .laptop-visual {
    max-width: 520px;
  }

  section { padding: 46px 5%; }

  .services,
  .process-band,
  .process-grid,
  .why-section,
  .stats {
    grid-template-columns: 1fr;
  }

  .stats { margin: 28px 5%; }

  .contact-section {
    display: grid;
  }

  .contact-actions { justify-content: flex-start; }

  .map-wrap iframe { height: 280px; }

  .contact-mini-visual {
    width: min(100%, 320px);
    flex-basis: auto;
  }

  .dash-head {
    display: grid;
    align-items: start;
  }

  .dash-actions {
    justify-content: flex-start;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .form { grid-template-columns: 1fr; }

  .floating-contact-stack {
    right: 14px;
    bottom: 116px;
  }
}

@media (max-width: 560px) {
  .actions,
  .contact-actions { display: grid; }

  .btn { width: 100%; }

  .hero,
  .hero-stage { min-height: 980px; }

  .hero-panel,
  .hero-contact-card { min-height: 220px; }

  .hero-visual {
    min-height: 390px;
  }

  .floating-card,
  .repair-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 320px);
    min-width: 0;
  }

  .tech-scene,
  .service-stack {
    gap: 10px;
    align-content: start;
  }

  .tool-chip,
  .tech-chip,
  .icon-strip {
    display: none;
  }

  .laptop-screen {
    min-height: 190px;
  }

  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  th, td { padding: 12px; }

  .floating-contact-stack {
    right: 12px;
    bottom: 116px;
  }

  .floating-robot {
    display: none;
  }
}

/* E-commerce tech visual layer */
.hero.hero-carousel {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,106,0,.18), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f6 54%, #e2e7ee 100%);
}

.hero.hero-carousel .hero-slide {
  grid-template-columns: minmax(0, .92fr) minmax(420px, .88fr);
}

.product-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 450px;
  isolation: isolate;
}

.product-hero::before {
  content: "";
  position: absolute;
  width: min(540px, 90%);
  height: 330px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45,50,57,.10), rgba(255,255,255,.18)),
    repeating-linear-gradient(90deg, rgba(45,50,57,.08) 0 1px, transparent 1px 36px);
  border: 1px solid rgba(45,50,57,.12);
  transform: skewY(-5deg);
  z-index: -2;
}

.product-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,106,0,.26), transparent 64%);
  z-index: -3;
}

.product-visual {
  width: min(520px, 92%);
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
  filter: drop-shadow(0 16px 22px rgba(18,24,34,.16));
  animation: floatProduct 10s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.commerce-badge {
  position: absolute;
  left: 16px;
  top: 34px;
  background: #171a20;
  color: #fff;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  padding: 10px 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(18,24,34,.18);
}

.product-hero .floating-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(45,50,57,.16);
}

.product-hero .card-status {
  left: 0;
  bottom: 70px;
  top: auto;
}

.product-hero .card-tools {
  right: 4px;
  top: 86px;
  bottom: auto;
}

.product-hero .floating-card b {
  color: #171a20;
}

.product-hero .floating-card small,
.product-hero .floating-card span,
.product-hero .floating-card em {
  color: #56606d;
}

.product-hero .tech-chip {
  width: auto;
  min-width: 58px;
  padding: 0 11px;
  letter-spacing: 0;
}

.product-hero .chip-a {
  right: 70px;
  bottom: 44px;
}

.product-hero .chip-b {
  left: 96px;
  top: 66px;
}

.mascot-helper {
  position: absolute;
  right: -8px;
  bottom: 8px;
  width: clamp(118px, 16vw, 178px);
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(18,24,34,.16));
  animation: mascotFloat 9s ease-in-out infinite;
  z-index: 4;
  will-change: transform;
}

.mascot-small {
  width: clamp(98px, 13vw, 146px);
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.services article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.service-visual {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  background: #f7f8fa;
  margin-bottom: 10px;
  box-shadow: inset 0 0 0 1px rgba(45,50,57,.08);
}

.services article:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(255,106,0,.38);
  box-shadow: 0 12px 26px rgba(18,24,34,.10);
}

.reviews-grid article {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.services article,
.reviews-grid article {
  will-change: transform;
}

.reviews-grid article:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(255,106,0,.32);
  box-shadow: 0 12px 26px rgba(18,24,34,.10);
}

@media (max-width: 980px) {
  .hero.hero-carousel .hero-slide {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: 430px;
  }

  .product-visual {
    width: min(480px, 88%);
    height: 320px;
  }
}

@media (max-width: 560px) {
  .hero.hero-carousel,
  .hero.hero-carousel .hero-stage {
    min-height: 1080px;
  }

  .product-hero {
    min-height: 470px;
    align-content: start;
    gap: 10px;
  }

  .product-hero::before {
    width: 96%;
    height: 250px;
  }

  .product-visual {
    width: 94%;
    height: 250px;
  }

  .commerce-badge,
  .product-hero .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 310px);
  }

  .product-hero .tech-chip {
    display: none;
  }

  .mascot-helper {
    position: relative;
    right: auto;
    bottom: auto;
    width: 112px;
    margin-top: -24px;
  }
}

@media print {
  header, .nav, .top, footer, .btn, #preloader { display: none !important; }
  .ticket { box-shadow: none; border: 0; margin: 0; max-width: 58mm; font-size: 11px; }
  .ticket h1 { font-size: 16px; }
  .ticket h2 { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-robot,
  .product-visual,
  .mascot-helper,
  .bar i,
  .hero-slide {
    animation: none !important;
    transition: none !important;
  }
}

/* Home visual refresh */
.top-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 8px;
  background: #fff;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(255,106,0,.18);
}

.top-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero.hero-carousel {
  min-height: 650px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255,106,0,.17), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(45,50,57,.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3f5f8 48%, #e9edf2 100%);
  border-bottom: 1px solid var(--line);
}

.hero.hero-carousel .tech-grid {
  opacity: .42;
  background-image:
    linear-gradient(rgba(45,50,57,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,50,57,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, #000);
}

.hero.hero-carousel::before {
  right: 5%;
  top: 58px;
  width: 38%;
  height: 74%;
  border: 1px solid rgba(255,106,0,.16);
  background: linear-gradient(135deg, rgba(255,106,0,.08), rgba(255,255,255,.08));
  transform: skewX(-10deg);
}

.hero.hero-carousel::after {
  left: auto;
  right: 7%;
  bottom: 64px;
  width: 320px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero.hero-carousel .hero-stage {
  min-height: 650px;
}

.hero.hero-carousel .hero-slide {
  grid-template-columns: minmax(0, .96fr) minmax(360px, .82fr);
  align-items: center;
  gap: 44px;
  color: var(--text);
  padding: 62px 6% 86px;
}

.hero.hero-carousel .pill {
  background: rgba(255,106,0,.10);
  border-color: rgba(255,106,0,.22);
  color: var(--primary-dark);
}

.hero.hero-carousel h1,
.hero.hero-carousel h2 {
  color: #171a20;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
}

.hero.hero-carousel p {
  color: #4b5563;
  max-width: 650px;
}

.hero.hero-carousel .hero-badges span {
  color: #303640;
  background: rgba(255,255,255,.62);
  border-color: rgba(255,106,0,.18);
  box-shadow: 0 10px 24px rgba(18,24,34,.06);
}

.hero.hero-carousel .actions {
  position: relative;
  z-index: 4;
  margin-top: 6px;
}

.hero.hero-carousel .btn.outline {
  color: #252a31;
  border-color: rgba(45,50,57,.22);
  background: rgba(255,255,255,.42);
}

.hero.hero-carousel .hero-controls {
  bottom: 34px;
}

.hero.hero-carousel .hero-dot {
  height: 7px;
  background: rgba(45,50,57,.22);
}

.hero.hero-carousel .hero-dot.is-active {
  background: var(--primary);
}

.hero-clean {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-clean::before {
  width: min(410px, 74vw);
  background:
    radial-gradient(circle, rgba(255,106,0,.20), transparent 58%),
    conic-gradient(from 140deg, rgba(255,106,0,.32), rgba(45,50,57,.10), rgba(255,106,0,.16), rgba(255,255,255,.12));
  border-color: rgba(255,106,0,.20);
}

.hero-clean::after {
  width: min(520px, 82vw);
  background:
    linear-gradient(90deg, rgba(45,50,57,.08) 1px, transparent 1px),
    linear-gradient(rgba(45,50,57,.08) 1px, transparent 1px);
  opacity: .65;
}

.hero-clean .floating-card {
  max-width: 210px;
  min-width: 160px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-color: rgba(45,50,57,.14);
  box-shadow: 0 16px 38px rgba(18,24,34,.12);
}

.hero-clean .floating-card small,
.hero-clean .floating-card em,
.hero-clean .floating-card span {
  color: #5c6674;
}

.hero-clean .floating-card b {
  color: #171a20;
}

.hero-clean .card-status {
  left: 4px;
  top: 52px;
}

.hero-clean .card-tools {
  right: 2px;
  bottom: 48px;
}

.hero-clean .tech-chip {
  width: auto;
  min-width: 54px;
  padding: 0 10px;
}

.hero-clean .chip-a { right: 36px; top: 26px; }
.hero-clean .chip-b { left: 44px; bottom: 28px; }

.process-icon-img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 14px;
  background: #f6f8fa;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.metric-badge {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,106,0,.22), rgba(255,106,0,.08));
  color: #fff;
  border: 1px solid rgba(255,106,0,.32);
  font-size: 21px;
  box-shadow: 0 12px 24px rgba(255,106,0,.13);
}

.metric-badge.metric-emoji {
  background: linear-gradient(135deg, rgba(255,106,0,.28), rgba(255,255,255,.10));
}

.metric-badge.metric-img img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.reviews-section {
  background:
    linear-gradient(180deg, #fff, #f6f7f9);
  padding: 64px 6%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reviews-grid article {
  position: relative;
  overflow: hidden;
}

.reviews-grid article::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--soft);
}

.stars {
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.review-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}

.review-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #334155;
  background: #eef2f7;
}

.reviews-grid small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 10px;
}

.reviews-grid h3,
.reviews-grid p {
  position: relative;
  z-index: 1;
}

.reviews-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.opinions-page {
  padding-top: 48px;
}

.opinions-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 22px;
}

.opinions-pagination {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#opinions-page-label {
  font-weight: 700;
  color: var(--dark);
}

.conversion-cta {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8f2;
  display: grid;
  gap: 12px;
}

.conversion-cta p {
  margin: 0;
  color: #2f3640;
  font-weight: 700;
}

.conversion-cta-wide {
  margin: 34px 6%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 150px;
}

.contact-boost .help-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 106, 0, .25);
  background: #fff5ec;
  display: grid;
  gap: 10px;
}

.contact-boost .help-box h3,
.contact-boost .help-box p {
  margin: 0;
}

.request-microcopy,
.request-trust {
  margin: 0 0 14px;
  color: #475467;
  font-weight: 600;
}

.request-trust {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef8f1;
  color: #0f6a39;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 980px) {
  .hero.hero-carousel,
  .hero.hero-carousel .hero-stage {
    min-height: 860px;
  }

  .hero.hero-carousel .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 5% 78px;
  }

  .hero-clean {
    min-height: 340px;
  }

  .hero.hero-carousel .hero-copy,
  .hero.hero-carousel .hero-copy p {
    max-width: 100%;
  }

  .hero.hero-carousel .hero-badges,
  .hero.hero-carousel .actions {
    justify-content: center;
  }

  .hero.hero-carousel .product-hero {
    min-height: 340px;
    width: 100%;
  }

  .hero.hero-carousel .product-visual {
    width: min(460px, 92%);
    height: 250px;
    object-fit: contain;
  }

  .hero.hero-carousel .commerce-badge {
    left: 50%;
    transform: translateX(-50%);
    top: 16px;
  }

  .hero.hero-carousel .mascot-helper {
    right: 8px;
    bottom: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero.hero-carousel,
  .hero.hero-carousel .hero-stage {
    min-height: 780px;
  }

  .hero.hero-carousel h1,
  .hero.hero-carousel h2 {
    font-size: clamp(30px, 8vw, 36px);
    margin: 10px 0;
  }

  .hero.hero-carousel p {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .hero.hero-carousel .hero-slide {
    padding: 24px 5% 70px;
    gap: 10px;
  }

  .hero.hero-carousel .hero-badges {
    gap: 7px;
    margin-bottom: 14px;
  }

  .hero.hero-carousel .hero-badges span {
    font-size: 11px;
    padding: 6px 8px;
  }

  .hero.hero-carousel .product-hero {
    min-height: 260px;
  }

  .hero.hero-carousel .product-visual {
    width: min(360px, 94%);
    height: 180px;
  }

  .hero.hero-carousel .commerce-badge {
    display: none;
  }

  .hero.hero-carousel .mascot-helper {
    width: 88px;
    margin-top: -10px;
  }

  .hero-clean .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 300px);
    min-width: 0;
  }

  .hero-clean {
    gap: 10px;
  }

  .hero-clean .tech-chip {
    display: none;
  }

  .mobile-quick-actions {
    position: sticky;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    background: rgba(255,255,255,.95);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 8px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }

  .mobile-quick-actions a,
  .mobile-quick-actions button {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    display: grid;
    place-items: center;
    padding: 0 6px;
  }

  .mobile-quick-actions button {
    cursor: pointer;
    font-family: inherit;
  }

  .contact-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-section > div:first-child {
    max-width: 100%;
  }

  .contact-actions,
  .contact-boost .actions,
  .map-actions {
    justify-content: center;
  }

  .contact-mini-visual {
    width: min(100%, 350px);
    margin: 0 auto;
    order: 2;
  }

  .map-wrap {
    order: 3;
  }
}
