/* Sony α7R IV Landing Page — euro.com.pl — prefix: a7rm6- */

/* === Design Tokens (scoped to wrapper) === */
.a7rm6-lp {
  --a7rm6-canvas:    #121212;
  --a7rm6-s1:        #252525;
  --a7rm6-s2:        #2f2f2f;
  --a7rm6-hairline:  #3a3a3a;
  --a7rm6-ink:       #ffffff;
  --a7rm6-muted:     #999999;
  --a7rm6-accent:    #0099ff;
  --a7rm6-orange:    #ec323a;
  --a7rm6-orange2:   #c9262d;
  --a7rm6-r-sm:      3px;
  --a7rm6-r-md:      5px;
  --a7rm6-r-lg:      7px;
  --a7rm6-r-xl:      10px;
  --a7rm6-r-xxl:     14px;
  --a7rm6-r-pill:    8px;
  --a7rm6-font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* === Reset === */
html, body { margin: 0; padding: 0; background: transparent; }

/* Dark page base (below video) */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  background: #121212;
  z-index: -2;
}

/* === Fixed background video (above dark base, below content) === */
.a7rm6-hero-video-fixed {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

/* === Wrapper === */
.a7rm6-lp {
  font-family: var(--a7rm6-font);
  color: var(--a7rm6-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11' 1, 'ss03' 1;
}

/* === Container === */
.a7rm6-container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
}
@media (min-width: 960px) {
  .a7rm6-container { max-width: 960px; padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1230px) {
  .a7rm6-container { max-width: 1218px; padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 1440px) {
  .a7rm6-container { max-width: 1376px; padding-left: 3rem; padding-right: 3rem; }
}

/* === Keyframes === */
@keyframes a7rm6-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes a7rm6-glow-pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.6; }
}

/* === Scroll Reveal === */
.a7rm6-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.a7rm6-reveal.a7rm6-visible {
  opacity: 1;
  transform: translateY(0);
}
.a7rm6-reveal-delay-1 { transition-delay: 0.1s; }
.a7rm6-reveal-delay-2 { transition-delay: 0.2s; }
.a7rm6-reveal-delay-3 { transition-delay: 0.3s; }
.a7rm6-reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
.a7rm6-header {
  background-color: rgba(18, 18, 18, 0.1);
  backdrop-filter: blur(19px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-bottom: 1px solid rgba(58, 58, 58, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.a7rm6-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 2.4rem;
}
.a7rm6-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.a7rm6-logo-centre {
  height: 28px;
  width: auto;
  display: block;
}
.a7rm6-header-tagline {
  font-size: 11px;
  color: var(--a7rm6-muted);
  letter-spacing: 0.02em;
  font-weight: 400;
  border-left: 1px solid var(--a7rm6-hairline);
  padding-left: 14px;
}
.a7rm6-logo-sony {
  height: 18px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .a7rm6-header-tagline { display: none; }
  .a7rm6-header-inner { padding: 0 1.25rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.a7rm6-hero {
  background-color: transparent;
  padding-top: 68px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  margin-top: -64px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.a7rm6-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.84);
  z-index: 0;
  pointer-events: none;
}
.a7rm6-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
.a7rm6-hero-video-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--a7rm6-canvas));
  pointer-events: none;
  z-index: 10;
}
.a7rm6-hero-inner {
  display: grid;
  grid-template-columns: minmax(500px, 580px) 1fr;
  align-items: center;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0 0 0 max(1.5rem, calc((100vw - 1376px) / 2 + 3rem));
  min-height: 0;
  position: relative;
  z-index: 2;
}
.a7rm6-hero-content {
  padding: 80px 3rem 80px 0;
}
.a7rm6-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a7rm6-muted);
  background-color: rgba(18, 18, 18, 0.1);
  backdrop-filter: blur(19px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: var(--a7rm6-r-pill);
  padding: 5px 14px;
  margin-bottom: 28px;
}
.a7rm6-hero-title {
  font-size: clamp(48px, 6vw, 85px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: clamp(-2px, -0.05em, -4.25px);
  color: var(--a7rm6-ink);
  margin: 0 0 24px 0;
}
.a7rm6-hero-logo-img {
  height: 0.85em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.a7rm6-hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--a7rm6-orange2) 0%, var(--a7rm6-orange) 60%, #f05a62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 0.1em;
  padding-bottom: 0.15em;
}
.a7rm6-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--a7rm6-muted);
  margin: 0 0 36px 0;
  max-width: 460px;
  letter-spacing: -0.01em;
}
.a7rm6-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.a7rm6-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--a7rm6-orange);
  color: #fff;
  font-family: var(--a7rm6-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 100, 0, 0.35);
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.a7rm6-btn-primary:hover {
  background-color: #c9262d;
  box-shadow: 0 6px 28px rgba(236, 50, 58, 0.5);
  transform: translateY(-1px);
}
.a7rm6-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--a7rm6-s1);
  color: var(--a7rm6-ink);
  font-family: var(--a7rm6-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: var(--a7rm6-r-pill);
  text-decoration: none;
  border: 1px solid var(--a7rm6-hairline);
  cursor: pointer;
  transition: background-color 0.2s;
}
.a7rm6-btn-secondary:hover { background-color: var(--a7rm6-s2); }

.a7rm6-hero-awards {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.a7rm6-award-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 0 0;
}
.a7rm6-award-chip + .a7rm6-award-chip {
  padding: 0 0 0 28px;
  border-left: 1px solid var(--a7rm6-hairline);
}
.a7rm6-award-chip-icon {
  font-size: 32px;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
  color: var(--a7rm6-muted);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.a7rm6-award-chip-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--a7rm6-muted);
  line-height: 1.4;
  max-width: 160px;
}

.a7rm6-hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 680px;
}
.a7rm6-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 2;
}
.a7rm6-hero-glow {
  position: absolute;
  width: 120%;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0,0,0,0.72) 0%, transparent 70%);
  pointer-events: none;
  animation: a7rm6-glow-pulse 4s ease-in-out infinite;
}
.a7rm6-hero-img {
  position: relative;
  width: 90%;
  max-width: 620px;
  height: auto;
  display: block;
  z-index: 1;
  mix-blend-mode: multiply;
}

.a7rm6-hero--lens {
  margin-top: 0;
  padding-top: 0;
}
.a7rm6-hero-inner--reversed {
  grid-template-columns: 1fr minmax(500px, 580px);
  padding: 0 max(1.5rem, calc((100vw - 1376px) / 2 + 3rem)) 0 0;
}
.a7rm6-hero-inner--reversed .a7rm6-hero-content {
  padding: 80px 0 80px 3rem;
}

@media (max-width: 960px) {
  .a7rm6-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    text-align: center;
  }
  .a7rm6-hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .a7rm6-hero-actions { justify-content: center; }
  .a7rm6-hero-awards { justify-content: center; }
  .a7rm6-hero-media { order: -1; max-height: 360px; min-height: 0; overflow: hidden; }
  .a7rm6-hero-img { max-width: 480px; }
  .a7rm6-hero-content { padding-bottom: 0; padding-right: 0; }
  .a7rm6-hero-inner--reversed {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .a7rm6-hero-inner--reversed .a7rm6-hero-content {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .a7rm6-hero { padding-top: 104px; }
  .a7rm6-hero-content { padding-top: 48px; padding-bottom: 56px; }
  .a7rm6-hero-title { font-size: 40px; letter-spacing: -2px; }
  .a7rm6-hero-subtitle { font-size: 16px; }
  .a7rm6-hero-img { max-width: 320px; }
  .a7rm6-hero-awards { flex-direction: column; align-items: center; gap: 0; margin-top: 32px; }
  .a7rm6-award-chip { padding: 12px 0; justify-content: center; }
  .a7rm6-award-chip + .a7rm6-award-chip { padding: 12px 0 0; border-left: none; border-top: 1px solid var(--a7rm6-hairline); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.a7rm6-stats {
  background-color: rgba(10, 10, 10, 0.84);
  position: relative;
  z-index: 2;
  padding: 20px 0 40px;
  margin: 0;
}
.a7rm6-stats--solid {
  background-color: var(--a7rm6-canvas);
}
.a7rm6-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: calc(1376px - 6rem);
  margin: 0 auto;
  width: calc(100% - max(3rem, calc((100vw - 1376px) + 6rem)));
  background-color: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 2px 0 rgba(255,255,255,0.04) inset;
  overflow: hidden;
}
.a7rm6-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.a7rm6-stat:last-child { border-right: none; }
.a7rm6-stat-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -2px;
  color: var(--a7rm6-ink);
  line-height: 1;
  margin-bottom: 6px;
}
.a7rm6-stat-unit {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.a7rm6-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--a7rm6-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .a7rm6-stats-inner { grid-template-columns: repeat(2, 1fr); width: calc(100% - 3rem); }
  .a7rm6-stat:nth-child(2) { border-right: none; }
  .a7rm6-stat:nth-child(1),
  .a7rm6-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 400px) {
  .a7rm6-stats-inner { grid-template-columns: 1fr; }
  .a7rm6-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .a7rm6-stat:last-child { border-bottom: none; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.a7rm6-section {
  padding: 96px 0;
  background-color: var(--a7rm6-canvas);
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.a7rm6-section--video-bg {
  position: relative;
  overflow: hidden;
  background-color: var(--a7rm6-canvas);
}
.a7rm6-section--video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
.a7rm6-section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.a7rm6-section--video-bg .a7rm6-container {
  position: relative;
  z-index: 2;
}
.a7rm6-section-dark {
  background-color: var(--a7rm6-s1);
}
.a7rm6-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.a7rm6-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a7rm6-muted);
  border-radius: var(--a7rm6-r-pill);
  padding: 4px 12px;
  margin-bottom: 20px;
  background-color: rgba(18, 18, 18, 0.1);
  backdrop-filter: blur(19px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(18, 18, 18, 0.1);
}
.a7rm6-section-title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: clamp(-1.5px, -0.05em, -3.1px);
  line-height: 1.0;
  color: var(--a7rm6-ink);
  margin: 0 0 16px 0;
  overflow-wrap: break-word;
}
.a7rm6-section-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--a7rm6-muted);
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .a7rm6-section { padding: 56px 0; }
  .a7rm6-section-title { font-size: 26px; letter-spacing: -0.8px; }
  .a7rm6-section-desc { font-size: 16px; }
}

/* ============================================================
   FEATURES (PHOTO CARDS)
   ============================================================ */
.a7rm6-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.a7rm6-feat-card {
  background-color: var(--a7rm6-s1);
  border: 1px solid var(--a7rm6-hairline);
  border-radius: var(--a7rm6-r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  position: relative;
  transition: border-color 0.25s;
}
.a7rm6-feat-card:hover { border-color: #484848; }

/* bento modifiers */
.a7rm6-feat-card--tall {
  grid-row: span 2;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 620px;
}
.a7rm6-feat-card--tall .a7rm6-feat-media {
  order: -1;
  height: 100%;
}
.a7rm6-feat-card--tall .a7rm6-feat-body {
  justify-content: flex-end;
}
.a7rm6-feat-card--wide {
  grid-column: span 2;
}

.a7rm6-feat-body {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.a7rm6-feat-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--a7rm6-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.a7rm6-feat-title {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  color: var(--a7rm6-ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.a7rm6-feat-tagline {
  font-size: 13px;
  color: var(--a7rm6-muted);
  line-height: 1.55;
  margin: 0;
}
.a7rm6-feat-media {
  position: relative;
  overflow: hidden;
}
.a7rm6-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.a7rm6-feat-card:hover .a7rm6-feat-img { transform: scale(1.04); }

@media (max-width: 960px) {
  .a7rm6-features-grid { grid-template-columns: 1fr; }
  .a7rm6-feat-card { grid-template-columns: 1fr 1fr; min-height: 240px; }
  .a7rm6-feat-card--tall { grid-row: span 1; grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 240px; }
  .a7rm6-feat-card--tall .a7rm6-feat-media { order: 0; height: auto; }
  .a7rm6-feat-card--wide { grid-column: span 1; }
}
@media (max-width: 600px) {
  .a7rm6-feat-card { grid-template-columns: 1fr; min-height: auto; }
  .a7rm6-feat-media { height: 200px; }
  .a7rm6-feat-card--flex-img .a7rm6-feat-media { align-items: flex-end !important; }
  .a7rm6-feat-card--flex-img .a7rm6-feat-img { object-fit: contain !important; object-position: bottom center !important; height: 90% !important; margin-bottom: 20px; }
  .a7rm6-feat-body { padding: 24px 20px; }
}

/* ============================================================
   ACCESSORIES
   ============================================================ */
.a7rm6-acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.a7rm6-acc-card {
  background-color: var(--a7rm6-s1);
  border: 1px solid var(--a7rm6-hairline);
  border-radius: var(--a7rm6-r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.a7rm6-acc-card:hover { border-color: #585858; }
.a7rm6-acc-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #1e1e1e;
}
.a7rm6-acc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.a7rm6-acc-card:hover .a7rm6-acc-img { transform: scale(1.04); }
.a7rm6-acc-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.a7rm6-acc-model {
  font-size: 11px;
  font-weight: 500;
  color: var(--a7rm6-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.a7rm6-acc-title {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--a7rm6-ink);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.a7rm6-acc-desc {
  font-size: 13px;
  color: var(--a7rm6-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
a.a7rm6-acc-card {
  text-decoration: none;
  color: inherit;
}
a.a7rm6-acc-card .a7rm6-acc-title {
  color: var(--a7rm6-ink);
}
a.a7rm6-acc-card .a7rm6-acc-desc {
  color: var(--a7rm6-muted);
}
.a7rm6-acc-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--a7rm6-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}
@media (max-width: 960px) {
  .a7rm6-acc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .a7rm6-acc-grid { grid-template-columns: 1fr; }
  .a7rm6-acc-media { aspect-ratio: 4 / 3; }
}

/* ============================================================
   HIGHLIGHTS (alternating image + text)
   ============================================================ */
.a7rm6-highlights {
  background-color: var(--a7rm6-canvas);
}
.a7rm6-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--a7rm6-hairline);
}
.a7rm6-highlight:last-of-type { border-bottom: 1px solid var(--a7rm6-hairline); }
.a7rm6-highlight-reverse .a7rm6-highlight-media { order: 2; }
.a7rm6-highlight-reverse .a7rm6-highlight-body { order: 1; }

.a7rm6-highlight-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.a7rm6-highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.a7rm6-highlight:hover .a7rm6-highlight-img { transform: scale(1.03); }
.a7rm6-highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--a7rm6-canvas) 100%);
  pointer-events: none;
}
.a7rm6-highlight-reverse .a7rm6-highlight-overlay {
  background: linear-gradient(to left, transparent 60%, var(--a7rm6-canvas) 100%);
}
.a7rm6-highlight-body {
  padding: 64px 64px 64px 56px;
}
.a7rm6-highlight-reverse .a7rm6-highlight-body {
  padding: 64px 56px 64px 64px;
}
.a7rm6-highlight-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--a7rm6-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.a7rm6-highlight-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--a7rm6-ink);
  margin: 0 0 20px 0;
}
.a7rm6-highlight-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--a7rm6-muted);
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin: 0 0 32px 0;
  max-width: 440px;
}
.a7rm6-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--a7rm6-s1);
  border: 1px solid var(--a7rm6-hairline);
  border-radius: var(--a7rm6-r-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--a7rm6-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .a7rm6-highlight {
    grid-template-columns: 1fr;
  }
  .a7rm6-highlight-reverse .a7rm6-highlight-media { order: 0; }
  .a7rm6-highlight-reverse .a7rm6-highlight-body { order: 0; }
  .a7rm6-highlight-overlay { display: none; }
  .a7rm6-highlight-body,
  .a7rm6-highlight-reverse .a7rm6-highlight-body {
    padding: 40px 1.5rem;
  }
  .a7rm6-highlight-desc { max-width: 100%; }
}
@media (max-width: 600px) {
  .a7rm6-highlight-media { aspect-ratio: 16/9; }
  .a7rm6-highlight-title { font-size: 26px; letter-spacing: -1px; }
}

/* ============================================================
   PRODUCTS PLACEHOLDER
   ============================================================ */
.a7rm6-products {
  background-color: var(--a7rm6-canvas);
  border-top: 1px solid var(--a7rm6-hairline);
  border-bottom: 1px solid var(--a7rm6-hairline);
  padding: 80px 0;
}
.a7rm6-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 480px;
}
.a7rm6-product-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.a7rm6-product-hero-content .a7rm6-badge {
  margin-bottom: 20px;
}
.a7rm6-product-hero-name {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--a7rm6-ink);
  margin: 0 0 8px 0;
  line-height: 1.05;
}
.a7rm6-product-hero-model {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 32px 0;
}
.a7rm6-product-hero-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.a7rm6-product-hero-specs li {
  font-size: 15px;
  color: var(--a7rm6-muted);
  line-height: 1.4;
}
.a7rm6-product-hero-specs li strong {
  color: var(--a7rm6-ink);
  font-weight: 600;
  display: block;
  font-size: 16px;
}
.a7rm6-product-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.a7rm6-product-hero-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
.a7rm6-product-hero--reversed .a7rm6-product-hero-media { order: 1; }
.a7rm6-product-hero--reversed .a7rm6-product-hero-content { order: 2; }
.a7rm6-product-hero--separator {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--a7rm6-hairline);
}
@media (max-width: 768px) {
  .a7rm6-product-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .a7rm6-product-hero-content { align-items: center; }
  .a7rm6-product-hero-media { order: -1; }
  .a7rm6-product-hero--reversed .a7rm6-product-hero-media { order: -1; }
  .a7rm6-product-hero--reversed .a7rm6-product-hero-content { order: 2; }
  .a7rm6-product-hero-img { max-width: 360px; }
}

/* ============================================================
   SPECS TABLE (collapsible)
   ============================================================ */
.a7rm6-specs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 720px) {
  .a7rm6-specs-pair {
    grid-template-columns: 1fr;
  }
}
.a7rm6-specs-details {
  border: 1px solid var(--a7rm6-hairline);
  border-radius: var(--a7rm6-r-xl);
  overflow: hidden;
}
.a7rm6-specs-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background-color: var(--a7rm6-s1);
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--a7rm6-ink);
  user-select: none;
  gap: 12px;
  transition: background-color 0.2s;
}
.a7rm6-specs-summary::-webkit-details-marker { display: none; }
.a7rm6-specs-summary:hover { background-color: var(--a7rm6-s2); }
.a7rm6-specs-expand-icon {
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
  font-size: 22px;
  color: var(--a7rm6-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.a7rm6-specs-details[open] .a7rm6-specs-expand-icon { transform: rotate(180deg); }
.a7rm6-specs-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--a7rm6-hairline);
}
.a7rm6-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.a7rm6-specs-table tr {
  border-bottom: 1px solid var(--a7rm6-hairline);
}
.a7rm6-specs-table tr:last-child { border-bottom: none; }

.a7rm6-specs-cat-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a7rm6-orange);
  padding: 12px 0px;
}
.a7rm6-specs-table td {
  padding: 11px 20px;
  font-size: 13.5px;
  line-height: 1.45;
  vertical-align: top;
}
.a7rm6-specs-key {
  color: var(--a7rm6-muted);
  width: 38%;
  font-weight: 400;
}
.a7rm6-specs-val {
  color: var(--a7rm6-ink);
  font-weight: 500;
}
@media (max-width: 600px) {
  .a7rm6-specs-key { width: 45%; font-size: 12px; }
  .a7rm6-specs-val { font-size: 12px; }
  .a7rm6-specs-table td { padding: 10px 14px; }
}

/* ============================================================
   VIDEO
   ============================================================ */
.a7rm6-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.a7rm6-video-card {
  display: block;
  border-radius: var(--a7rm6-r-xl);
  overflow: hidden;
  background-color: var(--a7rm6-s1);
  border: 1px solid var(--a7rm6-hairline);
  transition: border-color 0.2s;
}
.a7rm6-video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.a7rm6-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.a7rm6-video-thumb-wrap:hover .a7rm6-video-thumb { transform: scale(1.03); }
.a7rm6-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.a7rm6-video-thumb-wrap:hover .a7rm6-video-overlay { background: rgba(0,0,0,0.2); }
.a7rm6-video-play {
  width: 64px;
  height: 64px;
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.2s;
}
.a7rm6-video-thumb-wrap:hover .a7rm6-video-play { transform: scale(1.1); }
.a7rm6-video-iframe-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
}
.a7rm6-video-iframe-wrap iframe {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  border: none;
  display: block;
}
.a7rm6-video-info {
  padding: 16px 20px 20px;
}
.a7rm6-video-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--a7rm6-ink);
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
}
.a7rm6-video-desc {
  font-size: 13px;
  color: var(--a7rm6-muted);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.a7rm6-footer {
  background-color: var(--a7rm6-canvas);
  border-top: 1px solid var(--a7rm6-hairline);
  padding: 48px 0 40px;
}
.a7rm6-footer-inner {
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.a7rm6-footer-logo-link { display: inline-block; }
.a7rm6-footer-logo-img { height: 22px; width: auto; display: block; }
.a7rm6-footer-contact {
  font-size: 13px;
  color: var(--a7rm6-muted);
  line-height: 1.8;
}
.a7rm6-footer-contact-link {
  color: var(--a7rm6-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.a7rm6-footer-contact-link:hover { color: var(--a7rm6-ink); }
.a7rm6-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.a7rm6-footer-link {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.a7rm6-footer-link:hover { color: var(--a7rm6-muted); }
.a7rm6-footer-copy {
  font-size: 11px;
  color: #444;
  margin: 0;
}
@media (max-width: 600px) {
  .a7rm6-footer-inner { padding: 0 1.25rem; }
}

/* === Preloader === */
.a7rm6-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.a7rm6-preloader.a7rm6-preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.a7rm6-preloader-logo {
  width: 160px;
  height: auto;
  opacity: 0.9;
}
.a7rm6-preloader-spinner {
  width: 40px;
  height: 40px;
  position: relative;
}
.a7rm6-preloader-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: a7rm6-spin 0.8s linear infinite;
}
@keyframes a7rm6-spin {
  to { transform: rotate(360deg); }
}
