:root {
  --navy: #060b18;
  --space: #020617;
  --blue: #2f80ff;
  --cyan: #22d3ee;
  --violet: #7c3aed;
  --white: #f8fafc;
  --ink: #172033;
  --muted: #64748b;
  --orange: #f97316;
  --orange-soft: #fff1e7;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-solid: #ffffff;
  --line: rgba(15, 23, 42, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: #fff8f1;
}

body::before {
  display: none;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-flash {
  position: fixed;
  top: 104px;
  right: 50%;
  z-index: 70;
  transform: translateX(50%);
  width: min(680px, calc(100% - 32px));
  border: 1px solid rgba(22, 163, 74, 0.34);
  border-radius: 8px;
  padding: 18px 20px;
  color: #14532d;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.16), transparent 58%),
    #ecfdf5;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.site-flash.error {
  border-color: rgba(220, 38, 38, 0.25);
  color: #991b1b;
  background: #fef2f2;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  width: 100%;
  height: 820px;
  pointer-events: none;
  opacity: 0.72;
}

.site-header {
  --header-split: 0;
  position: fixed;
  top: 14px;
  right: 50%;
  z-index: 40;
  transform: translateX(50%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(1240px, calc(100% - 28px));
  min-height: 76px;
  border: 1px solid rgba(234, 88, 12, 0.32);
  border-radius: 34px;
  padding: 10px 16px;
  background: rgba(249, 115, 22, 0.94);
  box-shadow: 0 18px 50px rgba(154, 52, 18, 0.22);
  backdrop-filter: blur(18px);
  isolation: isolate;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: calc(50% + 1px);
  border: 1px solid rgba(234, 88, 12, 0.32);
  background: rgba(249, 115, 22, 0.94);
  box-shadow: 0 18px 50px rgba(154, 52, 18, 0.22);
  backdrop-filter: inherit;
  opacity: var(--header-opacity, 1);
  pointer-events: none;
}

.site-header::before {
  right: 0;
  border-left: 0;
  border-radius: 0 34px 34px 0;
  transform: translateX(calc(var(--header-split) * 58vw));
}

.site-header::after {
  left: 0;
  border-right: 0;
  border-radius: 34px 0 0 34px;
  transform: translateX(calc(var(--header-split) * -58vw));
}

.site-header.is-splitting {
  --header-opacity: calc(1 - var(--header-split));
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-header.is-splitting .site-logo,
.site-header.is-splitting .nav-toggle {
  opacity: calc(1 - var(--header-split));
  transform: translateX(calc(var(--header-split) * 42vw));
}

.site-header.is-splitting .site-nav,
.site-header.is-splitting .gift-cta-header {
  opacity: calc(1 - var(--header-split));
  transform: translateX(calc(var(--header-split) * -42vw));
}

.site-header.is-splitting .site-logo,
.site-header.is-splitting .nav-toggle,
.site-header.is-splitting .site-nav,
.site-header.is-splitting .gift-cta-header {
  transition: opacity 120ms linear, transform 120ms linear;
}

.site-header.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(234, 88, 12, 0.97);
  border-color: rgba(154, 52, 18, 0.3);
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 54px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 22px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.site-logo img {
  width: auto;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 10px;
  color: #fff7ed;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  white-space: nowrap;
}

.header-cta {
  color: #9a3412;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(154, 52, 18, 0.18);
}

.btn.primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.2);
}

.btn.ghost {
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: #9a3412;
  background: #ffffff;
}

.btn.small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.gift-cta {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 218px;
  min-height: 76px;
  overflow: visible;
  isolation: isolate;
}

.gift-box,
.gift-lid,
.gift-body {
  position: absolute;
  pointer-events: none;
}

.gift-box {
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 96px;
  height: 78px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 24px rgba(15, 23, 42, 0.28));
  animation: giftBoxCycle 6.4s var(--ease) infinite;
}

.gift-box::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -9px;
  width: 76px;
  height: 12px;
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.2);
  filter: blur(5px);
}

.gift-lid {
  right: 50%;
  top: 8px;
  z-index: 3;
  width: 104px;
  height: 22px;
  border: 1px solid rgba(6, 78, 59, 0.28);
  border-radius: 7px 7px 4px 4px;
  transform: translateX(50%);
  background:
    linear-gradient(90deg, transparent 44%, #facc15 44% 56%, transparent 56%),
    linear-gradient(180deg, #34d399 0%, #059669 58%, #047857 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.36),
    inset 0 -5px 10px rgba(4, 120, 87, 0.28),
    0 9px 18px rgba(5, 150, 105, 0.24);
  animation: giftLidBlast 6.4s var(--ease) infinite;
}

.gift-lid::before,
.gift-lid::after {
  content: "";
  position: absolute;
  top: -17px;
  width: 30px;
  height: 22px;
  border: 5px solid #facc15;
  border-radius: 999px 999px 6px 999px;
  background: rgba(254, 240, 138, 0.14);
  box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.34);
}

.gift-lid::before {
  right: 30px;
  transform: rotate(-28deg);
}

.gift-lid::after {
  left: 30px;
  transform: scaleX(-1) rotate(-28deg);
}

.gift-body {
  right: 50%;
  bottom: 3px;
  width: 88px;
  height: 55px;
  border: 1px solid rgba(6, 78, 59, 0.32);
  border-radius: 5px 5px 10px 10px;
  transform: translateX(50%);
  background:
    linear-gradient(90deg, transparent 42%, #facc15 42% 58%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #10b981 0%, #059669 45%, #047857 100%);
  box-shadow:
    inset 10px 0 16px rgba(255, 255, 255, 0.1),
    inset -12px 0 18px rgba(4, 47, 46, 0.22),
    inset 0 -10px 18px rgba(4, 120, 87, 0.35),
    0 18px 30px rgba(6, 95, 70, 0.28);
}

.gift-body::before,
.gift-body::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  background: rgba(255, 255, 255, 0.18);
}

.gift-body::before {
  top: 11px;
  height: 1px;
}

.gift-body::after {
  right: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(50%);
  background: rgba(255, 255, 255, 0.26);
}

.gift-cta::before,
.gift-cta::after {
  content: "";
  position: absolute;
  inset: -32px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.gift-cta::before {
  border-radius: 999px;
  border: 2px solid rgba(34, 197, 94, 0.34);
  animation: giftShockwave 6.4s var(--ease) infinite;
}

.gift-cta::after {
  background:
    radial-gradient(circle, rgba(250, 204, 21, 0.95) 0 3px, transparent 4px) 18% 24% / 28px 28px,
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px) 42% 3% / 24px 24px,
    radial-gradient(circle, rgba(34, 197, 94, 0.88) 0 3px, transparent 4px) 78% 18% / 30px 30px,
    radial-gradient(circle, rgba(250, 204, 21, 0.85) 0 2px, transparent 3px) 88% 72% / 26px 26px;
  background-repeat: no-repeat;
  animation: giftParticles 6.4s var(--ease) infinite;
}

.gift-button {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  animation: giftButtonReveal 6.4s var(--ease) infinite;
}

.gift-cta .gift-button {
  background: linear-gradient(135deg, #15803d, #16a34a);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(21, 128, 61, 0.3);
}

.gift-cta-header .gift-button {
  background: #ffffff;
  color: #166534;
}

.gift-cta-header {
  min-width: 166px;
  min-height: 52px;
  justify-self: end;
}

.gift-cta-header .gift-box {
  width: 70px;
  height: 58px;
}

.gift-cta-header .gift-lid {
  width: 76px;
  height: 17px;
  border-radius: 5px 5px 3px 3px;
}

.gift-cta-header .gift-lid::before,
.gift-cta-header .gift-lid::after {
  top: -13px;
  width: 22px;
  height: 16px;
  border-width: 4px;
}

.gift-cta-header .gift-lid::before {
  right: 22px;
}

.gift-cta-header .gift-lid::after {
  left: 22px;
}

.gift-cta-header .gift-body {
  width: 64px;
  height: 40px;
  border-radius: 4px 4px 8px 8px;
}

.gift-cta-header::before,
.gift-cta-header::after {
  inset: -20px;
}

.gift-cta-header .gift-button {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
}

.section {
  position: relative;
  padding: 96px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 126px;
  overflow: hidden;
  color: #172033;
  background: #fff3e6;
}

.hero.has-bg-slider {
  color: #ffffff;
  background: #0f172a;
}

.hero.has-bg-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.44) 48%, rgba(2, 6, 23, 0.2)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.18) 42%, rgba(2, 6, 23, 0.62));
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slider .hero-slide {
  background: #0f172a;
  transform: none;
}

.hero-bg-slider .hero-slide.active {
  transform: none;
}

.hero-bg-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-grid {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.hero.has-bg-slider .hero-inner {
  grid-template-columns: minmax(0, 760px);
  justify-content: end;
}

.hero.has-bg-slider .section-kicker {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(249, 115, 22, 0.88);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  padding: 7px 12px;
  color: #9a3412;
  background: rgba(255, 247, 237, 0.82);
  box-shadow: 0 10px 30px rgba(124, 45, 18, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 680px;
  margin: 18px 0;
  font-size: clamp(2.2rem, 4.2vw, 3.95rem);
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: none;
}

.hero.has-bg-slider h1 {
  color: #ffffff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: #475569;
  font-size: 1.12rem;
  line-height: 1.95;
}

.hero.has-bg-slider p {
  color: rgba(248, 250, 252, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(124, 45, 18, 0.08);
}

.hero.has-bg-slider .hero-stats div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 23, 0.46);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--orange);
  font-size: 1.7rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero.has-bg-slider .hero-stats span {
  color: rgba(248, 250, 252, 0.78);
}

.hero.has-bg-slider .btn.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(2, 6, 23, 0.34);
}

.hero-visual {
  position: relative;
  min-height: clamp(300px, 32vw, 460px);
  perspective: 1000px;
}

.hero-slider {
  position: absolute;
  inset: 50%;
  width: min(100%, 760px);
  height: auto;
  aspect-ratio: 16 / 9;
  transform: translate(50%, -50%);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 8px;
  background: #f5f5f7;
  box-shadow: 0 34px 110px rgba(124, 45, 18, 0.18), 0 0 80px rgba(249, 115, 22, 0.13);
  isolation: isolate;
}

.hero-slider::before,
.wide-slider::before,
.wide-slider::after {
  display: none;
}

.hero-slide,
.wide-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985) translateY(10px);
  transition: opacity 850ms var(--ease), transform 1000ms var(--ease), filter 900ms ease;
  filter: saturate(0.9) brightness(0.82);
}

.hero-slide.active,
.wide-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  filter: saturate(1.08) brightness(1);
}

.hero-slide img,
.wide-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  animation: none;
}

.hero-slide::after,
.wide-slide::after {
  display: none;
}

.hero-slide-caption {
  display: none;
}

.hero-slide-caption strong {
  font-size: 1.35rem;
  color: #fff;
}

.hero-slide-caption span {
  color: #dbeafe;
  line-height: 1.7;
}

.dashboard-mockup {
  position: absolute;
  inset: 78px 20px auto 0;
  min-height: 330px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 128, 255, 0.15), transparent 45%),
    rgba(15, 23, 42, 0.76);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), 0 0 80px rgba(34, 211, 238, 0.1);
  backdrop-filter: blur(18px);
  transform: rotateY(-10deg) rotateX(5deg);
  animation: floatSlow 6s ease-in-out infinite;
}

.mockup-top {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.mockup-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 22px;
}

.mockup-chart {
  min-height: 210px;
  border-radius: 8px;
  background:
    linear-gradient(to top, rgba(34, 211, 238, 0.35) 0 22%, transparent 22%),
    linear-gradient(to top, rgba(47, 128, 255, 0.35) 0 48%, transparent 48%),
    linear-gradient(to top, rgba(124, 58, 237, 0.35) 0 72%, transparent 72%),
    rgba(255, 255, 255, 0.04);
  background-size: 24% 100%, 24% 100%, 24% 100%, auto;
  background-position: 15% 0, 50% 0, 85% 0, 0 0;
  background-repeat: no-repeat;
}

.mockup-list {
  display: grid;
  gap: 12px;
}

.mockup-list span {
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.08);
}

.float-card {
  display: none;
  position: absolute;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.78);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  animation: floatCard 5s ease-in-out infinite;
}

.card-a { top: 30px; right: 20px; }
.card-b { top: 130px; left: 0; animation-delay: 0.6s; }
.card-c { bottom: 82px; right: 36px; animation-delay: 1.1s; }
.card-d { bottom: 22px; left: 80px; animation-delay: 1.6s; }
.card-e { top: 250px; left: 20px; animation-delay: 2.1s; }

.home-slider-strip {
  position: relative;
  z-index: 2;
  padding: 24px 0 58px;
  margin-top: 0;
}

.home-slider-strip .container {
  width: min(1420px, calc(100% - 28px));
}

.wide-slider {
  position: relative;
  height: clamp(360px, 54vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.18), transparent 26%),
    #050505;
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.52), 0 0 80px rgba(249, 115, 22, 0.13);
  isolation: isolate;
}

.wide-slider::before,
.wide-slider::after,
.hero-slider::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.wide-slider::before,
.hero-slider::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.34), transparent 18%, transparent 82%, rgba(2, 6, 23, 0.34)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.26), transparent 28%, rgba(2, 6, 23, 0.28));
}

.wide-slider::after {
  right: -12%;
  top: -28%;
  width: 38%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.26), transparent 68%);
  filter: blur(18px);
  animation: sliderGlowDrift 8s ease-in-out infinite alternate;
}

.wide-slide-content {
  display: none;
}

.wide-slide-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.wide-slide-content p {
  margin: 0;
  color: #dbeafe;
  font-size: 1.05rem;
  line-height: 1.9;
}

.slider-dots {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 20px;
  display: flex;
  gap: 8px;
  transform: translateX(50%);
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 999px;
  padding: 9px 11px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(14px);
}

.slider-energy {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.energy-drop {
  position: absolute;
  right: var(--x);
  top: -28%;
  width: 2px;
  height: 26%;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.82), rgba(249, 115, 22, 0.18), transparent);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
  opacity: 0;
  animation: energyDrop var(--dur, 6s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.side-beam {
  position: absolute;
  top: var(--y);
  left: -22%;
  width: 20%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 255, 0.15), rgba(34, 211, 238, 0.85), transparent);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.45);
  opacity: 0;
  animation: sideBeam var(--dur, 5s) var(--ease) infinite;
  animation-delay: var(--delay, 0s);
}

.bottom-module {
  position: absolute;
  right: var(--x);
  bottom: -42px;
  width: 96px;
  height: 32px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.34));
  box-shadow: 0 -10px 34px rgba(34, 211, 238, 0.1), inset 0 1px 0 rgba(248, 250, 252, 0.12);
  animation: moduleRise 4.8s var(--ease) infinite;
  animation-delay: var(--delay, 0s);
}

.bottom-module::before {
  content: "";
  position: absolute;
  right: 12px;
  left: 12px;
  top: 10px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  opacity: 0.75;
}

.transition-spark {
  display: none;
  position: absolute;
  z-index: 7;
  top: var(--top);
  right: -18%;
  width: 18%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.7);
  animation: transitionSpark 920ms var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
  pointer-events: none;
}

.wide-slider.switching::before,
.hero-slider.switching::before {
  animation: switchFlash 760ms var(--ease);
}

.slider-dots button {
  width: 26px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(248, 250, 252, 0.36);
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.active {
  width: 44px;
  background: var(--orange);
}

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

.section::after {
  display: none;
}

.showcase-section {
  padding-top: 50px;
  background: #ffffff;
}

.showcase-section .container {
  width: min(1500px, calc(100% - 56px));
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-inline: auto;
  border: 0;
  background: transparent;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  align-items: center;
  justify-items: stretch;
  min-height: 0;
  aspect-ratio: auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: #f5f5f7;
  box-shadow: none;
  transform-style: preserve-3d;
}

.showcase-card.main {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: auto;
}

.showcase-card::before,
.showcase-card::after {
  display: none;
}

.showcase-card::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(34, 211, 238, 0.08) 43%, transparent 44% 100%),
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.12), transparent 32%);
  opacity: 0.85;
}

.showcase-card::after {
  right: -40%;
  top: -20%;
  width: 44%;
  height: 150%;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(16deg);
  animation: cardSweep 4.8s var(--ease) infinite;
}

.showcase-card img {
  position: relative;
  z-index: 0;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(540px, 52vw);
  align-self: center;
  object-fit: contain;
  padding: clamp(16px, 2vw, 32px);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 520ms var(--ease), filter 520ms ease;
}

.showcase-card:hover img {
  transform: scale(1.018);
  filter: saturate(1.12) contrast(1.06);
}

.showcase-card span {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  top: auto;
  right: auto;
  bottom: auto;
  transform: none;
  width: auto;
  align-self: center;
  border: 0;
  border-radius: 0;
  padding: clamp(22px, 3vw, 48px);
  color: #1d1d1f;
  background: transparent;
  backdrop-filter: none;
  font-size: clamp(1.25rem, 1.9vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.showcase-card:nth-child(4n + 1) {
  background: #f5f5f7;
}

.showcase-card:nth-child(4n + 2) {
  background: #eaf7ff;
}

.showcase-card:nth-child(4n + 3) {
  background: #e7f8ff;
}

.showcase-card:nth-child(4n + 4) {
  background: #fbfbfd;
}

.section-head h2 {
  margin: 14px 0 0;
  color: #172033;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.25;
}

.section-head p {
  color: var(--muted);
  line-height: 1.9;
}

.services {
  background:
    linear-gradient(180deg, #fff8f1 0%, #ffffff 48%, #f8fafc 100%);
}

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

.service-card,
.system-card,
.news-card,
.why-item,
.process-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 70px rgba(124, 45, 18, 0.08);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
  border-color: rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), transparent 40%, rgba(47, 128, 255, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 66%);
  pointer-events: none;
}

.service-card:hover::before,
.system-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow: 0 34px 90px rgba(124, 45, 18, 0.14);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 14px;
  color: #9a3412;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.12);
}

.service-icon::before,
.service-icon::after,
.service-icon span,
.service-icon span::before,
.service-icon span::after {
  content: "";
  position: absolute;
  display: block;
}

.service-icon-web::before {
  inset: 14px 11px;
  border: 2px solid #f97316;
  border-radius: 50%;
}

.service-icon-web::after {
  right: 12px;
  left: 12px;
  top: 28px;
  height: 2px;
  background: #f97316;
}

.service-icon-web span {
  top: 14px;
  bottom: 14px;
  right: 27px;
  width: 2px;
  background: #f97316;
}

.service-icon-system::before {
  inset: 13px;
  border: 2px solid #0ea5e9;
  border-radius: 12px;
}

.service-icon-system span {
  right: 18px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #0ea5e9;
  box-shadow: 14px 0 #0ea5e9, 0 14px #0ea5e9, 14px 14px #0ea5e9;
}

.service-icon-mobile::before {
  inset: 10px 17px;
  border: 2px solid #f97316;
  border-radius: 10px;
}

.service-icon-mobile::after {
  right: 26px;
  bottom: 15px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: #f97316;
}

.service-icon-dashboard::before {
  right: 13px;
  left: 13px;
  bottom: 14px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0ea5e9 0 22%, transparent 22% 32%, #f97316 32% 60%, transparent 60% 70%, #22c55e 70%);
}

.service-icon-dashboard span {
  right: 13px;
  top: 15px;
  width: 32px;
  height: 2px;
  background: #0f172a;
}

.service-icon-pos::before {
  right: 13px;
  bottom: 14px;
  width: 32px;
  height: 25px;
  border: 2px solid #f97316;
  border-radius: 6px;
}

.service-icon-pos::after {
  right: 19px;
  top: 14px;
  width: 21px;
  height: 13px;
  border: 2px solid #0ea5e9;
  border-radius: 4px;
}

.service-icon-pos span {
  right: 19px;
  bottom: 21px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 9px 0 #f97316, 18px 0 #f97316;
}

.service-icon-realestate::before {
  right: 14px;
  bottom: 13px;
  width: 30px;
  height: 25px;
  border: 2px solid #0ea5e9;
  border-radius: 4px;
}

.service-icon-realestate::after {
  right: 17px;
  top: 13px;
  width: 24px;
  height: 24px;
  border-top: 2px solid #f97316;
  border-right: 2px solid #f97316;
  transform: rotate(-45deg);
}

.service-icon-inventory::before {
  right: 14px;
  bottom: 14px;
  width: 30px;
  height: 25px;
  border: 2px solid #f97316;
  border-radius: 5px;
}

.service-icon-inventory::after {
  right: 18px;
  top: 17px;
  width: 22px;
  height: 12px;
  border: 2px solid #0ea5e9;
  border-bottom: 0;
  transform: skewY(-12deg);
}

.service-icon-maintenance::before {
  right: 17px;
  top: 14px;
  width: 25px;
  height: 25px;
  border: 3px solid #0ea5e9;
  border-radius: 50%;
  border-top-color: transparent;
}

.service-icon-maintenance::after {
  right: 28px;
  bottom: 12px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: #f97316;
  transform: rotate(42deg);
}

.service-icon-integration::before {
  right: 13px;
  top: 20px;
  width: 30px;
  height: 2px;
  background: #0ea5e9;
  box-shadow: 0 17px #0ea5e9;
}

.service-icon-integration span {
  right: 14px;
  top: 15px;
  width: 11px;
  height: 11px;
  border: 2px solid #f97316;
  border-radius: 50%;
  box-shadow: 18px 17px 0 -2px #ffffff, 18px 17px 0 0 #f97316;
}

.service-card h3,
.system-card h3,
.news-card h3,
.process-step h3 {
  margin: 16px 0 8px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.45;
}

.service-card p,
.system-card p,
.news-card p {
  color: var(--muted);
  line-height: 1.8;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: #475569;
  font-size: 0.98rem;
}

.service-card:nth-child(3n + 2) .service-icon {
  border-color: rgba(14, 165, 233, 0.24);
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.11);
}

.service-card:nth-child(3n) .service-icon {
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.1);
}

.services .section-head {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.services .section-head .section-kicker {
  margin-inline: auto;
}

.services .section-head h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.22;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  min-height: 235px;
  padding: 30px;
}

.service-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  overflow: hidden;
  clip-path: inset(0 round 16px);
  border-color: rgba(249, 115, 22, 0.18);
  border-radius: 16px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transform: none;
}

.service-icon::before,
.service-icon::after,
.service-icon span {
  transform-origin: center;
}

.service-icon-web::before,
.service-icon-web::after,
.service-icon-web span,
.service-icon-system::before,
.service-icon-system span,
.service-icon-mobile::before,
.service-icon-mobile::after,
.service-icon-dashboard::before,
.service-icon-dashboard span,
.service-icon-pos::before,
.service-icon-pos::after,
.service-icon-pos span,
.service-icon-realestate::before,
.service-icon-realestate::after,
.service-icon-inventory::before,
.service-icon-inventory::after,
.service-icon-maintenance::before,
.service-icon-maintenance::after,
.service-icon-integration::before,
.service-icon-integration span {
  max-width: 38px;
  max-height: 38px;
}

.service-icon-realestate::after {
  right: 19px;
  top: 16px;
  width: 20px;
  height: 20px;
}

.service-icon-maintenance::after {
  bottom: 15px;
}

.service-icon-integration span {
  box-shadow: 16px 16px 0 -2px #ffffff, 16px 16px 0 0 #f97316;
}

.service-icon-web::before {
  inset: 16px 14px;
}

.service-icon-web::after {
  right: 15px;
  left: 15px;
  top: 28px;
}

.service-icon-web span {
  top: 16px;
  bottom: 16px;
  right: 28px;
}

.service-icon-system::before {
  inset: 15px;
}

.service-icon-system span {
  right: 20px;
  top: 20px;
  width: 6px;
  height: 6px;
  box-shadow: 12px 0 #0ea5e9, 0 12px #0ea5e9, 12px 12px #0ea5e9;
}

.service-icon-mobile::before {
  inset: 12px 19px;
}

.service-icon-mobile::after {
  right: 27px;
  bottom: 17px;
  width: 5px;
}

.service-icon-dashboard::before {
  right: 16px;
  left: 16px;
  bottom: 16px;
  height: 20px;
}

.service-icon-dashboard span {
  right: 16px;
  top: 18px;
  width: 26px;
}

.service-icon-pos::before {
  right: 15px;
  bottom: 16px;
  width: 28px;
  height: 22px;
}

.service-icon-pos::after {
  right: 21px;
  top: 16px;
  width: 17px;
  height: 10px;
}

.service-icon-pos span {
  right: 22px;
  bottom: 23px;
  width: 3px;
  height: 3px;
  box-shadow: 8px 0 #f97316, 16px 0 #f97316;
}

.service-icon-realestate::before {
  right: 16px;
  bottom: 15px;
  width: 26px;
  height: 22px;
}

.service-icon-realestate::after {
  right: 21px;
  top: 17px;
  width: 17px;
  height: 17px;
}

.service-icon-inventory::before {
  right: 16px;
  bottom: 16px;
  width: 26px;
  height: 22px;
}

.service-icon-inventory::after {
  right: 20px;
  top: 19px;
  width: 18px;
  height: 10px;
}

.service-icon-maintenance::before {
  right: 19px;
  top: 16px;
  width: 21px;
  height: 21px;
  border-width: 2px;
}

.service-icon-maintenance::after {
  right: 28px;
  bottom: 16px;
  height: 14px;
}

.service-icon-integration::before {
  right: 16px;
  top: 22px;
  width: 26px;
  box-shadow: 0 14px #0ea5e9;
}

.service-icon-integration span {
  right: 17px;
  top: 18px;
  width: 8px;
  height: 8px;
  box-shadow: 14px 14px 0 -2px #ffffff, 14px 14px 0 0 #f97316;
}

.service-card h3 {
  margin-top: 28px;
  font-size: clamp(1.18rem, 1.4vw, 1.35rem);
}

.service-card p {
  max-width: 95%;
  font-size: 1rem;
}

.service-card {
  min-height: 265px;
  padding: 118px 34px 34px;
}

.service-icon {
  position: absolute;
  top: 34px;
  right: 34px;
  margin: 0;
}

.service-card h3 {
  margin-top: 0;
}

.systems-section {
  overflow: hidden;
  color: #f8fafc;
  background: #020617;
}

.systems-section .section-kicker {
  color: #bae6fd;
  border-color: rgba(125, 211, 252, 0.24);
  background: rgba(15, 23, 42, 0.42);
}

.systems-section .section-head h2 {
  color: #f8fafc;
}

.systems-panel {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.systems-panel::before {
  display: none;
}

.systems-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 390px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.system-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transform-style: preserve-3d;
}

.system-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.76);
}

.system-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease, transform 620ms ease;
}

.system-media img.active {
  opacity: 1;
}

.system-card:hover img.active,
.news-card:hover img {
  transform: scale(1.09);
}

.system-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(47, 128, 255, 0.2), rgba(124, 58, 237, 0.14));
}

.system-placeholder span {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(248, 250, 252, 0.78);
}

.system-body {
  position: relative;
  padding: 22px;
}

.systems-showcase {
  display: grid;
  position: relative;
  z-index: 1;
  gap: clamp(36px, 6vw, 76px);
}

.system-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: clamp(18px, 3vw, 38px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

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

.system-feature::before {
  display: none;
}

.system-feature::after {
  display: none;
}

.system-feature.reverse {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.system-feature.reverse .system-frame {
  grid-column: 2;
}

.system-feature.reverse .system-feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.system-frame {
  position: relative;
  border-radius: 30px;
  padding: clamp(12px, 2vw, 22px);
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(8, 21, 44, 0.94)),
    #020617;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(14, 116, 144, 0.14);
}

.system-frame::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.system-screen {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 24%, rgba(34, 211, 238, 0.12), transparent 32%),
    #ffffff;
}

.system-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 520ms ease, transform 720ms var(--ease);
}

.system-screen img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.system-frame:hover .system-screen img.active {
  transform: translateY(-4px) scale(1.015);
}

.system-screen-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(220px, 30vw, 440px);
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: 0;
}

.system-feature-copy {
  color: #f8fafc;
}

.system-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #7dd3fc;
  font-weight: 900;
}

.system-category span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0ea5e9;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.55);
}

.system-feature-copy h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.05;
}

.system-feature-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.85;
}

.system-feature .chips span {
  border-color: rgba(125, 211, 252, 0.24);
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.12);
}

.system-feature .btn.ghost {
  border-color: rgba(248, 250, 252, 0.24);
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.52);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.chips span {
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.why {
  background: #f5f3ff;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: #273449;
}

.why-item span {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.55);
}

.process {
  padding-top: 40px;
  background: #f8fafc;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.18), var(--orange), rgba(249, 115, 22, 0.18), transparent);
  opacity: 1;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 18px;
  text-align: center;
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
  font-weight: 900;
}

.news-section {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(154, 52, 18, 0.08), transparent 38%),
    var(--orange);
}

.news-section .section-kicker {
  color: #fff7ed;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.news-section .section-head h2 {
  color: #ffffff;
}

.news-showcase {
  display: grid;
  gap: clamp(52px, 8vw, 96px);
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.news-feature.reverse {
  direction: ltr;
}

.news-feature.reverse > * {
  direction: rtl;
}

.news-frame {
  border-radius: 28px;
  padding: clamp(18px, 4vw, 44px);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(124, 45, 18, 0.28);
  transform-origin: center;
}

.news-screen {
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 34vw, 460px);
  border-radius: 8px;
  background: #ffffff;
}

.news-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 900ms var(--ease);
}

.news-frame:hover .news-screen img {
  transform: scale(1.035);
}

.news-screen-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(260px, 34vw, 460px);
  color: #050505;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
}

.news-feature-copy {
  color: #ffffff;
}

.news-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #fff7ed;
  font-size: 1.05rem;
  font-weight: 800;
}

.news-category span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.news-feature-copy h3 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.news-feature-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 247, 237, 0.92);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.news-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.news-explore span {
  transition: transform 220ms var(--ease);
}

.news-explore:hover span {
  transform: translateX(-8px);
}

.news-section .home-empty {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(124, 45, 18, 0.18);
}

.news-section .home-empty p {
  color: rgba(255, 247, 237, 0.88);
}

.home-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
}

.home-empty strong {
  display: block;
  font-size: 1.25rem;
}

.home-empty p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta {
  padding-top: 60px;
  background: #fff7ed;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 24px;
  padding: clamp(28px, 6vw, 64px);
  text-align: center;
  color: #172033;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(124, 45, 18, 0.12);
}

.cta-box::before {
  display: none;
}

.cta-box h2 {
  margin: 14px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-box p {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  line-height: 1.9;
}

.cta-box .hero-actions {
  justify-content: center;
}

.pulse {
  animation: none;
}

.site-footer {
  border-top: 4px solid var(--orange);
  padding-top: 54px;
  color: #f8fafc;
  background:
    linear-gradient(rgba(249, 115, 22, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.045) 1px, transparent 1px),
    #07111f;
  background-size: 46px 46px;
}

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

.site-footer img {
  width: 130px;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer h3 {
  margin-top: 0;
}

.footer-bottom {
  margin-top: 38px;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(154, 52, 18, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(154, 52, 18, 0.24);
  font-size: 1.35rem;
  font-weight: 900;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

.project-modal.is-open {
  display: grid;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(10px);
}

.project-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  background: #ffffff;
  box-shadow: 0 34px 120px rgba(2, 6, 23, 0.32);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

.project-close {
  position: sticky;
  top: 0;
  float: left;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 50%;
  color: #0f172a;
  background: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.project-choice h2,
.project-form h2 {
  margin: 12px 0 22px;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

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

.project-choice-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: right;
  color: #172033;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  cursor: pointer;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

.project-choice-card:hover {
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 24px 70px rgba(124, 45, 18, 0.12);
}

.project-choice-card strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.project-choice-card span {
  color: #64748b;
  line-height: 1.8;
}

.project-form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.project-back {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  color: #9a3412;
  background: #fff7ed;
  font-weight: 900;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-form label,
.full-label {
  display: grid;
  gap: 8px;
}

.project-form label > span,
.form-block > strong {
  color: #1f2937;
  font-weight: 900;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: #111827;
  background: #ffffff;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.7;
}

.project-form select option {
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

.form-block,
.full-label {
  margin-top: 18px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.check-list.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  font-weight: 700;
}

.check-list input {
  width: auto;
  accent-color: var(--orange);
}

.project-submit {
  width: 100%;
  margin-top: 20px;
}

.details-page {
  background: #fff7ed;
}

.details-header {
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 14px;
  padding: 10px 16px;
}

.details-header .site-logo img {
  width: auto;
  max-height: 42px;
}

.details-header .site-nav {
  justify-content: center;
}

.details-header .header-cta {
  white-space: nowrap;
}

.details-main {
  min-height: 100vh;
  padding: 132px 0 70px;
}

.details-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 54px);
  align-items: start;
}

.details-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.details-copy h1,
.details-empty h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 1.05;
}

.details-copy p,
.details-empty p {
  color: #475569;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.9;
}

.details-subscriptions {
  margin: 26px 0 8px;
}

.details-subscriptions strong {
  display: block;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
}

.details-chips {
  margin: 0;
  gap: 10px;
}

.details-chips span {
  min-height: 42px;
  border: 1px solid rgba(249, 115, 22, 0.38);
  border-radius: 999px;
  padding: 9px 16px;
  color: #9a3412;
  background: #fff7ed;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.12);
  font-size: 1rem;
  font-weight: 900;
}

.details-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.details-gallery figure {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 26px;
  aspect-ratio: auto;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  align-self: start;
}

.details-gallery figure.main {
  grid-column: 1 / -1;
  min-height: 0;
}

.details-gallery img {
  width: 100%;
  height: auto;
  max-height: none;
  padding: 0;
  object-fit: contain;
  display: block;
}

.details-gallery .placeholder {
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
}

.details-empty {
  display: grid;
  place-items: start;
  min-height: 58vh;
  align-content: center;
}

.news-detail {
  display: grid;
  gap: 26px;
}

.news-detail-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
}

.news-detail-image img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: contain;
}

.news-detail-content {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  color: #263244;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 2;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
}

.reveal[data-motion="top"] {
  transform: translate3d(0, -42px, 0) scale(0.98);
}

.reveal[data-motion="right"] {
  transform: translate3d(54px, 0, 0) scale(0.98);
}

.reveal[data-motion="left"] {
  transform: translate3d(-54px, 0, 0) scale(0.98);
}

.reveal[data-motion="zoom"] {
  transform: translate3d(0, 18px, 0) scale(0.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

@keyframes heroGrid {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 260px 0, 0 0, 0 0; }
}

@keyframes floatSlow {
  0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}

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

@keyframes sweep {
  from { right: -180px; opacity: 0; }
  30%, 70% { opacity: 0.8; }
  to { right: calc(100% + 180px); opacity: 0; }
}

@keyframes borderFlow {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 14px 34px rgba(249, 115, 22, 0.22); }
  50% { box-shadow: 0 18px 46px rgba(249, 115, 22, 0.44); }
}

@keyframes giftBoxCycle {
  0%, 16% { opacity: 1; transform: translate(-50%, -50%) rotate(-2deg) scale(1); }
  26% { opacity: 1; transform: translate(-50%, -58%) rotate(0deg) scale(1.04); }
  36%, 80% { opacity: 0; transform: translate(-50%, -50%) rotate(0deg) scale(0.88); }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(-2deg) scale(1); }
}

@keyframes giftLidBlast {
  0%, 16% { opacity: 1; transform: translateX(50%) rotate(-4deg) translateY(0); }
  26% { opacity: 1; transform: translateX(50%) rotate(3deg) translateY(-18px); }
  36%, 80% { opacity: 0; transform: translateX(50%) rotate(5deg) translateY(-34px); }
  100% { opacity: 1; transform: translateX(50%) rotate(-4deg) translateY(0); }
}

@keyframes giftShockwave {
  0%, 24% { opacity: 0; transform: scale(0.72); }
  34% { opacity: 0.6; transform: scale(1); }
  58%, 100% { opacity: 0; transform: scale(1.28); }
}

@keyframes giftParticles {
  0%, 24% { opacity: 0; transform: scale(0.8) translateY(6px); }
  34% { opacity: 0.85; transform: scale(1) translateY(-4px); }
  62%, 100% { opacity: 0; transform: scale(1.18) translateY(-18px); }
}

@keyframes giftButtonReveal {
  0%, 34% { opacity: 0; transform: translateY(14px) scale(0.94); }
  42%, 82% { opacity: 1; transform: translateY(0) scale(1); }
  90%, 100% { opacity: 0; transform: translateY(8px) scale(0.96); }
}

@keyframes sectionSignal {
  0% { transform: translateX(80px); opacity: 0; }
  25%, 70% { opacity: 0.55; }
  100% { transform: translateX(-60vw); opacity: 0; }
}

@keyframes cardSweep {
  0%, 30% { transform: translateX(0) rotate(16deg); opacity: 0; }
  48% { opacity: 0.75; }
  72%, 100% { transform: translateX(-360%) rotate(16deg); opacity: 0; }
}

@keyframes slideBreath {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@keyframes sliderGlowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.65; }
  to { transform: translate3d(-18%, 18%, 0) scale(1.12); opacity: 0.95; }
}

@keyframes systemGlowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
  to { transform: translate3d(-12%, 18%, 0) scale(1.18); opacity: 1; }
}

@keyframes energyDrop {
  0% { opacity: 0; transform: translateY(0) scaleY(0.55); }
  12%, 72% { opacity: 0.78; }
  100% { opacity: 0; transform: translateY(560%) scaleY(1); }
}

@keyframes sideBeam {
  0% { opacity: 0; transform: translateX(0) scaleX(0.65); }
  18%, 70% { opacity: 0.82; }
  100% { opacity: 0; transform: translateX(-660%) scaleX(1); }
}

@keyframes moduleRise {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  18%, 72% { transform: translateY(-34px); opacity: 0.82; }
}

@keyframes transitionSpark {
  0% { opacity: 0; transform: translateX(0) scaleX(0.5); }
  18%, 72% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-720%) scaleX(1.3); }
}

@keyframes switchFlash {
  0% { filter: brightness(1); }
  35% { filter: brightness(1.38) saturate(1.18); }
  100% { filter: brightness(1); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    min-height: 68px;
  }

  .details-header {
    grid-template-columns: auto 1fr auto;
  }

  .details-header .site-logo img {
    width: auto;
    max-height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 28px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(124, 45, 18, 0.12);
  }

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

  .site-nav a {
    color: #1f2937;
  }

  .site-nav a:hover {
    color: #9a3412;
    background: rgba(249, 115, 22, 0.1);
  }

  .details-header .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .details-header .site-nav a {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .header-cta {
    justify-self: end;
  }

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

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

  .hero-visual {
    min-height: clamp(300px, 58vw, 430px);
  }

  .hero-slider {
    inset: 50%;
    width: min(100%, 720px);
    height: auto;
    aspect-ratio: 16 / 9;
    transform: translate(50%, -50%);
  }

  .energy-drop:nth-child(n+8),
  .side-beam:nth-child(n+16),
  .bottom-module:nth-child(n+22) {
    display: none;
  }

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

  .system-feature,
  .system-feature.reverse,
  .news-feature,
  .news-feature.reverse {
    grid-template-columns: 1fr;
    direction: rtl;
  }

  .system-feature.reverse .system-frame,
  .system-feature.reverse .system-feature-copy {
    grid-column: auto;
    grid-row: auto;
  }

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

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

  .process-line::before {
    display: none;
  }

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

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

  .showcase-card.main {
    grid-column: auto;
    min-height: 0;
  }

  .showcase-card {
    min-height: 0;
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  }

  .showcase-card span {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-logo {
    width: 94px;
    height: 48px;
  }

  .site-logo img {
    max-height: 38px;
  }

  .details-header {
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .details-header .site-logo img {
    width: auto;
    max-height: 36px;
  }

  .details-header .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .site-header > .gift-cta-header {
    display: none;
  }

  .details-header .header-cta {
    display: inline-flex;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 26px;
    padding: 8px 10px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero.has-bg-slider {
    min-height: 820px;
  }

  .hero.has-bg-slider::before {
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.45) 48%, rgba(2, 6, 23, 0.78));
  }

  .hero-stats,
  .services-grid,
  .news-grid,
  .why-list,
  .process-line,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 104px 22px 24px;
  }

  .service-icon {
    top: 24px;
    right: 22px;
  }

  .news-frame {
    border-radius: 18px;
    padding: 14px;
  }

  .system-feature {
    border-radius: 0;
    padding: 16px 0;
  }

  .systems-panel {
    border-radius: 0;
    padding: 0;
  }

  .systems-panel::before {
    inset: 10px;
    border-radius: 20px;
  }

  .system-frame {
    border-radius: 22px;
    padding: 10px;
  }

  .system-frame::before {
    inset: 7px;
    border-radius: 18px;
  }

  .system-screen {
    border-radius: 16px;
  }

  .system-feature-copy h3,
  .news-feature-copy h3 {
    font-size: 2.25rem;
  }

  .details-main {
    padding-top: 112px;
  }

  .details-gallery {
    grid-template-columns: 1fr;
  }

  .details-gallery figure,
  .details-gallery figure.main {
    min-height: 0;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

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

  .dashboard-mockup {
    inset: 60px 0 auto 0;
    min-height: 280px;
  }

  .hero-slider {
    inset: 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    transform: translate(50%, -50%);
  }

  .bottom-module {
    width: 66px;
  }

  .home-slider-strip {
    margin-top: 0;
  }

  .float-card {
    font-size: 0.8rem;
  }

  .systems-carousel {
    grid-auto-columns: minmax(280px, 88vw);
  }

  .section {
    padding: 72px 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .showcase-card,
  .showcase-card.main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    grid-row: auto;
  }

  .showcase-card img {
    grid-column: 1;
    grid-row: 2;
    max-height: none;
    padding: 6px 14px 18px;
  }

  .showcase-card span {
    grid-column: 1;
    grid-row: 1;
    width: min(92%, 420px);
    padding: 18px 8px 8px;
    font-size: 1.35rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .project-modal {
    padding: 12px;
  }

  .project-dialog {
    max-height: 90vh;
    border-radius: 18px;
    padding: 18px;
  }

  .project-choice-grid,
  .form-grid,
  .check-list,
  .check-list.large {
    grid-template-columns: 1fr;
  }

  .project-form-head {
    flex-direction: column-reverse;
  }
}

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

  #hero-canvas {
    display: none;
  }

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