:root {
  --ink: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f7f9fc;
  --panel: #ffffff;
  --dark: #101827;
  --navy: #172033;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --blue: #2563eb;
  --ok: #16a34a;
  --warn: #ca8a04;
  --danger: #dc2626;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
  font-size: 13px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-size: 15px;
}
.main-nav a:hover { color: var(--accent); }
.nav-phone {
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 72px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #fff;
}
.hero h1, .page-hero h1 {
  margin: 12px 0 16px;
  max-width: 820px;
  font-size: 86px;
  line-height: .95;
}
.hero p, .page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 22px;
}
.hero-media {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-dark); }
.btn.ghost { color: #fff; background: var(--dark); }
.btn.secondary { background: var(--blue); color: #fff; }
.btn.light { border-color: var(--line); color: var(--muted); }
.btn.small { min-height: 36px; padding: 8px 12px; font-size: 13px; }
.btn.danger { background: var(--danger); color: #fff; }
.link { color: var(--blue); font-weight: 800; }

.section, .content-page, .catalog-layout, .product-page {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px);
}
.section.alt { background: #eef3f9; }
.section.dark { background: var(--dark); color: #fff; }
.section.narrow { max-width: 920px; margin: 0 auto; }
.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}
.section-head.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.section h2, .section-head h2, .content-page h2, .admin-main h1 {
  margin: 8px 0 0;
  font-size: 48px;
  line-height: 1.05;
}
.feature-grid, .category-grid, .product-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid.small { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
.feature, .category-card, .panel, .product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(15, 23, 42, .04);
}
.feature, .category-card { padding: 24px; }
.feature span {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--accent);
  border-radius: 999px;
}
.feature h3, .category-card h3, .product-card h3 { margin: 0 0 8px; }
.feature p, .category-card p, .product-card p { margin: 0; color: var(--muted); }
.category-card:hover { border-color: var(--accent); }

.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { overflow: hidden; }
.product-image {
  position: relative;
  height: 210px;
  background: var(--navy);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.badge.ok { color: var(--ok); }
.badge.warn { color: var(--warn); }
.badge.muted { color: var(--muted); }
.product-body { padding: 18px; }
.category-name {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.price-row, .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.price-row span, .meta-row span {
  padding: 7px 9px;
  border-radius: var(--radius);
  background: #f1f5f9;
  font-size: 13px;
  font-weight: 700;
}
.product-card .btn { width: 100%; margin-top: 16px; }

.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}
.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #fff;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.clean-list { padding-left: 18px; color: var(--muted); }
.clean-list li { margin: 10px 0; }
.form { display: grid; gap: 14px; }
.form h1, .form h2 { margin: 0 0 6px; }
.form label { display: grid; gap: 7px; color: #334155; font-weight: 700; }
.form input, .form select, .form textarea, table input, table select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.form textarea { resize: vertical; }
.panel { padding: 24px; }
.check {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  font-weight: 400 !important;
}
.check input { min-height: 18px; width: 18px; margin-top: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.flash, .alert {
  margin: 18px clamp(18px, 4vw, 56px);
  padding: 14px 18px;
  border-radius: var(--radius);
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert { background: #fef2f2; color: #991b1b; border-color: #fecaca; }

.page-hero {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 4vw, 56px);
  background: #fff;
}
.page-hero.compact { min-height: 300px; }
.catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.filters { position: sticky; top: 92px; }
.catalog-top { display: flex; justify-content: space-between; margin-bottom: 16px; }
.catalog-top h2 { margin: 0; }
.empty { color: var(--muted); }
.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 64px);
  background: #fff;
}
.gallery { display: grid; gap: 12px; }
.main-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.product-info h1 { margin: 8px 0 12px; font-size: 58px; line-height: 1.02; }
.rent-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.rent-box div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}
.rent-box strong { display: block; font-size: 22px; }
.rent-box span { color: var(--muted); font-size: 13px; }
.details-list { display: grid; gap: 10px; margin: 0 0 20px; }
.details-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.details-list dt { color: var(--muted); }
.details-list dd { margin: 0; }
.notice {
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}
.content-page { display: grid; gap: 22px; }
.prose { max-width: 920px; }
.prose p { color: #334155; font-size: 18px; }
.contact-card p { color: #334155; }
.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 18px;
  border: 1px dashed #94a3b8;
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--muted);
  text-align: center;
  padding: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #cbd5e1;
  background: var(--dark);
}
.site-footer p { max-width: 520px; margin: 8px 0 0; color: #94a3b8; }
.site-footer div:last-child { display: grid; gap: 6px; text-align: right; }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}
.login-card { width: min(420px, 100%); }
.admin-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: var(--dark);
  color: #fff;
}
.admin-sidebar .brand { color: #fff; margin-bottom: 24px; }
.admin-sidebar .brand-mark { background: var(--accent); }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a {
  padding: 11px 12px;
  border-radius: var(--radius);
  color: #cbd5e1;
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { padding: 28px; min-width: 0; }
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.admin-head h1 { margin: 0; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.admin-stats div, .stats div {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.admin-stats strong, .stats strong { display: block; font-size: 34px; }
.admin-stats span, .stats span { color: var(--muted); }
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .6fr);
  gap: 18px;
}
.admin-stack { display: grid; gap: 18px; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th, td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th { color: #475569; font-size: 13px; }
.actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inline-form { display: flex; gap: 8px; align-items: center; }
.list-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1180px) {
  .hero h1,
  .hero-premium h1 { font-size: 74px; }
  .section h2,
  .section-head h2,
  .content-page h2,
  .admin-main h1 { font-size: 42px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid, .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .main-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .main-nav.open { display: grid; }
  .hero, .split, .product-page, .catalog-layout, .admin-body, .admin-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-media, .hero-media img { min-height: 340px; }
  .filters { position: static; }
  .admin-sidebar {
    position: static;
    height: auto;
  }
  .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero h1, .page-hero h1 { font-size: 42px; }
  .product-grid, .feature-grid, .feature-grid.small, .category-grid, .steps, .form-grid, .rent-box {
    grid-template-columns: 1fr;
  }
  .section-head.row, .site-footer, .admin-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer div:last-child { text-align: left; }
  .details-list div { grid-template-columns: 1fr; gap: 2px; }
  .admin-main { padding: 18px; }
  .admin-stats { grid-template-columns: 1fr; }
  .admin-sidebar nav { grid-template-columns: 1fr; }
}

/* Premium visual layer */
:root {
  --ink: #10141f;
  --muted: #728094;
  --line: rgba(148, 163, 184, .22);
  --bg: #f4f7fb;
  --panel: rgba(255, 255, 255, .86);
  --dark: #070b13;
  --navy: #0d1726;
  --accent: #ff6b1a;
  --accent-dark: #d94b08;
  --blue: #2f7cff;
  --cyan: #12d6ff;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(8, 13, 24, .16);
}

body {
  background:
    radial-gradient(circle at 15% 8%, rgba(47, 124, 255, .10), transparent 32vw),
    radial-gradient(circle at 86% 18%, rgba(255, 107, 26, .10), transparent 28vw),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 42%, #f7f9fc 100%);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .42;
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.site-header {
  margin: 14px clamp(14px, 3vw, 34px) 0;
  width: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(7, 11, 19, .76);
  color: #fff;
  box-shadow: 0 18px 50px rgba(7, 11, 19, .18);
}

.brand,
.main-nav,
.nav-phone { color: #fff; }

.brand-mark {
  background: linear-gradient(135deg, var(--accent), #ffb21a);
  box-shadow: 0 0 28px rgba(255, 107, 26, .42);
}

.main-nav a {
  opacity: .84;
  transition: opacity .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.nav-phone {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
}

.hero-premium {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  margin-top: -76px;
  padding-top: 132px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 11, 19, .98) 0%, rgba(7, 11, 19, .90) 43%, rgba(7, 11, 19, .52) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=85") center / cover;
}

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

.hero-premium::before {
  inset: 0;
  opacity: .58;
  background:
    radial-gradient(circle at 78% 26%, rgba(18, 214, 255, .26), transparent 23vw),
    radial-gradient(circle at 52% 78%, rgba(255, 107, 26, .24), transparent 28vw),
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, .10) 58.2% 58.6%, transparent 58.8%);
}

.hero-premium::after {
  left: -10%;
  right: -10%;
  bottom: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18, 214, 255, .08), rgba(255, 107, 26, .86), rgba(18, 214, 255, .1), transparent);
  transform: rotate(-8deg);
  box-shadow: 0 0 36px rgba(255, 107, 26, .7);
}

.hero-copy,
.hero-media,
.section,
.ticker {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 940px;
  font-size: 112px;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .36);
}

.hero p {
  color: rgba(226, 232, 240, .86);
  font-size: 24px;
}

.eyebrow {
  gap: 10px;
  align-items: center;
  color: #ffb21a;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  box-shadow: 0 0 18px rgba(255, 107, 26, .55);
}

.btn {
  min-height: 52px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffb21a);
  box-shadow: 0 18px 42px rgba(255, 107, 26, .34);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
}

.hero-media {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .42);
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 0 62%, rgba(7, 11, 19, .86) 100%),
    linear-gradient(115deg, rgba(255, 107, 26, .42), transparent 22%, transparent 76%, rgba(18, 214, 255, .28));
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 15%;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, var(--accent), transparent);
  box-shadow: 0 0 34px rgba(255, 107, 26, .9);
}

.hero-media img {
  filter: saturate(1.15) contrast(1.08);
}

.hero-overlay-card,
.hero-trust div,
.panel,
.feature,
.category-card,
.product-card {
  backdrop-filter: blur(18px);
}

.hero-overlay-card {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(7, 11, 19, .58);
}

.hero-overlay-card span,
.hero-overlay-card small {
  display: block;
  color: rgba(226, 232, 240, .75);
}

.hero-overlay-card strong {
  display: block;
  margin: 4px 0;
  font-size: 28px;
}

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

.hero-trust div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.hero-trust strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.hero-trust span {
  color: rgba(226, 232, 240, .72);
  font-size: 13px;
}

.ticker {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #070b13;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ticker span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(226, 232, 240, .86);
  font-size: 13px;
}

.section {
  position: relative;
}

.section h2,
.section-head h2,
.content-page h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.feature,
.category-card,
.product-card,
.panel {
  border-color: rgba(148, 163, 184, .24);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

.feature,
.category-card {
  min-height: 210px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, .48);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .16);
}

.feature span {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, .18), rgba(18, 214, 255, .12)),
    linear-gradient(135deg, var(--accent), #ffb21a);
  background-blend-mode: screen, normal;
  box-shadow: 0 14px 34px rgba(255, 107, 26, .22);
}

.category-card {
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 124, 255, .18), transparent 70%);
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(7, 11, 19, .96), rgba(13, 23, 38, .92)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.section.alt .category-card {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.section.alt .category-card p {
  color: rgba(226, 232, 240, .72);
}

.product-showcase {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 26, .10), transparent 28vw),
    radial-gradient(circle at 85% 10%, rgba(47, 124, 255, .10), transparent 28vw);
}

.product-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-image {
  height: 250px;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 11, 19, .72));
}

.badge {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .14);
}

.price-row span,
.meta-row span {
  background: rgba(15, 23, 42, .05);
}

.section.dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 11, 19, .98), rgba(13, 23, 38, .96)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, .08) 48.2% 48.6%, transparent 48.8%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 26, .22), transparent 28vw);
}

.steps article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.steps article::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 214, 255, .20), transparent 70%);
}

.steps span {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #ffb21a);
  box-shadow: 0 14px 34px rgba(255, 107, 26, .32);
}

.final-cta {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 124, 255, .10), transparent 28vw),
    linear-gradient(180deg, #fff, #f3f7fc);
}

.form.panel {
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .12);
}

.form input,
.form select,
.form textarea,
table input,
table select {
  border-color: rgba(148, 163, 184, .34);
  background: rgba(248, 250, 252, .9);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(255, 107, 26, .22);
  border-color: rgba(255, 107, 26, .55);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 11, 19, .96), rgba(13, 23, 38, .82)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero p {
  color: rgba(226, 232, 240, .78);
}

@media (max-width: 900px) {
  .site-header {
    margin: 10px;
  }

  .main-nav {
    background: rgba(7, 11, 19, .94);
    border-color: rgba(255, 255, 255, .12);
  }

  .nav-toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .10);
  }

  .hero-premium {
    margin-top: -68px;
    padding-top: 118px;
  }

  .hero-media {
    transform: none;
  }

  .hero h1,
  .hero-premium h1 { font-size: 58px; }
  .hero p,
  .page-hero p { font-size: 19px; }
  .section h2,
  .section-head h2,
  .content-page h2,
  .admin-main h1 { font-size: 36px; }

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

@media (max-width: 640px) {
  .hero-premium {
    min-height: auto;
  }

  .hero h1,
  .hero-premium h1 { font-size: 44px; }
  .section h2,
  .section-head h2,
  .content-page h2,
  .admin-main h1 { font-size: 32px; }
  .product-info h1 { font-size: 38px; }

  .ticker {
    overflow-x: auto;
  }
}
