:root {
  --ink: #102033;
  --navy: #0f2747;
  --blue: #1f67d2;
  --soft: #f5f8fc;
  --line: #d8e2ee;
  --muted: #64748b;
  --paper: #ffffff;
}
body.horion {
  --blue: #7c3aed;
  --navy: #27124f;
  --soft: #f7f2ff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  background: white;
  border-bottom: 1px solid var(--line);
}
.logo {
  width: 230px;
  height: 54px;
  display: grid;
  place-items: center;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.back {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 9px 13px;
  color: var(--navy);
  background: white;
  font-weight: 800;
  text-decoration: none;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.site-menu a {
  text-decoration: none;
  white-space: nowrap;
}
.site-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 14px 32px rgba(15, 34, 56, .12);
}
.site-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.topbar.menu-open .site-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar.menu-open .site-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.topbar.menu-open .site-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.product-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}
.hero-detail {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}
.visual,
.intro,
.specs article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, .07);
}
.visual {
  padding: 20px;
  display: grid;
  place-items: center;
}
.visual img {
  max-height: 560px;
  object-fit: contain;
}
.intro {
  padding: clamp(22px, 4vw, 42px);
}
.intro span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: #1355b1;
  background: #e5f3ff;
  font-size: 13px;
  font-weight: 900;
}
h1 {
  margin: 16px 0 12px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 660px;
}
.btn {
  margin-top: 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-weight: 850;
  text-decoration: none;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(15, 32, 51, .22);
  font-weight: 900;
  text-decoration: none;
}
.whatsapp-float::before {
  content: "W";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #25d366;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
}
.lead-form {
  margin-top: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, .07);
  padding: clamp(20px, 4vw, 30px);
}
.lead-form h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 38px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}
input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 103, 210, .14);
}
textarea {
  min-height: 116px;
  resize: vertical;
}
.full {
  grid-column: 1 / -1;
}
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
}
.form-status.success {
  color: #0d7a55;
}
.form-status.error {
  color: #b91c1c;
}

.specs h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1.1;
}
.product-gallery {
  margin: 30px 0;
}
.product-gallery h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(16, 32, 51, .07);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.gallery-grid figcaption {
  padding: 10px 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.specs article {
  overflow: hidden;
}
.specs h3 {
  margin: 0;
  padding: 14px 18px;
  color: white;
  background: var(--blue);
  font-size: 22px;
}
body.horion .specs article:first-child {
  grid-column: 1 / -1;
}
body.horion .specs ul {
  margin: 0;
  padding: 18px 22px 18px 38px;
  color: #334155;
}
body.horion .specs li + li {
  margin-top: 8px;
}
dl {
  margin: 0;
}
dt,
dd {
  margin: 0;
  padding: 11px 16px;
  border-top: 1px solid #e5edf5;
}
dt {
  color: #0f172a;
  font-weight: 850;
  background: #f1f5f9;
}
dd {
  color: #334155;
}

@media (min-width: 760px) {
  dl {
    display: grid;
    grid-template-columns: minmax(160px, .85fr) minmax(0, 1.15fr);
  }
  dt,
  dd {
    min-height: 46px;
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 66px;
  }
  .logo {
    width: 172px;
    height: 48px;
  }
  .hero-detail,
  .spec-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  body.horion .specs article:first-child {
    grid-column: auto;
  }
  .full {
    grid-column: auto;
  }
  .visual img {
    max-height: 440px;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 10px 13px;
    font-size: 14px;
  }
}

/* Premium M6APro V2 product pages */
body.premium-m6 {
  --blue: #0f66d8;
  --navy: #091a33;
  --soft: #f4f8ff;
  background: #ffffff;
}
body.premium-m6 .product-page {
  width: 100%;
  padding: 0;
}
.premium-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.premium-hero {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 250, 255, .98) 0%, rgba(244, 250, 255, .88) 28%, rgba(244, 250, 255, .18) 55%, rgba(244, 250, 255, 0) 100%),
    url("assets/images/m6apro-hero-banner.png") center right / cover no-repeat;
}
.premium-hero-grid {
  min-height: clamp(520px, 58vw, 760px);
  display: flex;
  align-items: center;
}
.premium-hero-content {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 58px) 0;
}
.premium-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.premium-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 7vw, 86px);
  line-height: .95;
}
.premium-lead {
  margin: 20px 0 0;
  color: #334155;
  max-width: 640px;
  font-size: 19px;
}
.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.premium-actions .btn {
  margin-top: 0;
}
.premium-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.premium-chip {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #ffffff;
}
.premium-chip strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}
.premium-chip span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}
.premium-section {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #ffffff;
}
.premium-section.soft {
  background: var(--soft);
}
.premium-section.dark {
  color: #ffffff;
  background: #07182f;
}
.premium-head {
  max-width: 790px;
  margin-bottom: 28px;
}
.premium-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.04;
}
.premium-section.dark .premium-head h2,
.premium-section.dark .premium-head p {
  color: #ffffff;
}
.premium-head p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 18px;
}
.premium-story {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}
.premium-story.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}
.premium-story img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, .28);
  box-shadow: 0 22px 52px rgba(15, 39, 71, .14);
}
.premium-copy {
  display: grid;
  gap: 14px;
}
.premium-copy h2,
.premium-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 4vw, 40px);
  line-height: 1.08;
}
.premium-copy p {
  margin: 0;
  color: #475569;
  font-size: 17px;
}
.premium-section.dark .premium-copy h2,
.premium-section.dark .premium-copy h3,
.premium-section.dark .premium-copy p {
  color: #ffffff;
}
.premium-points,
.why-grid,
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.premium-point,
.why-card,
.size-card {
  min-height: 168px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 39, 71, .07);
}
.premium-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 950;
}
.premium-point h3,
.why-card h3,
.size-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}
.premium-point p,
.why-card p,
.size-card p {
  margin: 0;
  color: #64748b;
}
.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.premium-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 39, 71, .09);
}
.premium-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.premium-gallery-grid figcaption {
  padding: 12px 14px;
  color: #334155;
  font-weight: 850;
}
.premium-table {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 39, 71, .08);
}
.premium-table h3 {
  margin: 0;
  padding: 16px 20px;
  color: #ffffff;
  background: var(--blue);
  font-size: 22px;
}
.premium-table dl {
  display: grid;
  grid-template-columns: minmax(190px, .35fr) minmax(0, .65fr);
}
.premium-table dt,
.premium-table dd {
  min-height: 48px;
}
.premium-sizes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.size-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.premium-cta {
  padding: clamp(46px, 6vw, 70px) 0;
  color: #ffffff;
  background: linear-gradient(135deg, #07182f, #0f66d8);
}
.premium-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.premium-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}
.premium-cta p {
  margin: 10px 0 0;
  color: #dcecff;
}
.premium-cta .btn {
  margin-top: 0;
  background: #ffffff;
  color: var(--navy);
}

@media (max-width: 980px) {
  .premium-story,
  .premium-story.reverse {
    grid-template-columns: 1fr;
  }
  .premium-hero {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(244, 250, 255, .98) 0%, rgba(244, 250, 255, .9) 38%, rgba(244, 250, 255, .3) 100%),
      url("assets/images/m6apro-hero-banner.png") center bottom / cover no-repeat;
  }
  .premium-hero-grid {
    min-height: 640px;
    align-items: flex-start;
  }
  .premium-hero-content {
    padding-top: 44px;
  }
  .premium-spec-strip,
  .premium-points,
  .why-grid,
  .size-grid,
  .premium-sizes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .premium-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .premium-hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(244, 250, 255, .99) 0%, rgba(244, 250, 255, .94) 46%, rgba(244, 250, 255, .18) 100%),
      url("assets/images/m6apro-hero-banner.png") 62% bottom / auto 62% no-repeat;
  }
  .premium-hero-grid {
    min-height: 680px;
  }
  .premium-spec-strip,
  .premium-points,
  .why-grid,
  .size-grid,
  .premium-sizes,
  .premium-gallery-grid {
    grid-template-columns: 1fr;
  }
  .premium-table dl {
    grid-template-columns: 1fr;
  }
  .premium-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

body.m6-sales {
  --m6-blue: #1573e6;
  --m6-sky: #eaf6ff;
  --m6-ink: #07172d;
  --m6-muted: #5d6d82;
  --m6-line: #dbe7f3;
  background: #ffffff;
}

.m6-page-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.m6-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 76px));
  overflow: hidden;
  color: #ffffff;
  background: #07172d;
}

.m6-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(75, 190, 255, .42), transparent 30%),
    radial-gradient(circle at 62% 64%, rgba(134, 92, 255, .22), transparent 36%),
    linear-gradient(90deg, rgba(6, 17, 34, .97) 0%, rgba(7, 23, 45, .78) 38%, rgba(7, 23, 45, .18) 100%);
  pointer-events: none;
}

.m6-hero-bg {
  position: absolute;
  inset: 0;
}

.m6-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: .9;
  transform: scale(1.03);
}

.m6-hero-content {
  position: relative;
  z-index: 1;
  min-height: min(860px, calc(100vh - 76px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 9vw, 130px) 0;
  animation: m6FadeUp .75s ease both;
}

.m6-eyebrow {
  margin: 0 0 14px;
  color: var(--m6-blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.m6-hero .m6-eyebrow,
.m6-final-cta .m6-eyebrow {
  color: #9fd0ff;
}

.m6-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .96;
}

.m6-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #d8e9fb;
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.45;
}

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

.m6-hero-actions .btn {
  margin-top: 0;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(21, 115, 230, .28);
}

.m6-secondary {
  color: var(--m6-ink);
  background: #ffffff;
}

.m6-secondary.dark {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .12);
}

.m6-overview,
.m6-feature,
.m6-tech {
  padding: clamp(64px, 9vw, 118px) 0;
  background: #ffffff;
}

.m6-overview {
  background: linear-gradient(180deg, #ffffff, var(--m6-sky));
}

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

.m6-section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.m6-section-head h2 {
  margin: 0;
  color: var(--m6-ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.m6-section-head p {
  margin: 18px 0 0;
  color: var(--m6-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

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

.m6-overview-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(219, 231, 243, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 22px 60px rgba(7, 23, 45, .09);
  backdrop-filter: blur(10px);
}

.m6-overview-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--m6-blue), #5fc3ff);
  font-size: 13px;
  font-weight: 950;
}

.m6-overview-grid h3 {
  margin: 18px 0 8px;
  color: var(--m6-ink);
  font-size: 22px;
}

.m6-overview-grid p {
  margin: 0;
  color: var(--m6-muted);
  line-height: 1.55;
}

.m6-feature:nth-of-type(even) {
  background: #f7fbff;
}

.m6-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.m6-feature.reverse .m6-feature-media {
  order: 2;
}

.m6-feature-media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(116, 192, 255, .22);
  background: linear-gradient(135deg, #061122, #0b2446);
  box-shadow: 0 28px 80px rgba(7, 23, 45, .22), 0 0 44px rgba(21, 115, 230, .12);
}

.m6-feature-media img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  transition: transform .45s ease;
}

.m6-feature-media:hover img {
  transform: scale(1.035);
}

.m6-feature-copy {
  animation: m6FadeUp .65s ease both;
}

.m6-feature-copy h2 {
  margin: 0;
  color: var(--m6-ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
}

.m6-feature-copy p {
  margin: 18px 0 0;
  color: var(--m6-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.m6-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.m6-feature-copy li {
  position: relative;
  padding-left: 30px;
  color: #24364d;
  font-weight: 850;
}

.m6-feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--m6-blue), #5fc3ff);
  box-shadow: 0 0 0 5px rgba(21, 115, 230, .12);
}

.m6-tech {
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.m6-tech-table {
  overflow: hidden;
  border: 1px solid var(--m6-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(7, 23, 45, .1);
}

.m6-tech-table dl {
  display: grid;
  grid-template-columns: minmax(210px, .32fr) minmax(0, .68fr);
}

.m6-tech-table dt,
.m6-tech-table dd {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid #edf3f9;
}

.m6-tech-table dt {
  color: var(--m6-ink);
  font-weight: 950;
  background: #f7fbff;
}

.m6-tech-table dd {
  color: var(--m6-muted);
}

.m6-size-switch {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.m6-size-switch a {
  min-width: 82px;
  padding: 12px 18px;
  border: 1px solid var(--m6-line);
  border-radius: 999px;
  color: var(--m6-ink);
  background: #ffffff;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.m6-size-switch a.active {
  color: #ffffff;
  background: var(--m6-blue);
  border-color: var(--m6-blue);
}

.m6-final-cta {
  padding: clamp(64px, 9vw, 108px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 20%, rgba(95, 195, 255, .28), transparent 28%),
    linear-gradient(135deg, #07172d, #0b2b55 58%, #1573e6);
}

.m6-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.m6-final-cta h2 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.03;
}

.m6-final-cta p {
  max-width: 640px;
  margin: 18px 0 0;
  color: #d9ecff;
  font-size: 19px;
}

body.m6-sales .lead-form {
  margin-top: clamp(52px, 7vw, 90px);
  margin-bottom: clamp(52px, 7vw, 90px);
}

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

@media (prefers-reduced-motion: reduce) {
  .m6-hero-content,
  .m6-feature-copy {
    animation: none;
  }
  .m6-feature-media img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .m6-hero,
  .m6-hero-content {
    min-height: 720px;
  }
  .m6-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 23, 45, .95) 0%, rgba(7, 23, 45, .72) 44%, rgba(7, 23, 45, .18) 100%);
  }
  .m6-hero-bg img {
    object-position: center bottom;
  }
  .m6-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .m6-feature-grid,
  .m6-feature.reverse .m6-feature-grid,
  .m6-final-inner {
    grid-template-columns: 1fr;
  }
  .m6-feature.reverse .m6-feature-media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .m6-page-wrap {
    width: min(100% - 24px, 1180px);
  }
  .m6-hero,
  .m6-hero-content {
    min-height: 690px;
  }
  .m6-hero-content {
    justify-content: flex-start;
    padding-top: 54px;
  }
  .m6-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .m6-hero-actions {
    width: 100%;
  }
  .m6-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .m6-overview-grid,
  .m6-tech-table dl {
    grid-template-columns: 1fr;
  }
  .m6-feature-media {
    border-radius: 18px;
  }
  .m6-size-switch {
    flex-direction: column;
  }
}

.accessories-page,
.ops-page,
.support-page {
  --ops-blue: #1f67d2;
  --ops-sky: #eaf4ff;
  --ops-ink: #0f2238;
  --ops-muted: #5d6d82;
  --ops-line: #d9e6f2;
  background: #f6f9fc;
}

.accessories-wrap,
.ops-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ops-eyebrow {
  margin: 0 0 12px;
  color: var(--ops-blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accessories-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(31, 103, 210, .18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eef7ff 52%, #dceeff 100%);
}

.ops-hero {
  position: relative;
  min-height: clamp(560px, 56vw, 780px);
  overflow: hidden;
  background: url("assets/images/ops-hero-banner.webp") center right / cover no-repeat;
}

.ops-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 28, 48, .78) 0%, rgba(11, 28, 48, .42) 42%, rgba(11, 28, 48, .22) 100%),
    rgba(0, 0, 0, .08);
}

.accessories-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(280px, 1.06fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) 0;
}

.ops-hero-grid {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 56vw, 780px);
  display: flex;
  align-items: center;
  padding: clamp(54px, 8vw, 98px) 0;
}

.accessories-hero h1,
.ops-section h2 {
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
}

.ops-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
}

.ops-hero h2 {
  max-width: 720px;
  margin: 16px 0 0;
  color: #e8f3ff;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.12;
}

.accessories-hero p,
.ops-section-head p,
.ops-benefit-grid p,
.ops-final p {
  color: var(--ops-muted);
  font-size: 18px;
}

.ops-hero p {
  max-width: 680px;
  color: #f4f9ff;
  font-size: clamp(17px, 2vw, 21px);
}

.accessories-hero img,
.ops-hero-media,
.ops-ports-media,
.accessory-media {
  border: 1px solid rgba(217, 230, 242, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 30px 80px rgba(15, 34, 56, .12);
}

.accessories-hero img,
.ops-hero-media img,
.ops-ports-media img,
.accessory-media img {
  width: 100%;
  object-fit: contain;
}

.accessories-list,
.ops-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.accessories-head,
.ops-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.accessories-head h2,
.ops-section-head h2 {
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}

.accessory-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--ops-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 34, 56, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.accessory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(31, 103, 210, .16);
}

.accessory-content span,
.ops-config-card span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: #1355b1;
  background: #e5f3ff;
  font-size: 13px;
  font-weight: 950;
}

.accessory-content h3 {
  margin: 16px 0 10px;
  color: var(--ops-ink);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

.accessory-content p {
  max-width: 620px;
  color: var(--ops-muted);
  font-size: 19px;
}

.accessory-actions,
.ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn.secondary {
  color: var(--ops-ink);
  border-color: var(--ops-line);
  background: #ffffff;
}

.btn.secondary.dark {
  color: #ffffff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
}

.ops-hero-copy {
  width: min(720px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: rgba(7, 23, 45, .42);
  box-shadow: 0 24px 70px rgba(15, 34, 56, .18);
  backdrop-filter: blur(10px);
}

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

.ops-config-card {
  padding: 22px;
  border: 1px solid var(--ops-line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 34, 56, .08);
}

.ops-config-card.featured {
  border-color: rgba(31, 103, 210, .5);
  box-shadow: 0 26px 76px rgba(31, 103, 210, .16);
}

.ops-config-card h3 {
  margin: 16px 0;
  color: var(--ops-ink);
  font-size: 25px;
}

.ops-config-card dl {
  display: grid;
  gap: 10px;
}

.ops-config-card dt {
  color: var(--ops-ink);
  font-weight: 950;
}

.ops-config-card dd {
  margin: -8px 0 8px;
  color: var(--ops-muted);
}

.ops-soft {
  background: #eef7ff;
}

.ops-table {
  overflow-x: auto;
  border: 1px solid var(--ops-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 34, 56, .08);
}

.ops-table table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.ops-table th,
.ops-table td {
  padding: 16px;
  border-bottom: 1px solid #edf3f9;
  text-align: left;
  vertical-align: top;
}

.ops-table th {
  color: #ffffff;
  background: var(--ops-blue);
}

.ops-table td {
  color: var(--ops-muted);
}

.ops-benefit-grid,
.ops-ports-grid,
.ops-final-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

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

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

.ops-downloads a {
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--ops-line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ops-ink);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 34, 56, .07);
  font-weight: 950;
  text-decoration: none;
}

.ops-benefits article,
.ops-port-tags span {
  padding: 16px;
  border: 1px solid var(--ops-line);
  border-radius: 14px;
  color: var(--ops-ink);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 34, 56, .07);
  font-weight: 850;
}

.ops-port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ops-final {
  padding: clamp(56px, 8vw, 96px) 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0f2238, #1f67d2);
}

.ops-final h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}

.ops-final p {
  color: #dcecff;
}

.ops-page .lead-form {
  margin-top: clamp(48px, 7vw, 82px);
  margin-bottom: clamp(48px, 7vw, 82px);
}

.support-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 103, 210, .2), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edf7ff 58%, #d9ecff 100%);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: clamp(540px, 58vw, 760px);
  padding: clamp(50px, 8vw, 96px) 0;
}

.support-hero-copy {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(217, 230, 242, .9);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 28px 80px rgba(15, 34, 56, .12);
  backdrop-filter: blur(12px);
}

.support-hero-copy h1 {
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
}

.support-hero-copy h2 {
  margin: 16px 0 0;
  color: #1f67d2;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.support-hero-copy p {
  color: var(--ops-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.support-hero-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(217, 230, 242, .9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 72%, rgba(31, 103, 210, .16), transparent 42%),
    rgba(255, 255, 255, .78);
  box-shadow: 0 34px 90px rgba(15, 34, 56, .14);
}

.support-hero-media img {
  width: min(100%, 620px);
  max-height: 560px;
  object-fit: contain;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  padding: 18px;
  border: 1px solid var(--ops-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 34, 56, .08);
}

.support-card strong {
  display: block;
  color: var(--ops-ink);
  font-size: 18px;
}

.support-card span {
  display: block;
  margin-top: 8px;
  color: var(--ops-muted);
}

.support-page .lead-form {
  margin-top: clamp(48px, 7vw, 82px);
  margin-bottom: clamp(48px, 7vw, 82px);
}

.support-mobile-section {
  padding-top: 0;
}

.supports-page-hero {
  padding-top: clamp(62px, 9vw, 110px);
  background:
    radial-gradient(circle at 82% 8%, rgba(31, 103, 210, .12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.supports-page-hero .accessories-head h1 {
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
}

.support-mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-mobile-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(205, 222, 238, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 50px rgba(15, 34, 56, .08);
}

.support-mobile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #eaf4ff);
}

.support-mobile-card h3 {
  margin: 0;
  color: var(--ops-ink);
  font-size: 22px;
}

.support-mobile-card p,
.support-mobile-card li {
  color: var(--ops-muted);
  font-size: 15px;
}

.support-mobile-card ul {
  margin: 0;
  padding-left: 18px;
}

.support-mobile-card .accessory-actions {
  margin-top: auto;
}

@media (max-width: 980px) {
  .accessories-hero-grid,
  .accessory-card,
  .ops-config-grid,
  .ops-benefit-grid,
  .ops-ports-grid,
  .ops-final-inner,
  .support-hero-grid,
  .support-cards,
  .support-mobile-grid {
    grid-template-columns: 1fr;
  }
  .ops-hero {
    background-position: 62% center;
  }
  .ops-hero::before {
    background:
      linear-gradient(180deg, rgba(11, 28, 48, .82) 0%, rgba(11, 28, 48, .58) 46%, rgba(11, 28, 48, .28) 100%),
      rgba(0, 0, 0, .1);
  }
}

@media (max-width: 640px) {
  .accessories-wrap,
  .ops-wrap {
    width: min(100% - 24px, 1180px);
  }
  .ops-benefits {
    grid-template-columns: 1fr;
  }
  .ops-downloads {
    grid-template-columns: 1fr;
  }
  .support-hero-grid {
    min-height: auto;
    padding: 38px 0 58px;
  }
  .support-hero-media {
    min-height: 300px;
    border-radius: 22px;
  }
  .ops-hero {
    min-height: 720px;
    background-position: 68% bottom;
  }
  .ops-hero-grid {
    min-height: 720px;
    align-items: flex-start;
    padding-top: 38px;
  }
  .ops-hero-copy {
    padding: 22px;
    border-radius: 18px;
  }
  .ops-actions .btn,
  .accessory-actions .btn {
    width: 100%;
  }
}

.accessories-page .accessories-hero {
  position: relative;
  min-height: clamp(560px, 64vw, 820px);
  overflow: hidden;
  background: url("assets/images/accessories-hero-banner.webp") center center / cover no-repeat;
}

.accessories-page .accessories-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 28, .62) 0%, rgba(5, 14, 28, .34) 33%, rgba(5, 14, 28, .08) 68%),
    linear-gradient(180deg, rgba(5, 14, 28, .22) 0%, rgba(5, 14, 28, .08) 48%, rgba(5, 14, 28, .34) 100%);
  pointer-events: none;
}

.accessories-page .accessories-hero-content {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 64vw, 820px);
  display: flex;
  align-items: center;
  padding: clamp(42px, 7vw, 86px) 0;
}

.accessories-page .accessories-hero-card {
  width: min(560px, 100%);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 26px;
  background: rgba(7, 23, 45, .42);
  box-shadow: 0 30px 90px rgba(0, 10, 25, .22);
  backdrop-filter: blur(14px);
}

.accessories-page .accessories-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.accessories-page .accessories-hero p {
  color: #edf7ff;
}

.accessories-page .accessories-hero .ops-eyebrow {
  color: #7dd8ff;
}

.accessories-page .accessories-list {
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 103, 210, .1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.accessories-page .accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.accessories-page .accessory-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(205, 222, 238, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(15, 34, 56, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.accessories-page .accessory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 103, 210, .34);
  box-shadow: 0 26px 70px rgba(31, 103, 210, .16);
}

.accessories-page .accessory-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6fbff, #eaf4ff);
  box-shadow: none;
}

.accessories-page .accessory-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.accessories-page .accessory-media.crop img {
  object-fit: cover;
  transform: scale(1.65);
}

.accessories-page .accessory-media.crop.stand img { object-position: 51% 25%; }
.accessories-page .accessory-media.crop.wall img { object-position: 13% 76%; }
.accessories-page .accessory-media.crop.hdmi img { object-position: 77% 45%; }
.accessories-page .accessory-media.crop.wifi img { object-position: 62% 76%; }
.accessories-page .accessory-media.crop.stylus img { object-position: 45% 91%; }
.accessories-page .accessory-media.crop.camera img { object-position: 84% 70%; }
.accessories-page .accessory-media.crop.cable img { object-position: 73% 43%; }
.accessories-page .accessory-media.crop.hub img { object-position: 45% 73%; }
.accessories-page .accessory-media.crop.usb img { object-position: 28% 78%; }

.accessories-page .accessory-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.accessories-page .accessory-content h3 {
  margin: 0 0 8px;
  color: var(--ops-ink);
  font-size: 22px;
  line-height: 1.12;
}

.accessories-page .accessory-content p {
  margin: 0 0 18px;
  color: var(--ops-muted);
  font-size: 15px;
  line-height: 1.55;
}

.accessories-page .accessory-content .btn {
  margin-top: auto;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .accessories-page .accessory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .accessories-page .topbar {
    position: relative;
    z-index: 1000;
    overflow: visible;
  }
  .accessories-page .site-menu-toggle {
    display: inline-flex;
  }
  .accessories-page .site-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 70px rgba(15, 34, 56, .18);
    backdrop-filter: blur(16px);
  }
  .accessories-page .topbar.menu-open .site-menu {
    display: flex;
  }
  .accessories-page .site-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--navy);
    background: #f8fbff;
  }
}

@media (max-width: 820px) {
  .accessories-page .accessories-hero {
    background-position: 58% center;
  }
  .accessories-page .accessories-hero-content {
    align-items: flex-start;
    padding-top: 28px;
  }
  .accessories-page .accessories-hero-card {
    width: min(500px, 100%);
  }
  .accessories-page .accessory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .accessories-page .accessories-hero {
    min-height: 720px;
    background-position: 57% bottom;
  }
  .accessories-page .accessories-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 14, 28, .68) 0%, rgba(5, 14, 28, .36) 38%, rgba(5, 14, 28, .14) 78%),
      rgba(5, 14, 28, .08);
  }
  .accessories-page .accessories-hero-content {
    min-height: 720px;
  }
  .accessories-page .accessory-grid {
    grid-template-columns: 1fr;
  }
}
