:root {
  --navy: #08264b;
  --navy-2: #0a315c;
  --navy-3: #123d69;
  --blue-soft: #94d7fb;
  --blue-light: #bce9ff;
  --gold: #d7a534;
  --gold-dark: #a87c21;
  --red: #d82421;
  --green: #39b85f;
  --ink: #071d39;
  --muted: #263748;
  --white: #ffffff;
  --shadow: 0 12px 25px rgba(8, 38, 75, 0.18);
  --radius: 8px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

.section-inner,
.header-inner,
.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  box-shadow: 0 3px 14px rgba(7, 29, 57, 0.12);
}

.header-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 295px 1fr;
  grid-template-areas:
    "brand actions"
    "brand nav";
  align-items: center;
  column-gap: 22px;
  padding: 13px 0 15px;
}

.brand {
  grid-area: brand;
  display: block;
}

.brand img {
  width: 260px;
  animation: logoIn 0.85s ease-out both;
}

.header-actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 800;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1;
}

.phone-link svg,
.contact-item svg {
  width: 26px;
  height: 26px;
  fill: #d70f22;
}

.whatsapp-dot {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.whatsapp-dot svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.site-nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a {
  padding: 4px 9px;
  border-left: 2px solid #1a1a1a;
}

.site-nav a:first-child {
  color: var(--gold-dark);
  border-left: 0;
}

.menu-toggle {
  display: none;
  grid-area: menu;
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle, rgba(8, 38, 75, 0.2) 1px, transparent 2px) 0 0 / 28px 28px,
    linear-gradient(115deg, transparent 0 72%, rgba(141, 184, 207, 0.5) 72.2%, transparent 72.6%),
    linear-gradient(25deg, transparent 0 78%, rgba(215, 165, 52, 0.34) 78.2%, transparent 78.6%);
  animation: techDrift 14s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: 52%;
  right: -70px;
  bottom: -38px;
  height: 170px;
  opacity: 0.72;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 12px, rgba(191, 153, 48, 0.58) 13px 15px, transparent 16px 28px);
  transform: rotate(-9deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 36px;
  padding: 42px 0 50px;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0;
  animation: textIn 0.75s ease-out 0.2s both;
}

.hero-copy {
  min-width: 0;
}

.hero-copy p {
  max-width: 600px;
  margin: 0 0 25px;
  color: #000;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  line-height: 1.1;
  animation: textIn 0.75s ease-out 0.35s both;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 22px;
  border-radius: 7px;
  background: linear-gradient(#e73831, #cf1a17);
  color: #ffffff;
  box-shadow: 0 5px 9px rgba(154, 19, 17, 0.35);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  animation: ctaIn 0.75s ease-out 0.55s both, ctaPulse 2.2s ease-in-out 1.4s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.primary-cta:hover,
.contact-item.whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.primary-cta:hover {
  box-shadow: 0 10px 18px rgba(154, 19, 17, 0.35);
}

.primary-cta svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.primary-cta span {
  min-width: 0;
}

.hero-art {
  position: relative;
  min-height: 230px;
}

.hero-art p {
  position: absolute;
  left: 20px;
  top: 102px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 0.92;
  text-align: right;
}

.wifi-mark {
  position: absolute;
  right: 82px;
  top: 7px;
  width: 190px;
  height: 155px;
  animation: floatSignal 3.8s ease-in-out infinite;
}

.wifi-mark span {
  position: absolute;
  left: 50%;
  border: 18px solid var(--gold);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
  transform: translateX(-50%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.6), 0 3px 2px rgba(89,61,14,0.22);
}

.wifi-mark span:nth-child(1) {
  top: 0;
  width: 190px;
  height: 94px;
}

.wifi-mark span:nth-child(2) {
  top: 42px;
  width: 126px;
  height: 64px;
}

.wifi-mark span:nth-child(3) {
  top: 82px;
  width: 70px;
  height: 38px;
}

.wifi-mark i {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 47px;
  height: 47px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.6), 0 3px 3px rgba(89,61,14,0.25);
}

.router {
  position: absolute;
  left: 110px;
  bottom: 15px;
  width: 190px;
  height: 74px;
  border-radius: 3px;
  background: #202833;
  box-shadow: 0 13px 18px rgba(8,38,75,0.18);
  animation: routerBlink 2s ease-in-out infinite;
}

.router::after {
  content: "";
  position: absolute;
  left: 70px;
  right: 8px;
  bottom: 12px;
  height: 10px;
  background: repeating-linear-gradient(90deg, #121820 0 12px, #ccd3d9 13px 20px);
}

.router span {
  position: absolute;
  left: 14px;
  top: 12px;
  color: #ffffff;
  font-size: 0.56rem;
  line-height: 1.05;
}

.router b {
  position: absolute;
  bottom: 14px;
  width: 7px;
  height: 7px;
  background: #f6d266;
  border-radius: 50%;
}

.router b:nth-child(2) { left: 16px; }
.router b:nth-child(3) { left: 30px; }
.router b:nth-child(4) { left: 44px; }
.router b:nth-child(5) { left: 58px; }

.circuit-lines {
  position: absolute;
  left: 283px;
  top: 90px;
  width: 150px;
  height: 100px;
}

.circuit-lines i {
  display: block;
  height: 1px;
  margin: 15px 0;
  background: #87aec4;
}

.circuit-lines i::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 2px solid #8ab8d0;
  border-radius: 2px;
}

.services-section {
  background: linear-gradient(90deg, #8ed5f7, #c8efff 50%, #91d6f7);
  padding: 36px 0 50px;
}

.services-section h2,
.shop-section h2 {
  margin: 0 0 23px;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  min-height: 238px;
  padding: 20px 22px 22px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 32px rgba(8, 38, 75, 0.24);
}

.service-icon {
  height: 70px;
  margin: 0 auto 9px;
  position: relative;
  color: var(--navy);
  transition: transform 0.22s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.04);
}

.service-card h3 {
  margin: 0 0 12px;
  color: #041b35;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.34rem;
  line-height: 1;
}

.service-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #000;
  font-size: 0.88rem;
  line-height: 1.28;
  font-weight: 700;
}

.service-card li {
  position: relative;
  padding-left: 14px;
  margin-top: 5px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.network-icon {
  width: 82px;
}

.network-icon::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 8px;
  width: 42px;
  height: 28px;
  border: 3px solid #111;
  border-radius: 5px;
  background: #637588;
}

.network-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 43px;
  width: 57px;
  height: 9px;
  background: var(--gold);
  border: 2px solid #111;
  border-radius: 7px;
}

.network-icon span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #111;
  background: #e9bc48;
  border-radius: 50%;
}

.network-icon span:nth-child(1) { left: 2px; top: 28px; }
.network-icon span:nth-child(2) { left: 18px; top: 15px; }
.network-icon span:nth-child(3) { left: 40px; top: 1px; }
.network-icon span:nth-child(4) { left: 61px; top: 28px; }

.support-icon {
  width: 150px;
}

.support-icon span:nth-child(1) {
  position: absolute;
  left: 6px;
  top: 9px;
  width: 61px;
  height: 45px;
  border: 3px solid #111;
  background: linear-gradient(135deg, #545d65, #202730);
}

.support-icon span:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -16px;
  width: 18px;
  height: 16px;
  background: #111;
}

.support-icon span:nth-child(2) {
  position: absolute;
  left: 82px;
  top: 9px;
  width: 48px;
  height: 58px;
  border: 3px solid #111;
  background: #e8e8e8;
}

.support-icon span:nth-child(2)::before {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -5px;
  height: 24px;
  border: 3px solid #111;
  background: #c9cdd2;
}

.support-icon span:nth-child(3) {
  position: absolute;
  right: 2px;
  top: 19px;
  width: 37px;
  height: 38px;
  border: 3px solid #111;
  background: #1d252e;
}

.shop-icon {
  width: 154px;
}

.shop-icon span:nth-child(1) {
  position: absolute;
  left: 1px;
  top: 16px;
  width: 74px;
  height: 49px;
  border: 3px solid #111;
  background: #e7f3f7;
}

.shop-icon span:nth-child(1)::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -17px;
  width: 74px;
  height: 18px;
  border: 3px solid #111;
  background: repeating-linear-gradient(90deg, #efc04e 0 14px, #fff 15px 28px);
}

.shop-icon span:nth-child(2) {
  position: absolute;
  right: 20px;
  top: 19px;
  width: 39px;
  height: 47px;
  border: 3px solid #111;
  border-radius: 5px 5px 12px 12px;
  background: #e0a13b;
}

.shop-icon span:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: -13px;
  width: 21px;
  height: 18px;
  border: 3px solid #111;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.shop-icon span:nth-child(3) {
  position: absolute;
  right: 0;
  top: 27px;
  width: 35px;
  height: 37px;
  border: 3px solid #111;
  border-radius: 5px 5px 10px 10px;
  background: #f0cf73;
}

.about-section,
.contact-section,
.site-footer {
  background:
    radial-gradient(circle at 18% 15%, rgba(44, 111, 161, 0.45), transparent 34%),
    linear-gradient(105deg, #082344, #0b315c 58%, #082344);
  color: #ffffff;
}

.about-section {
  padding: 39px 0 44px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.store-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.store-frame img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
}

.about-copy span {
  display: block;
  margin-bottom: 4px;
  color: #d9b356;
  text-transform: uppercase;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 800;
}

.about-title-line {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
}

.about-title-line h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
}

.about-title-line img {
  width: 155px;
}

.about-copy p {
  max-width: 510px;
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.18;
}

.shop-section {
  background: linear-gradient(90deg, #8ed5f7, #c7efff 52%, #94d8f8);
  padding: 35px 0 38px;
}

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

.product-card {
  min-height: 142px;
  padding: 12px 9px 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 14px rgba(8, 38, 75, 0.14);
  text-align: center;
}

.product-card h3 {
  margin: 7px 0 3px;
  color: #071d39;
  font-size: 0.78rem;
  line-height: 1.02;
  font-weight: 800;
}

.product-card p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-art {
  position: relative;
  height: 76px;
  margin: 0 auto;
}

.pc-art {
  width: 76px;
}

.pc-art span {
  position: absolute;
  left: 13px;
  top: 8px;
  width: 44px;
  height: 57px;
  border: 3px solid #111;
  background: linear-gradient(145deg, #16191f, #3c4657);
  border-radius: 3px;
}

.pc-art i,
.pc-art b {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #34efff 0 16%, #9048ff 17% 44%, #151a25 45% 100%);
  width: 17px;
  height: 17px;
}

.pc-art i { left: 19px; top: 16px; }
.pc-art b { right: 15px; bottom: 15px; }

.printer-art {
  width: 84px;
}

.printer-art span {
  position: absolute;
  left: 18px;
  top: 8px;
  width: 48px;
  height: 27px;
  border: 3px solid #111;
  background: #e8e8e8;
}

.printer-art i {
  position: absolute;
  left: 8px;
  top: 31px;
  width: 68px;
  height: 30px;
  border: 3px solid #111;
  background: #232b35;
  border-radius: 4px;
}

.printer-art b {
  position: absolute;
  left: 21px;
  top: 51px;
  width: 45px;
  height: 18px;
  border: 2px solid #9aa5ad;
  background: linear-gradient(135deg, #fff 0 55%, #d7b04d 56% 100%);
}

.headphone-art {
  width: 75px;
}

.headphone-art span {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 51px;
  height: 51px;
  border: 9px solid #111;
  border-bottom: 0;
  border-radius: 55px 55px 0 0;
}

.headphone-art i,
.headphone-art b {
  position: absolute;
  top: 37px;
  width: 18px;
  height: 31px;
  border-radius: 12px;
  background: #1b1d22;
  box-shadow: inset 0 -8px 0 #4b4e57;
}

.headphone-art i { left: 7px; }
.headphone-art b { right: 7px; }

.cup-art {
  width: 54px;
}

.cup-art span {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 38px;
  height: 58px;
  clip-path: polygon(10% 0, 90% 0, 78% 100%, 22% 100%);
  background: linear-gradient(90deg, #153e63, #2d6790 45%, #0c2945);
}

.cup-art span::before {
  content: "A";
  position: absolute;
  inset: 20px 0 auto;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
}

.cup-art i {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 38px;
  height: 8px;
  border-radius: 50%;
  background: #d2d5d8;
}

.cup-art b {
  position: absolute;
  left: 13px;
  bottom: 7px;
  width: 28px;
  height: 4px;
  border-radius: 50%;
  background: #e4e6e8;
}

.contact-section {
  padding: 29px 0 21px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.map-art {
  position: relative;
  display: block;
  min-height: 170px;
  overflow: hidden;
  border-radius: 3px;
  background: #244d75;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.map-art:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.map-art svg {
  width: 100%;
  height: 170px;
}

.map-art path {
  fill: none;
  stroke: #102e4e;
  stroke-width: 8;
  stroke-linecap: round;
}

.pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pin span {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  background: #244d75;
  border-radius: 50%;
}

.contact-copy {
  color: #ffffff;
  font-size: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.contact-item strong {
  font-size: 1.9rem;
  line-height: 1;
}

.contact-item.whatsapp svg {
  fill: var(--green);
}

.contact-item.whatsapp {
  width: fit-content;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.soft-reveal {
  transform: translateY(18px);
}

.service-card:nth-child(2) {
  transition-delay: 0.08s;
}

.service-card:nth-child(3) {
  transition-delay: 0.16s;
}

.contact-copy p {
  margin: 8px 0;
  color: #ffffff;
  font-weight: 700;
}

.contact-copy p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.site-footer {
  position: relative;
  padding: 26px 0 18px;
  overflow: hidden;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  gap: 38px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

.footer-logo img {
  width: 190px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: #e4c16c;
  font-size: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 4px;
}

.site-footer a {
  color: #ffffff;
  font-size: 0.85rem;
}

.footer-star {
  position: absolute;
  right: 102px;
  top: -34px;
  width: 82px;
  height: 82px;
  background: rgba(255,255,255,0.62);
  clip-path: polygon(50% 0, 60% 39%, 100% 50%, 60% 61%, 50% 100%, 40% 61%, 0 50%, 40% 39%);
}

.copyright {
  margin: 13px 0 0;
  color: #ffffff;
  text-align: center;
  font-size: 0.76rem;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    grid-template-columns: 210px 1fr 46px;
    grid-template-areas:
      "brand actions menu"
      "nav nav nav";
    row-gap: 10px;
  }

  .brand img {
    width: 205px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 9px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 16px;
    padding-top: 34px;
  }

  .hero-art {
    min-height: 235px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    gap: 26px;
  }

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

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .section-inner,
  .header-inner,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    position: relative;
    grid-template-columns: 1fr 42px;
    grid-template-areas:
      "brand menu"
      "actions actions"
      "nav nav";
  }

  .menu-toggle {
    display: none;
  }

  .brand img {
    width: 185px;
  }

  .header-actions {
    justify-content: center;
  }

  .phone-link {
    font-size: 1.45rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 330px);
    margin: 0 auto;
    align-items: stretch;
    text-align: center;
  }

  .site-nav a {
    border-left: 0;
    border-top: 1px solid rgba(8,38,75,0.16);
    padding: 9px 5px;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: 1.32rem;
    max-width: 330px;
  }

  .hero-copy p {
    font-size: 0.93rem;
    max-width: 330px;
  }

  .primary-cta {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    width: min(100%, 330px);
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.72rem;
    min-height: 48px;
    white-space: normal;
  }

  .primary-cta svg {
    width: 22px;
    height: 22px;
  }

  .primary-cta span {
    display: block;
    overflow-wrap: anywhere;
  }

  .hero-art {
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -42px;
  }

  .product-grid {
    gap: 12px;
  }

  .about-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .contact-item strong {
    font-size: 1.55rem;
  }

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

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateX(-24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 5px 9px rgba(154, 19, 17, 0.35);
  }
  50% {
    box-shadow: 0 5px 9px rgba(154, 19, 17, 0.35), 0 0 0 8px rgba(216, 36, 33, 0.13);
  }
}

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

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

@keyframes routerBlink {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

@keyframes techDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 56px 28px, 0 0, 0 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
