@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0b0f1a;
  --bg-soft: #0f1526;
  --card: #151c2f;
  --text: #eef2ff;
  --muted: #9aa3b2;
  --accent: #5c7cfa;
  --accent-2: #2dd4bf;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1a233a 0%, var(--bg) 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(10, 14, 26, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}

main {
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}


.nav {
  display: flex;
  gap: 18px;
}

.nav-link {
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0b0f1a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(45, 212, 191, 0.25);
}

.lang-switch select {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.hero {
  padding: 90px 0 50px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent-2);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f1a;
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(21, 28, 47, 0.6);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  min-width: 140px;
}

.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.banner {
  background: linear-gradient(140deg, #1c2541 0%, #111827 70%);
  border-radius: 24px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.banner-track {
  display: flex;
  transition: transform 0.6s ease;
}

.banner-slide {
  min-width: 100%;
}

.banner-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border);
}

.banner-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}

.banner-text {
  margin: 8px 0 0;
}

.banner-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  background: var(--accent-2);
  transform: scale(1.2);
}

.hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(92, 124, 250, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

.section {
  padding: 70px 0;
}

.section-head {
  max-width: 680px;
}

.cards {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.company-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  margin-top: 24px;
}

.company-media {
  margin: 0;
  background: var(--card);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.company-media img {
  border-radius: 14px;
}

.company-media figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.photo-frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.6));
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e9edf3;
  border-radius: 12px;
  padding: 10px;
}

.advantage-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.product-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.product-media {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-media .photo-frame {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.quality-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, #1c2743, #121829);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quality-meter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.meter-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  width: 98%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.cta {
  background: linear-gradient(135deg, rgba(92, 124, 250, 0.2), rgba(45, 212, 191, 0.2));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--border);
}

.cta.compact .cta-inner {
  padding: 22px;
}

.page-hero {
  padding: 70px 0 40px;
}

.catalog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.specs-toggle {
  margin-top: 24px;
}

.specs-toggle summary {
  list-style: none;
}

.specs-toggle summary::-webkit-details-marker {
  display: none;
}

.product-overview {
  margin: 24px 0 28px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: var(--shadow);
}

.product-overview h3 {
  margin-bottom: 14px;
}

.overview-caption {
  text-align: center;
  margin: 18px 0;
  color: var(--text);
  font-weight: 600;
}

.overview-media {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-media img {
  max-width: 100%;
  height: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  color: var(--text);
}

.specs-table th,
.specs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
}

.specs-table th {
  font-weight: 600;
  color: var(--text);
  background: rgba(92, 124, 250, 0.12);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.gallery-item {
  height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #e9edf3;
  padding: 12px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: translateY(-4px);
}

.order-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.order-list {
  padding-left: 18px;
  color: var(--muted);
}

.order-list li {
  margin-bottom: 10px;
}

.order-note {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.faq-item p {
  margin: 0;
}

.product-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 28px;
  align-items: center;
  transition: transform 0.3s ease, border 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 124, 250, 0.6);
}

.product-photo {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.product-photo img:hover {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 10, 18, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  position: relative;
  width: min(92vw, 1080px);
  max-height: 92vh;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(24px);
  transition: transform 0.34s ease;
}

.lightbox-overlay.is-open .lightbox-frame {
  transform: scale(1) translateY(0);
}

.lightbox-image {
  width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 14, 26, 0.72);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.06);
  background: rgba(10, 14, 26, 0.9);
}

body.lightbox-open {
  overflow: hidden;
}

.product-body h3 {
  margin-bottom: 10px;
}

.product-desc {
  color: var(--text);
  font-weight: 500;
}

.product-specs {
  margin: 16px 0;
}

.spec-title {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 600;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.spec-list li span:last-child {
  color: var(--text);
  font-weight: 600;
}

.btn.small {
  padding: 10px 18px;
  font-size: 14px;
}

.product-info h3 {
  margin-bottom: 8px;
}

.product-tag {
  display: inline-block;
  font-size: 12px;
  color: #0b0f1a;
  background: var(--accent-2);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.product-meta {
  font-size: 13px;
  color: var(--muted);
}

.contacts-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contacts-info {
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-item {
  font-size: 18px;
  color: var(--text);
}

.contact-block {
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #0c1224;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input.is-empty,
.contact-form textarea.is-empty {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.form-success-tooltip {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: rgba(45, 212, 191, 0.14);
  color: #d1fae5;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-success-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-error-tooltip {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.14);
  color: #fecaca;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-error-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-form .btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

.contact-form .btn.is-success {
  animation: submit-success-pop 0.45s ease;
}

.form-send-flight {
  position: absolute;
  left: 36px;
  bottom: 82px;
  width: 24px;
  height: 16px;
  border: 2px solid rgba(45, 212, 191, 0.95);
  border-radius: 4px;
  background: rgba(45, 212, 191, 0.12);
  opacity: 0;
  transform: translate(0, 0) rotate(0deg) scale(0.85);
  pointer-events: none;
  z-index: 2;
}

.form-send-flight::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background:
    linear-gradient(
      135deg,
      transparent 48%,
      rgba(45, 212, 191, 0.85) 49%,
      rgba(45, 212, 191, 0.85) 51%,
      transparent 52%
    );
}

.form-send-flight::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.45);
  opacity: 0;
}

.form-send-flight.is-flying {
  animation: mail-flight 1s cubic-bezier(0.22, 0.68, 0.2, 1) forwards;
}

.form-send-flight.is-flying::after {
  animation: mail-trail 1s ease-out forwards;
}

@keyframes submit-success-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes mail-flight {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.85);
  }
  16% {
    opacity: 1;
    transform: translate(28px, -10px) rotate(-6deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(260px, -170px) rotate(-18deg) scale(0.58);
  }
}

@keyframes mail-trail {
  0% {
    opacity: 0;
    transform: scaleX(0.2);
  }
  20% {
    opacity: 0.8;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.35);
  }
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  background: rgba(10, 14, 26, 0.9);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-title {
  font-weight: 600;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-photo {
    height: 220px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .container {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 56px 0 36px;
  }

  .hero-glow {
    display: none;
  }

  .hero-grid,
  .hero-content,
  .hero-visual,
  .banner {
    max-width: 100%;
  }

  .hero-content,
  .hero-visual {
    min-width: 0;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-stats .stat:last-child {
    grid-column: 1 / -1;
  }

  .stat {
    min-width: 0;
  }

  .banner {
    padding: 18px;
    overflow: hidden;
  }

  .banner-card {
    padding: 18px;
    overflow-wrap: anywhere;
  }

  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
    padding: 8px 0;
    gap: 10px;
  }

  .logo {
    order: 1;
  }

  .logo-img {
    width: 100px;
    height: 100px;
  }

  .lang-switch {
    order: 2;
    width: auto;
    margin-left: auto;
    display: block;
  }

  .lang-switch select {
    padding: 6px 9px;
    border-radius: 10px;
  }

  .nav-toggle {
    order: 3;
    margin-left: 2px;
  }

  .nav {
    position: fixed;
    top: 96px;
    left: 12px;
    right: 12px;
    background: rgba(10, 14, 26, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: transform, opacity;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header,
  main,
  .site-footer {
    overflow-x: clip;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .header-inner {
    position: relative;
  }

  .specs-toggle {
    margin-top: 18px;
  }

  .specs-toggle summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.65);
    color: var(--text);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .specs-toggle[open] summary {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .specs-toggle summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    background: rgba(2, 6, 23, 0.45);
  }

  .specs-toggle[open] summary::after {
    content: "-";
  }

  .specs-toggle .table-wrap {
    margin-top: 0;
  }

  .specs-table thead {
    display: none;
  }

  .specs-table,
  .specs-table tbody,
  .specs-table tr,
  .specs-table td {
    display: block;
    width: 100%;
  }

  .table-wrap {
    overflow-x: hidden;
  }

  .specs-table {
    min-width: 0;
  }

  .specs-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .specs-table td {
    display: grid;
    gap: 6px;
    padding: 10px 0;
    border: none;
    text-align: center;
    justify-items: center;
  }

  .specs-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    text-align: center;
  }

  .site-footer {
    padding: 24px 0 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-links {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }
}

@media (min-width: 761px) {
  .specs-toggle summary {
    display: none;
  }

  .specs-toggle:not([open]) > *:not(summary) {
    display: block !important;
  }
}
