:root {
  --bg: #060a11;
  --surface: rgba(14, 20, 31, 0.8);
  --surface-strong: rgba(13, 19, 30, 0.95);
  --text: #f5f9ff;
  --text-muted: #cfdae9;
  --accent: #6ed9ff;
  --accent-strong: #b7eeff;
  --gold: #dfc48c;
  --border: rgba(190, 220, 255, 0.22);
  --shadow: 0 20px 44px rgba(2, 6, 12, 0.42);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1540px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.72;
  letter-spacing: 0.01em;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url("../../images/background.png") center top / cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.02);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 11%, rgba(146, 216, 255, 0.22), transparent 42%),
    radial-gradient(circle at 12% 84%, rgba(223, 196, 140, 0.17), transparent 36%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.54), rgba(5, 8, 13, 0.76));
}

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

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

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(14px, 1.4vw, 22px);
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

.section-title {
  margin: 0 0 0.8rem;
  line-height: 1.18;
  text-wrap: balance;
  font-size: clamp(1.88rem, 4vw, 2.96rem);
  text-shadow: 0 0 20px rgba(134, 209, 255, 0.16);
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  max-width: 72ch;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(6, 10, 16, 0.16);
  backdrop-filter: blur(8px);
  transition: background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

body.scrolled .site-header {
  background: rgba(5, 10, 16, 0.76);
  border-color: rgba(170, 210, 250, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
  margin-right: auto;
}

.brand-logo {
  width: auto;
  height: clamp(40px, 4.4vw, 48px);
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.brand-text {
  display: grid;
  line-height: 1.2;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(98, 195, 255, 0.23);
}

.brand-text small {
  margin-top: 0.2rem;
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.12rem;
  margin-left: auto;
}

.nav a {
  color: #e8f5ff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(141, 219, 255, 0.45);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(174, 229, 255, 0.65);
  border-radius: 999px;
  padding: 0.62rem 1.04rem;
  color: #072030;
  font-weight: 700;
  background: linear-gradient(140deg, #8ce4ff, #c3f0ff);
  box-shadow: 0 10px 24px rgba(126, 216, 255, 0.36);
  cursor: pointer;
}

.nav-consult {
  border: 1px solid rgba(158, 225, 255, 0.52);
  border-radius: 999px;
  padding: 0.56rem 0.94rem;
  color: #e9f7ff;
  background: rgba(10, 17, 28, 0.48);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.nav-consult:hover {
  border-color: rgba(179, 235, 255, 0.78);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(179, 235, 255, 0.24), 0 0 16px rgba(126, 216, 255, 0.24);
}

.nav-consult,
.nav-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(8, 14, 24, 0.86);
  color: var(--text);
}

.menu-toggle .icon,
.back-top .icon,
.modal-close .icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../../images/hero.png") center 36% / cover no-repeat;
  filter: brightness(1.08) contrast(1.05) saturate(1.06);
  transform: scaleX(-1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 34%, rgba(182, 229, 255, 0.48), transparent 38%),
    radial-gradient(circle at 66% 14%, rgba(111, 208, 255, 0.25), transparent 32%),
    radial-gradient(circle at 82% 68%, rgba(186, 214, 255, 0.11), transparent 34%),
    linear-gradient(104deg, rgba(8, 18, 32, 0.15), rgba(6, 13, 24, 0.54) 52%, rgba(4, 8, 15, 0.77));
}

.hero-content {
  padding-top: clamp(88px, 8.4vw, 118px);
  padding-bottom: clamp(56px, 6.8vw, 84px);
  max-width: 760px;
  margin-left: clamp(0px, 3.2vw, 56px);
  margin-right: auto;
}

.hero h1 {
  margin: 0;
  max-width: 16ch;
  line-height: 1.03;
  font-size: clamp(2.18rem, 6vw, 4.4rem);
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(4, 14, 26, 0.65), 0 0 38px rgba(158, 225, 255, 0.24);
}

.hero p {
  margin: 1.25rem 0 2rem;
  max-width: 58ch;
  color: #eaf5ff;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(5, 14, 24, 0.58);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.86rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.86rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease, background-color 0.55s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(140deg, #7adfff, #b9ecff);
  color: #062132;
  box-shadow: 0 12px 30px rgba(113, 210, 255, 0.38);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(113, 210, 255, 0.52);
}

.btn-secondary {
  border-color: rgba(221, 238, 255, 0.52);
  color: #f0f8ff;
  background: rgba(11, 18, 30, 0.56);
}

.btn-secondary:hover {
  border-color: rgba(133, 219, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.37), 0 0 22px rgba(133, 219, 255, 0.14);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.btn-card {
  margin-top: auto;
  border-color: rgba(122, 216, 255, 0.5);
  background: rgba(122, 216, 255, 0.12);
  color: #ddf5ff;
}

.btn-card:hover {
  box-shadow: 0 12px 28px rgba(122, 216, 255, 0.28);
}

.services-grid {
  margin-top: 1.7rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-store {
  background:
    radial-gradient(circle at 12% 16%, rgba(109, 206, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 14, 23, 0.88), rgba(7, 12, 20, 0.74));
  border-top: 1px solid rgba(188, 224, 255, 0.12);
  border-bottom: 1px solid rgba(188, 224, 255, 0.12);
}

.section-store-showcase > .container > .kicker,
.section-store-showcase > .container > .store-section-head,
.section-store-showcase > .container > .store-grid {
  display: none;
}

.store-showcase-head {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  margin-bottom: 1.2rem;
}

.store-showcase-head > div:not(.store-showcase-copy),
.store-showcase-head > p:not(.store-showcase-text) {
  display: none;
}

.store-carousel-shell {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(174, 219, 255, 0.24);
  border-radius: 26px;
  padding: clamp(12px, 1.6vw, 18px);
  background:
    radial-gradient(circle at 100% 0%, rgba(110, 217, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(10, 16, 26, 0.98), rgba(8, 13, 22, 0.96));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.store-carousel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.store-carousel-topbar strong {
  color: #f4f8fd;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.store-carousel-topbar a {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.store-carousel-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.store-carousel-track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}

.store-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.1rem;
}

.store-slide-media {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 1 / 0.68;
}

.store-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-slide-copy {
  display: grid;
  gap: 0.42rem;
  padding: 0.1rem 0.1rem 0.1rem 0;
}

.store-slide-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 196, 140, 0.34);
  background: rgba(223, 196, 140, 0.1);
  color: #f2d69c;
  font-size: 0.76rem;
  font-weight: 700;
}

.store-slide-copy h3 {
  margin: 0;
  color: #f4f8fd;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.15;
}

.store-slide-copy p {
  margin: 0;
  color: #c9d7e8;
  max-width: 32ch;
  font-size: 0.88rem;
}

.store-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.store-slide-meta strong {
  color: #90e3ff;
  font-size: 1.02rem;
}

.store-slide-btn {
  min-width: 106px;
  min-height: 36px;
  padding: 0.58rem 0.84rem;
  font-size: 0.84rem;
}

.store-carousel-controls {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.store-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(176, 224, 255, 0.28);
  background: rgba(9, 15, 24, 0.9);
  color: #ecf7ff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.store-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.store-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.store-carousel-dots button.active {
  transform: scale(1.18);
  background: #8ce4ff;
}

.store-carousel-cta {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
}

.gadget-store-section {
  padding-top: clamp(36px, 5vw, 56px);
}

.gadget-store-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 1px solid rgba(223, 196, 140, 0.18);
  border-radius: 24px;
  padding: clamp(12px, 1.6vw, 18px);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 196, 140, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.98), rgba(11, 14, 20, 0.95));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
}

.gadget-store-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.gadget-store-title {
  margin: 0.2rem 0 0;
  line-height: 1.08;
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  color: #f4f7fb;
}

.gadget-store-lead {
  margin: 0;
  color: #ccd6e1;
  font-size: 1rem;
}

.gadget-panel {
  border: 1px solid rgba(223, 196, 140, 0.18);
  border-radius: 18px;
  padding: 0.78rem;
  background: linear-gradient(180deg, rgba(18, 22, 29, 0.96), rgba(12, 15, 20, 0.96));
}

.gadget-panel + .gadget-panel {
  margin-top: 0.95rem;
}

.gadget-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.gadget-panel-head h2 {
  margin: 0;
  font-size: clamp(1.24rem, 2vw, 1.5rem);
  color: #f7f8fb;
}

.gadget-panel-head a {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.category-tile {
  min-height: 112px;
  border: 1px solid rgba(223, 196, 140, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(31, 36, 46, 0.96), rgba(16, 19, 25, 0.96));
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 0.7rem;
}

.category-tile strong {
  color: #f3f5f8;
  font-size: 0.88rem;
  line-height: 1.3;
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(223, 196, 140, 0.45);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(223, 196, 140, 0.16), rgba(24, 22, 18, 0.5));
}

.category-icon svg {
  width: 24px;
  height: 24px;
  stroke: #e2b558;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gadget-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.gadget-card {
  border: 1px solid rgba(223, 196, 140, 0.24);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 30, 37, 0.98), rgba(13, 16, 22, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.gadget-thumb {
  position: relative;
  aspect-ratio: 1 / 0.62;
  overflow: hidden;
  background: #101318;
}

.gadget-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

.gadget-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #101318;
  font-weight: 800;
  background: linear-gradient(180deg, #ffd77b, #d29b2c);
  box-shadow: 0 10px 18px rgba(210, 155, 44, 0.28);
}

.gadget-copy {
  padding: 0.62rem;
  display: grid;
  gap: 0.34rem;
}

.gadget-copy h3 {
  margin: 0;
  color: #f7f8fb;
  font-size: 0.88rem;
  line-height: 1.3;
}

.gadget-copy p {
  margin: 0;
  color: #cad2db;
  font-size: 0.78rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gadget-price {
  color: #efbd4e !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  display: block !important;
  overflow: visible !important;
}

.gadget-actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.gadget-actions .btn {
  flex: 1;
  min-height: 32px;
  padding: 0.46rem 0.58rem;
  font-size: 0.74rem;
}

.gadget-detail-btn {
  border-color: rgba(223, 196, 140, 0.32);
  background: rgba(255, 255, 255, 0.02);
}

.gadget-add-btn {
  background: linear-gradient(180deg, #f0c66b, #c8922c);
  color: #121417;
  box-shadow: 0 14px 24px rgba(215, 159, 51, 0.2);
}

.gadget-add-btn.active {
  border-color: rgba(255, 221, 151, 0.82);
  box-shadow: 0 0 0 1px rgba(255, 221, 151, 0.24), 0 14px 24px rgba(215, 159, 51, 0.28);
}

.gadget-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.gadget-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.gadget-dots span.active {
  background: #d9a844;
}

.premium-grid .gadget-card {
  border-color: rgba(223, 196, 140, 0.38);
}

.gadget-cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.gadget-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(223, 196, 140, 0.35);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(223, 196, 140, 0.16), rgba(24, 22, 18, 0.5));
}

.gadget-cta-icon svg {
  width: 34px;
  height: 34px;
  stroke: #e2b558;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gadget-cta-copy h2 {
  margin: 0 0 0.2rem;
  font-size: 1.34rem;
  color: #f7f8fb;
}

.gadget-cta-copy p {
  margin: 0;
  color: #cad2db;
}

.gadget-cta-button {
  min-width: 240px;
}

.gadget-detail-panel .detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.detail-card {
  border: 1px solid rgba(223, 196, 140, 0.18);
  border-radius: 18px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.detail-card h3 {
  margin: 0 0 0.45rem;
  color: #f7f8fb;
}

.detail-card p {
  margin: 0 0 0.65rem;
  color: #cad2db;
}

.detail-card.active {
  border-color: rgba(223, 196, 140, 0.48);
  box-shadow: 0 0 0 1px rgba(223, 196, 140, 0.18), 0 18px 34px rgba(0, 0, 0, 0.18);
}

.detail-card.pulse {
  transform: translateY(-3px);
}

.gadget-order-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 196, 140, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(18, 22, 29, 0.96), rgba(12, 15, 20, 0.96));
}

.gadget-order-layout {
  gap: 0.85rem;
}

.store-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.store-link-btn {
  flex-shrink: 0;
}

.store-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 216, 255, 0.48);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.4), 0 0 18px rgba(126, 216, 255, 0.18);
}

.product-media {
  height: 220px;
}

.product-media img {
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.08rem;
  display: grid;
  gap: 0.78rem;
  align-content: start;
  height: 100%;
}

.product-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(179, 227, 255, 0.4);
  background: rgba(112, 213, 255, 0.12);
  color: #dff4ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #d9ecfb;
  display: grid;
  gap: 0.34rem;
  font-size: 0.94rem;
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-hero::before {
  background: url("../../images/detektive 1.webp") center 28% / cover no-repeat;
  transform: none;
}

.store-order-section {
  background: linear-gradient(168deg, rgba(9, 15, 24, 0.76), rgba(7, 12, 20, 0.9));
}

.order-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: start;
}

.order-summary,
.order-form-card {
  padding: 1.24rem;
}

.selected-product-box {
  margin-top: 1.15rem;
  padding: 0.9rem;
  border: 1px solid rgba(167, 226, 255, 0.28);
  border-radius: 14px;
  background: rgba(10, 17, 28, 0.7);
}

.selected-product-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #eef8ff;
  font-size: 1.05rem;
}

.product-actions .btn.active {
  border-color: rgba(148, 228, 255, 0.82);
  background: linear-gradient(140deg, rgba(112, 211, 252, 0.42), rgba(114, 186, 255, 0.26));
  color: #f2fbff;
  box-shadow: 0 0 0 1px rgba(147, 223, 255, 0.25);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(14, 21, 33, 0.88), rgba(11, 17, 27, 0.75));
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 216, 255, 0.52);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42), 0 0 20px rgba(126, 216, 255, 0.2);
}

.service-card .media {
  height: 200px;
}

.service-card .media img {
  height: 100%;
  object-fit: cover;
}

.service-card .content {
  padding: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
  min-height: 276px;
}

.service-card h3,
.process-card h3,
.card h3 {
  margin: 0;
  line-height: 1.35;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.97rem, 1.4vw, 1.03rem);
  font-weight: 500;
}

.result {
  color: #ebf7ff;
  font-size: 0.94rem;
}

.process-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-card {
  overflow: hidden;
  background: linear-gradient(165deg, rgba(16, 28, 44, 0.95), rgba(13, 24, 38, 0.87));
  border-color: rgba(126, 216, 255, 0.34);
}

.process-card .media {
  position: relative;
  height: 154px;
}

.process-card .media img {
  height: 100%;
  object-fit: cover;
}

.step-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #f3fbff;
  background: rgba(7, 14, 22, 0.85);
  border: 1px solid rgba(126, 216, 255, 0.58);
}

.process-card .content {
  padding: 0.9rem;
}

.section-about {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(76, 146, 197, 0.2), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(86, 132, 178, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(6, 12, 22, 0.92), rgba(5, 10, 18, 0.94));
  border-top: 1px solid rgba(172, 214, 246, 0.14);
  border-bottom: 1px solid rgba(172, 214, 246, 0.14);
}

.about-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.about-panel {
  border: 1px solid rgba(188, 224, 255, 0.24);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.2vw, 2rem);
  background:
    linear-gradient(180deg, rgba(13, 23, 38, 0.72), rgba(9, 16, 27, 0.76)),
    url('../../images/background.png') center / cover no-repeat;
  box-shadow: 0 24px 48px rgba(1, 8, 16, 0.45), inset 0 1px 0 rgba(208, 234, 255, 0.1);
  backdrop-filter: blur(2px);
}

.about-panel-premium {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.about-title-centered {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-lead {
  margin: 0 auto 1.2rem;
  max-width: 70ch;
  color: #d4e6fa;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-size: clamp(1.14rem, 1.45vw, 1.28rem);
}

.about-features-row {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-feature-item {
  border: 1px solid rgba(173, 220, 255, 0.22);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  background: rgba(10, 18, 30, 0.58);
}

.about-feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 0.6rem;
  border: 1px solid rgba(210, 188, 146, 0.52);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ead3ad;
  font-weight: 800;
  font-size: 1.45rem;
  background: radial-gradient(circle at 30% 20%, rgba(242, 220, 170, 0.24), rgba(24, 22, 18, 0.5));
}

.about-feature-item h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  color: #ecf7ff;
}

.about-feature-item p {
  margin: 0.25rem 0 0;
  color: #b9cee5;
  font-size: 0.95rem;
}

.about-more-btn {
  margin-top: 1rem;
}

.about-cta-btn {
  min-width: 290px;
  border-radius: 999px;
  border-color: rgba(173, 219, 255, 0.38);
  background: linear-gradient(140deg, rgba(12, 22, 36, 0.85), rgba(16, 30, 47, 0.84));
}

.about-cta-btn:hover {
  border-color: rgba(173, 219, 255, 0.68);
}

.about-modal-dialog {
  width: min(820px, calc(100% - 32px));
}

.about-modal-content {
  display: grid;
  gap: 0.85rem;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.about-trust-item {
  border: 1px solid rgba(171, 228, 255, 0.32);
  border-radius: 12px;
  background: rgba(12, 19, 31, 0.86);
  padding: 0.62rem 0.7rem;
  display: grid;
  gap: 0.2rem;
}

.about-trust-item strong {
  color: #ddf5ff;
  font-size: 0.93rem;
}

.about-trust-item span {
  color: #bdd5ea;
  font-size: 0.84rem;
}

.about-close-btn {
  margin-top: 0.2rem;
  justify-self: start;
}

.section-why {
  background: linear-gradient(170deg, rgba(9, 15, 25, 0.74), rgba(9, 14, 23, 0.46));
  border-top: 1px solid rgba(188, 224, 255, 0.12);
  border-bottom: 1px solid rgba(188, 224, 255, 0.12);
}

.why-layout {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1.25fr;
  align-items: start;
}

.why-list {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(188, 224, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 17, 28, 0.74);
  display: grid;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.why-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.72rem;
  align-items: center;
  padding: 0.68rem;
  border-radius: 12px;
  background: rgba(122, 216, 255, 0.08);
}

.why-item svg {
  width: 24px;
  height: 24px;
  stroke: #9ae6ff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item p {
  margin: 0;
  color: #e9f6ff;
  font-weight: 500;
}

.cert-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cert-card {
  padding: 1.2rem;
}

.testimonials-shell {
  margin-top: 1.4rem;
}

.testimonials-track {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.25rem;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.9rem;
  align-content: start;
}

.quote {
  color: #eef8ff;
  font-weight: 600;
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  line-height: 1.55;
}

.testimonial-detail {
  color: #c9daec;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.5;
  font-weight: 500;
}

.author {
  margin-top: auto;
  color: #b9cee4;
  font-size: 1rem;
  font-weight: 600;
}

.testimonials-dots {
  display: none;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.testimonials-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(174, 208, 236, 0.45);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.testimonials-dots button.active {
  transform: scale(1.15);
  background: #c1eeff;
}

.cta-section {
  background: linear-gradient(168deg, rgba(10, 16, 26, 0.74), rgba(8, 13, 21, 0.58));
  border-top: 1px solid rgba(188, 224, 255, 0.14);
  border-bottom: 1px solid rgba(188, 224, 255, 0.14);
}

.contact-layout {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-info {
  padding: 1.28rem;
}

.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-cards-single {
  grid-template-columns: 1fr;
}

.booking-card {
  padding: 1.24rem;
  display: grid;
  gap: 0.74rem;
  border: 1px solid rgba(189, 226, 255, 0.24);
  background: linear-gradient(166deg, rgba(10, 16, 26, 0.9), rgba(8, 13, 21, 0.9));
}

.booking-card h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.7vw, 1.45rem);
}

.booking-card p {
  margin: 0;
  color: #d4e6f8;
}

.booking-card .btn {
  margin-top: 0.3rem;
}

.booking-card-highlight {
  border-color: rgba(148, 228, 255, 0.54);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(141, 222, 255, 0.18);
}

.booking-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.16rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 228, 255, 0.56);
  color: #dff6ff !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(91, 203, 255, 0.16);
}

.contact-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.contact-logo {
  width: auto;
  height: 38px;
}

.price-list {
  display: grid;
  gap: 0.44rem;
  margin-bottom: 0.7rem;
}

.note-box {
  margin-top: 0.75rem;
  border: 1px solid rgba(155, 223, 255, 0.48);
  border-radius: 12px;
  padding: 0.7rem 0.82rem;
  color: #e6f7ff;
  background: rgba(110, 217, 255, 0.1);
}

.inline-link {
  color: #c5f0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: #ecf6ff;
  font-weight: 500;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(198, 228, 255, 0.28);
  border-radius: 13px;
  padding: 0.74rem 0.82rem;
  background: rgba(10, 17, 27, 0.9);
  color: var(--text);
  font: inherit;
  transition: border-color 0.45s ease, box-shadow 0.45s ease, background-color 0.45s ease;
}

.textarea {
  min-height: 128px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.58rem;
  color: var(--text-muted);
  font-size: 0.89rem;
}

.form-msg {
  margin: 0;
  min-height: 1.15rem;
  font-size: 0.9rem;
}

.form-msg.error {
  color: #ffced0;
}

.form-msg.success {
  color: #acf6d0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.64);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(194, 225, 255, 0.34);
  border-radius: 18px;
  background: linear-gradient(168deg, rgba(13, 20, 32, 0.96), rgba(11, 17, 27, 0.95));
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.45s ease;
}

.modal.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(186, 220, 250, 0.35);
  border-radius: 999px;
  background: rgba(7, 12, 20, 0.82);
  color: #edf7ff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.modal-media {
  height: clamp(220px, 36vh, 360px);
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 1.15rem;
}

.modal-content h3 {
  margin: 0 0 0.62rem;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.modal-content h4 {
  margin: 0.95rem 0 0.4rem;
}

.modal-content p {
  margin: 0;
  color: var(--text-muted);
}

.modal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #ebf7ff;
}

.booking-modal-dialog {
  width: min(760px, calc(100% - 32px));
}

.booking-modal-content {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem;
}

.booking-intro {
  margin-top: -0.2rem !important;
}

.booking-form {
  margin-top: 0.25rem;
}

.schedule-card {
  border: 1px solid rgba(165, 224, 255, 0.34);
  border-radius: 16px;
  padding: 0.8rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(132, 222, 255, 0.16), transparent 46%),
    linear-gradient(160deg, rgba(9, 16, 27, 0.95), rgba(8, 13, 22, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(202, 237, 255, 0.12),
    0 16px 34px rgba(2, 8, 15, 0.35);
  animation: scheduleFloat 0.7s ease;
}

.schedule-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.schedule-card-head h5 {
  margin: 0;
  font-size: 0.98rem;
  color: #edf7ff;
  letter-spacing: 0.01em;
}

.schedule-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 231, 255, 0.48);
  background: rgba(125, 219, 255, 0.16);
  color: #dff3ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.schedule-grid .field {
  margin: 0;
}

.time-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.time-pill {
  border: 1px solid rgba(176, 224, 255, 0.34);
  border-radius: 999px;
  padding: 0.46rem 0.55rem;
  background: rgba(7, 13, 22, 0.82);
  color: #d8edff;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.time-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 223, 255, 0.62);
}

.time-pill.active {
  border-color: rgba(148, 228, 255, 0.82);
  background: linear-gradient(140deg, rgba(112, 211, 252, 0.42), rgba(114, 186, 255, 0.26));
  color: #f2fbff;
  box-shadow: 0 0 0 1px rgba(147, 223, 255, 0.25);
}

.time-pill:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.slot-note {
  margin: 0.4rem 0 0;
  color: #cfe2f4;
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.field-help {
  font-size: 0.82rem;
  color: #bdd3e8;
}

.booking-privacy {
  margin-top: 0.1rem;
  border: 1px solid rgba(155, 223, 255, 0.32);
  border-radius: 14px;
  padding: 0.7rem 0.82rem;
  background: rgba(13, 20, 31, 0.86);
}

.booking-privacy p {
  margin: 0 0 0.5rem;
  color: #d6e9fa;
}

.site-footer {
  border-top: 1px solid rgba(188, 224, 255, 0.15);
  padding: 2.2rem 0;
  background: rgba(6, 10, 16, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: auto;
  height: 44px;
}

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

.footer-grid p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.footer-bottom {
  margin-top: 0.8rem;
}

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

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

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.15s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.22s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.29s;
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(122, 216, 255, 0.58);
  background: rgba(7, 12, 20, 0.9);
  color: #d2f4ff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 1001;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 10px;
  z-index: 1060;
  border: 1px solid rgba(170, 230, 255, 0.68);
  border-radius: 999px;
  padding: 0.82rem 1rem;
  background: linear-gradient(140deg, rgba(125, 220, 255, 0.94), rgba(190, 239, 255, 0.94));
  color: #052132;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(2, 8, 15, 0.42), 0 0 18px rgba(125, 220, 255, 0.35);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(138, 222, 255, 0.82);
  box-shadow: 0 0 0 4px rgba(117, 212, 255, 0.18), 0 0 20px rgba(117, 212, 255, 0.2);
  background: rgba(11, 19, 30, 0.98);
}

.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus,
.select:-webkit-autofill,
.textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px rgba(10, 17, 27, 0.95) inset;
  transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .store-slide {
    grid-template-columns: 0.74fr 1.26fr;
  }

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

  .gadget-store-top,
  .gadget-cta-panel,
  .gadget-detail-panel .detail-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .why-layout,
  .contact-layout,
  .order-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 20px;
    background: rgba(5, 9, 14, 0.97);
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .store-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-carousel-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .gadget-cta-panel {
    align-items: start;
  }

  .gadget-cta-button {
    min-width: 0;
    width: 100%;
  }

  .nav-consult,
  .nav-cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body::before {
    background-position: 58% top;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::before {
    background-position: 50% 58%;
    filter: brightness(1.12) contrast(1.04) saturate(1.03);
  }

  .hero::after {
    background:
      radial-gradient(circle at 22% 28%, rgba(182, 229, 255, 0.42), transparent 38%),
      radial-gradient(circle at 78% 72%, rgba(126, 216, 255, 0.16), transparent 35%),
      linear-gradient(180deg, rgba(7, 14, 26, 0.32), rgba(5, 10, 18, 0.73));
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-content {
    margin-left: 0;
    margin-right: 0;
  }

  .services-grid,
  .store-grid,
  .cert-grid,
  .form-grid,
  .schedule-grid,
  .about-trust-grid,
  .about-features-row,
  .booking-cards {
    grid-template-columns: 1fr;
  }

  .gadget-store-shell {
    border-radius: 22px;
    padding: 14px;
  }

  .store-carousel-shell {
    border-radius: 20px;
    padding: 10px;
  }

  .store-slide {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0;
  }

  .store-slide-media {
    aspect-ratio: 1 / 0.56;
  }

  .store-slide-copy {
    padding: 0.1rem 0.1rem 0;
  }

  .store-slide-copy h3 {
    font-size: 0.95rem;
  }

  .store-slide-copy p {
    max-width: none;
    font-size: 0.82rem;
  }

  .store-slide-meta {
    align-items: center;
  }

  .store-slide-btn {
    min-width: 96px;
    min-height: 32px;
    padding: 0.48rem 0.7rem;
    font-size: 0.78rem;
  }

  .store-carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .gadget-panel {
    padding: 0.7rem;
  }

  .gadget-store-title {
    font-size: clamp(1.34rem, 6vw, 1.8rem);
  }

  .gadget-store-lead {
    font-size: 0.84rem;
  }

  .category-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(124px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-tile {
    min-height: 98px;
  }

  .gadget-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .gadget-copy h3 {
    font-size: 0.8rem;
  }

  .gadget-copy {
    padding: 0.52rem;
    gap: 0.28rem;
  }

  .gadget-copy p {
    font-size: 0.72rem;
  }

  .gadget-thumb {
    aspect-ratio: 1 / 0.54;
  }

  .gadget-price {
    font-size: 0.84rem !important;
  }

  .gadget-actions {
    gap: 0.28rem;
  }

  .gadget-actions .btn {
    min-height: 30px;
    padding: 0.4rem 0.45rem;
    font-size: 0.68rem;
  }

  .detail-card {
    padding: 0.72rem;
  }

  .gadget-price {
    font-size: 1.12rem !important;
  }

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

  .testimonials-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 100%;
    scroll-snap-align: center;
    margin-right: 0;
    aspect-ratio: auto;
    min-height: 300px;
  }

  .testimonials-dots {
    display: flex;
  }

  .modal-dialog {
    width: min(94vw, 760px);
  }

  .mobile-sticky-cta {
    display: block;
  }
}

@media (min-width: 761px) {
  .mobile-sticky-cta {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
