:root {
  --bg: #0b0d0e;
  --bg-soft: #12161a;
  --panel: rgba(22, 27, 33, 0.66);
  --panel-strong: rgba(16, 20, 26, 0.86);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c7ced6;
  --green: #00ff9c;
  --blue: #00c2ff;
  --gold: #d4af37;
  --gold-soft: #f5e6a8;
  --gold-deep: #c9a227;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  --radius-pill: 999px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(0, 194, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(212, 175, 55, 0.12), transparent 22%),
    linear-gradient(180deg, #060809 0%, #0b0d0e 48%, #10151b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.ambient,
.energy-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.ambient-one {
  background: radial-gradient(circle at 10% 20%, rgba(0, 255, 156, 0.12), transparent 18%);
  filter: blur(10px);
  animation: drift 12s ease-in-out infinite alternate;
}

.ambient-two {
  background: radial-gradient(circle at 85% 10%, rgba(0, 194, 255, 0.12), transparent 20%);
  filter: blur(8px);
  animation: drift 14s ease-in-out infinite alternate-reverse;
}

.energy-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.95), transparent 88%);
}

.topbar {
  width: var(--container);
  position: sticky;
  top: 8px;
  z-index: 20;
  margin: 0 auto;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  border: 1px solid transparent;
  border-radius: 20px;
}

.topbar.scrolled {
  background: rgba(9, 12, 14, 0.76);
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 35%, rgba(245, 230, 168, 0.85) 50%, transparent 65%);
  animation: shimmer 5s linear infinite;
}

.brand-bolt {
  position: absolute;
  inset: 9px 14px;
  clip-path: polygon(44% 0, 100% 0, 64% 42%, 88% 42%, 18% 100%, 44% 58%, 18% 58%);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold), var(--gold-deep));
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.42));
}

.brand-copy,
.footer-brand {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.96rem;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-soft));
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  display: inline-grid;
  place-items: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  width: var(--container);
  margin: 6px auto 0;
  background: rgba(11, 14, 18, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 12px;
  display: grid;
  gap: 8px;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-menu.open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-link,
.mobile-quote {
  padding: 14px 16px;
  border-radius: 16px;
}

.mobile-link {
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.mobile-quote {
  text-align: center;
  color: #091013;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--gold-deep));
}

.section {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: start;
  gap: 16px;
  padding: 10px 0 36px;
}

.inner-hero {
  min-height: auto;
  padding-top: 20px;
  padding-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.generic-page h1,
.generic-page h2,
.generic-page h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(2rem, 9.6vw, 3.5rem);
  max-width: 9ch;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero p,
.section-heading p,
.feature-block p,
.product-card p,
.tool-card p,
.contact-card p,
.cta-panel p,
.metric span,
.generic-page,
.generic-page p,
.generic-page li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 34rem;
  font-size: 0.94rem;
  margin: 12px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-gold {
  color: #161203;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--gold-deep));
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.3);
  animation: pulseGold 3.6s ease-in-out infinite;
}

.btn-blue {
  color: #051118;
  background: linear-gradient(135deg, var(--blue), #9de6ff);
  box-shadow: 0 10px 30px rgba(0, 194, 255, 0.18);
}

.btn-glass {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 16px;
  border-radius: 20px;
}

.metric strong,
.product-card h3,
.feature-block h3,
.tool-card h3,
.contact-card h3,
.showcase-card strong,
.hero-logo-card h2 {
  display: block;
  margin-bottom: 10px;
}

.hero-visual {
  display: grid;
  place-items: center;
  order: -1;
}

.hero-orb {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.hero-orb::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 255, 156, 0.15), transparent 42%),
    radial-gradient(circle at 65% 35%, rgba(0, 194, 255, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 60px rgba(255,255,255,0.06), 0 0 90px rgba(0,0,0,0.28);
}

.hero-orb-core,
.hero-ring {
  position: absolute;
  border-radius: 50%;
}

.hero-orb-core {
  inset: 26%;
  background:
    radial-gradient(circle at 40% 35%, rgba(245, 230, 168, 0.8), rgba(212, 175, 55, 0.48), transparent 64%),
    radial-gradient(circle at 55% 65%, rgba(0, 194, 255, 0.38), transparent 46%),
    #11161c;
  filter: blur(1px);
  animation: breathe 5s ease-in-out infinite;
}

.hero-ring {
  border: 1px solid rgba(255,255,255,0.12);
}

.ring-one {
  inset: 10%;
  animation: rotateSlow 16s linear infinite;
}

.ring-two {
  inset: 2%;
  border-style: dashed;
  border-color: rgba(0,255,156,0.28);
  animation: rotateSlow 22s linear infinite reverse;
}

.hero-logo-card {
  position: relative;
  width: min(86%, 260px);
  padding: 16px;
  border-radius: 22px;
  overflow: hidden;
}

.hero-logo-card h2 {
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-logo-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-logo-card::after,
.product-card::after,
.feature-block::after,
.tool-card::after,
.contact-card::after,
.cta-panel::after,
.generic-page::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,255,156,0.4), rgba(0,194,255,0.28), rgba(212,175,55,0.45));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms ease;
}

.hero-logo-card:hover::after,
.product-card:hover::after,
.feature-block:hover::after,
.tool-card:hover::after,
.contact-card:hover::after,
.cta-panel:hover::after,
.generic-page:hover::after {
  opacity: 1;
}

.logo-badge {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #0d1114;
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--gold-deep));
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  max-width: 100%;
}

.hero-signal span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.82rem;
}

.hero-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 255, 156, 0.6);
}

.lightning-divider {
  width: var(--container);
  margin: 0 auto;
  height: 34px;
  position: relative;
}

.lightning-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,156,0.9), rgba(0,194,255,0.9), rgba(212,175,55,0.86), transparent);
  box-shadow: 0 0 18px rgba(0,194,255,0.4);
}

.lightning-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 12px);
  width: 120px;
  height: 24px;
  transform: translateX(-50%);
  clip-path: polygon(0 58%, 18% 45%, 30% 62%, 44% 34%, 56% 64%, 70% 40%, 84% 56%, 100% 48%, 100% 58%, 84% 44%, 70% 60%, 56% 34%, 44% 66%, 30% 40%, 18% 55%, 0 42%);
  background: linear-gradient(90deg, rgba(0,255,156,0.65), rgba(0,194,255,0.88), rgba(212,175,55,0.68));
  filter: drop-shadow(0 0 12px rgba(0,194,255,0.55));
}

.products,
.about,
.showcase,
.tools,
.cta-band,
.contact {
  padding: 18px 0 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 16px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(1.68rem, 7vw, 3.4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.product-grid,
.features-grid,
.tool-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.product-card,
.feature-block,
.tool-card,
.contact-card,
.cta-panel,
.generic-page {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.product-card,
.feature-block,
.tool-card,
.contact-card {
  padding: 18px;
}

.generic-page {
  padding: 20px;
}

.product-card {
  min-height: 0;
}

.product-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.product-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.5);
}

.product-icon-green {
  background: linear-gradient(135deg, rgba(0,255,156,0.9), rgba(0,255,156,0.2));
}

.product-icon-blue {
  background: linear-gradient(135deg, rgba(0,194,255,0.9), rgba(0,194,255,0.2));
}

.product-icon-gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.95), rgba(212,175,55,0.2));
}

.product-icon-mix {
  background: linear-gradient(135deg, rgba(0,255,156,0.65), rgba(0,194,255,0.5), rgba(212,175,55,0.7));
}

.feature-index {
  display: inline-block;
  color: var(--gold-soft);
  font-family: "Orbitron", sans-serif;
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.showcase-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 2px;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.showcase-strip::-webkit-scrollbar {
  height: 8px;
}

.showcase-strip::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}

.showcase-card {
  min-height: 240px;
  padding: 18px;
  border-radius: 24px;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(9, 11, 13, 0.14), rgba(9, 11, 13, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 20%),
    linear-gradient(145deg, #1b1f24, #101418);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 36%);
  mix-blend-mode: screen;
}

.card-cars {
  box-shadow: inset 0 0 0 1px rgba(0,255,156,0.16);
}

.card-trucks {
  box-shadow: inset 0 0 0 1px rgba(0,194,255,0.16);
}

.card-solar {
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.18);
}

.card-backup {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.tool-grid,
.contact-grid {
  margin-top: 8px;
}

.tool-card .btn {
  margin-top: 8px;
  width: 100%;
}

.cta-panel {
  padding: 22px 18px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(0,255,156,0.08), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(0,194,255,0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}

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

.contact-card a {
  color: var(--text);
  word-break: break-word;
}

.footer {
  width: var(--container);
  margin: 22px auto 120px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 92px;
  z-index: 25;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #06110b;
  background: linear-gradient(135deg, var(--green), #a8ffd5);
  box-shadow: 0 18px 30px rgba(0,255,156,0.28);
}

.bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 24;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(11,13,14,0), rgba(11,13,14,0.95) 35%, rgba(11,13,14,0.98) 100%);
}

.bottom-cta a {
  min-height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #161203;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--gold-deep));
  box-shadow: 0 12px 34px rgba(212,175,55,0.24);
}

.content-page > *:first-child {
  margin-top: 0;
}

.content-page > *:last-child {
  margin-bottom: 0;
}

.hero-copy,
.hero-visual,
.section-heading,
.showcase-strip,
.product-card,
.feature-block,
.tool-card,
.contact-card,
.cta-panel,
.generic-page,
.showcase-card,
.metric {
  width: 100%;
  max-width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 360ms ease, transform 360ms ease;
}

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

@keyframes shimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(140%); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0.14), 0 10px 30px rgba(212,175,55,0.22); }
  50% { box-shadow: 0 0 24px rgba(212, 175, 55, 0.32), 0 10px 34px rgba(212,175,55,0.3); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.98); }
  50% { transform: scale(1.03); }
}

@keyframes drift {
  from { transform: translate3d(-1.5%, 0, 0); }
  to { transform: translate3d(1.5%, 2%, 0); }
}

@media (min-width: 700px) {
  .topbar {
    padding: 16px 18px;
    top: 12px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
  }

  .btn {
    width: auto;
  }

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

  .showcase-strip {
    grid-auto-columns: minmax(320px, 72%);
  }

  .tool-card .btn {
    width: fit-content;
  }

  .footer {
    grid-template-columns: 1.1fr 0.8fr 1fr auto;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .desktop-nav {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu,
  .bottom-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    padding-top: 40px;
    min-height: calc(100vh - 82px);
    align-items: center;
  }

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

  .hero-visual {
    order: 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-orb {
    width: min(100%, 480px);
  }

  .hero-logo-card {
    width: min(82%, 360px);
    padding: 28px;
    border-radius: 28px;
  }

  .hero-logo-card h2 {
    font-size: 1.5rem;
  }

  .hero-logo-card p,
  .hero-signal span {
    font-size: 0.95rem;
  }

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

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

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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