/* Svitch CSR 762 — New_Temp / style.css */

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanRegular.woff2") format("woff2"),
       url("../assets/fonts/CenturyGothicPaneuropeanRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanBold.woff2") format("woff2"),
       url("../assets/fonts/CenturyGothicPaneuropeanBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanExtraBold.woff2") format("woff2"),
       url("../assets/fonts/CenturyGothicPaneuropeanExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-950: #0a0a0a;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-500: #666666;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --gray-200: #cccccc;
  --gray-100: #eeeeee;
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.2);
  --clr-red: #e30613;
  --cta: #ad0101;
  --cta-hover: #870101;

  --font-display: "Barlow Condensed", "Century Gothic", Verdana, Arial, sans-serif;
  --font-body: "Barlow", "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  --font-label: "Rajdhani", "Barlow", -apple-system, Arial, sans-serif;

  --fs-sm: 13px;
  --fs-base: 16px;
  --fs-22: 22px;

  /* Shared vertical padding applied top AND bottom of every content section */
  --section-gap: 72px;
}
@media (max-width: 767px) {
  :root { --section-gap: 44px; }
}

* , *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
}

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

/* ── BUTTONS ── */
.btn-csr {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.btn-csr.primary {
  background: var(--white);
  color: var(--black);
}
.btn-csr.primary:hover {
  background: var(--cta);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-csr.ghost {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid var(--border-bright);
}
.btn-csr.ghost:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-csr-sm { padding: 10px 20px; font-size: var(--fs-sm); }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s;
  padding: 20px 0;
  background: #000;
}
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
#navbar .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo img { height: 26px; }
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  text-decoration: none;
  padding-bottom: 6px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--clr-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-csr-link img {
  height: 15px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.2s ease;
}
/* R21 badge is a squarer mark (not a thin wordmark like CSR 762), so it's
   sized by width to read as the same visual size in the nav row. */
.nav-r21-link img {
  height: 32px;
  width: 72px;
}
.nav-csr-link a:hover img { opacity: 0.75; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csr-top-link,
.svitch-link { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  text-decoration: none;
}
.mobile-menu ul li.mMenu-hide { display: none; }

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* HERO — autoplay slider banner (image / video slides) + the original */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--gray-950);
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8% 120px;
  max-width: 760px;
}
.hero-tagline {
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 16px;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-label);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -2.2px;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-headline .highlight {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  transition: all 0.3s ease;
}
.hero-headline:hover .highlight {
  color: var(--white);
  -webkit-text-stroke: 0;
}
.hero-headline .highlight.heart-icon {
  font-size: 80%;
  color: var(--clr-red) !important;
  -webkit-text-stroke: 0 !important;
}
.hero-headline .highlight.heart-icon i {
  color: var(--clr-red);
}
.hero-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Slider controls ── */
.hero-slider-controls {
  position: absolute;
  bottom: 100px;
  right: 8%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-arrow:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.hero-dot.active {
  width: 22px;
  background: var(--white);
}

@media (max-width: 991px) {
  .hero-slider-controls { bottom: 40px; right: 6%; }
}
@media (max-width: 767px) {
  .hero-slide-content { padding: 92px 22px 118px; max-width: 100%; }
  .hero-tagline { letter-spacing: 3px; font-size: 11px; margin-bottom: 12px; }
  .hero-headline { font-size: clamp(2.1rem, 10vw, 3.1rem); margin-bottom: 14px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 24px; max-width: 100%; }
  .hero-btns .btn-csr { padding: 12px 18px; letter-spacing: 1.5px; }
  .hero-slider-controls { bottom: 20px; right: 50%; transform: translateX(50%); }
}

/* QUICK SPECS STRIP — white bar between hero and the sections below */
#specs-strip {
  background: var(--white);
  padding: 16px 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .specs-grid { grid-template-columns: repeat(4, 1fr); row-gap: 24px; }
}
/* Phones: one compact swipeable line, not a tall stacked box */
@media (max-width: 767px) {
  #specs-strip { padding: 18px 0; }
  .specs-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .specs-grid::-webkit-scrollbar { display: none; }
  .spec-item { flex: 0 0 auto; padding: 0 13px; }
  .spec-item:first-child { padding-left: 4px; }
  .spec-val { font-size: 1.15rem; white-space: nowrap; }
  .spec-unit { font-size: 0.6em; }
  .spec-label { font-size: 9px; letter-spacing: 1px; white-space: nowrap; margin-top: 3px; }
}
.spec-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.spec-item + .spec-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
}
.spec-val {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  display: block;
}
.spec-unit {
  font-family: var(--font-display);
  font-size: 0.55em;
  font-weight: 600;
  color: var(--gray-500);
  margin-left: 2px;
}
.spec-label {
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  display: block;
  margin-top: 4px;
}

/* SECTION HEADER (shared label + one-line title + desc) */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-label {
  display: block;
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  white-space: nowrap;
}
.section-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-title { white-space: normal; }
}
.accent { color: var(--clr-red); }
.w-100 { width: 100%; }

/* BIG HEADING — plain, no box. Eyebrow + title stay stacked on the left;
   the intro paragraph (when present) sits to the right, aligned to the title. */
.big-heading {
  position: relative;
  margin-bottom: 40px;
  padding: 26px 0 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.big-heading-copy {
  min-width: 0;
}
.big-heading-eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.big-heading-title {
  font-family: var(--font-label);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
  white-space: nowrap;
}
.big-heading-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin: 0;
  flex: 0 1 auto;
  max-width: 100%;
  text-align: right;
}
.big-heading-desc br {
  display: block;
}
@media (max-width: 600px) {
  .big-heading-title { white-space: normal; }
  .big-heading-desc { text-align: left; }
}

.cf-mark {
  position: absolute;
  width: 130px;
  height: 34px;
  pointer-events: none;
}
.cf-mark--tl { top: -22px; left: -24px; }
.cf-mark--br { bottom: -22px; right: -24px; }
@media (max-width: 600px) {
  .cf-mark { display: none; }
}

/* DESIGN THAT SPEAKS — scroll-reveal gallery */
#design-speaks {
  background: var(--black);
  padding: 0;
}

/* Horizontal pin-scroll gallery */
.dg-pin {
  position: relative;
}
.dg-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 76px 0 40px;
}
.dg-sticky .big-heading {
  margin-bottom: 0;
}
.dg-viewport {
  position: relative;
  overflow: hidden;
}
.dg-track {
  display: flex;
  gap: 18px;
  padding: 0 6vw;
  will-change: transform;
}
.dg-hcard {
  position: relative;
  flex: 0 0 min(34vw, 340px);
  height: min(52vh, 440px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gray-900);
}
.dg-hcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dg-hcard figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.dg-num {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--clr-red);
}
.dg-progress {
  position: relative;
  margin: 0 6vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.dg-progress span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--clr-red);
}

@media (max-width: 767px) {
  .dg-hcard { flex: 0 0 78vw; height: 44vh; }
  .dg-track { gap: 14px; padding: 0 24px; }
  .dg-sticky { gap: 26px; padding: 92px 0 34px; justify-content: flex-start; }
  .dg-sticky .big-heading { margin-bottom: 0; }
  .dg-progress { margin: 0 24px; }
}

/* FEATURES & POWER — Royal-Enfield-style centred "headlights" carousel */
#features-power {
  overflow: hidden;
  background: var(--black);
  padding: var(--section-gap) 0;
}
.hl-carousel-wrap {
  position: relative;
  /* Extra clearance: the prev card is lifted 56px (translateY) on desktop, */
  margin-top: 92px;
}
@media (max-width: 787px) {
  .hl-carousel-wrap { margin-top: 40px; }
}
.hl-swiper { overflow: visible; }
.hl-swiper .swiper-wrapper { align-items: flex-start; }
.hl-swiper .swiper-slide {
  width: clamp(300px, 40vw, 480px);
  height: auto;
  transform: scale(0.84);
  opacity: 0.5;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.55s ease;
}
.hl-swiper .swiper-slide-active { transform: scale(1); opacity: 1; }
@media (min-width: 788px) {
  .hl-swiper .swiper-slide-prev { transform: translateY(-56px) scale(0.84); }
  .hl-swiper .swiper-slide-next { transform: translateY(56px) scale(0.84); }
}

.hl-card { position: relative; display: block; color: inherit; }
.hl-card-media {
  position: relative;
  height: clamp(280px, 38vh, 380px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hl-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.18) 45%, transparent 72%);
}
.hl-card-titlebar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hl-card-icon { font-size: 22px; color: var(--white); flex: 0 0 auto; }
.hl-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}
.hl-card-below { display: none; padding: 22px 2px 0; }
.swiper-slide-active .hl-card-below { display: block; }
.hl-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-200);
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8em;
}
.hl-card-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border-bright);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.hl-card-btn:hover { background: var(--cta); border-color: var(--cta); color: var(--white); }

.hl-arrow {
  position: absolute;
  top: clamp(140px, 19vh, 190px);
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.hl-arrow:hover { background: var(--white); color: var(--black); }
.hl-arrow.hl-prev { left: calc(50% - clamp(150px, 20vw, 240px) - 52px); }
.hl-arrow.hl-next { right: calc(50% - clamp(150px, 20vw, 240px) - 52px); }

@media (max-width: 787px) {
  .hl-arrow { display: none; }
  .hl-swiper .swiper-slide { width: 100%; transform: none; opacity: 1; }
  .hl-swiper .swiper-slide .hl-card-below { display: block; }
}

/* EDITIONS — colour switcher. Three frames share the SAME studio scene, */
#editions {
  background: var(--black);
  padding: var(--section-gap) 0;
}
.cs {
  margin-top: 8px;
}
.cs-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #050505;
}
.cs-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: opacity;
}
.cs-frame.is-active {
  opacity: 1;
}
/* Bottom bar sits inside the frame: colour name on the left, circles on */
.cs-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 44px 40px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.cs-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-name {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--white);
}
.cs-sub {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  color: var(--clr-red);
  margin-top: 15px;
}
.cs-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 14px;
  color: var(--gray-300);
  margin-top: 2px;
}

/* Colour circles — inside the frame, aligned with the colour name */
.cs-dots {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.cs-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 0;
  background: var(--sw, #888);
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cs-dot:hover {
  transform: scale(1.14);
  border-color: rgba(255, 255, 255, 0.6);
}
.cs-dot.is-active {
  border-color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

@media (max-width: 767px) {
  .cs-stage { aspect-ratio: 4 / 3; }
  .cs-bar { padding: 28px 18px 16px; gap: 14px; }
  .cs-dots { gap: 12px; }
  .cs-dot { width: 22px; height: 22px; }
}
@media (max-width: 460px) {
  .cs-stage { aspect-ratio: 1 / 1; }
  .cs-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* VIDEO BANNER — full-bleed background video/YouTube + left-aligned content */
.video-banner {
  position: relative;
  height: 80vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 64px;
}
.vb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vb-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  pointer-events: none;
}
.vb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.vb-overlay--left {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%);
}
.vb-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1280px;
  width: 100%;
}
.vb-content--left {
  text-align: left;
  padding: 0 5%;
  max-width: 700px;
  margin-right: auto;
  margin-left: 0;
}
.vb-tag {
  display: block;
  margin-bottom: 12px;
}
.vb-title {
  font-family: var(--font-label);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .vb-title { white-space: normal; }
}

/* NUMBERS DON'T LIE — cost comparison + live savers-scale calculator */
#cost-saver {
  background: var(--black);
  padding: var(--section-gap) 0;
}

/* ── Tabs (Savings Calculator / Pricing) ── */
.ve-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--border);
}
.ve-tab {
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ve-tab i {
  font-size: var(--fs-base);
}
.ve-tab:hover {
  color: var(--white);
}
.ve-tab.active {
  color: var(--white);
  border-bottom-color: var(--clr-red);
}
.ve-panel {
  display: none;
  animation: veFade 0.4s ease;
}
.ve-panel.active {
  display: block;
}
@keyframes veFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 575px) {
  .ve-tabs {
    gap: 0;
  }
  .ve-tab {
    flex: 1;
    justify-content: center;
    padding: 12px 10px;
    letter-spacing: 1px;
  }
}

.cc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 20px;
}
.cc-pane { padding: 44px; }
.cc-pane + .cc-pane { border-left: 1px solid var(--border); }
.cc-pane-light {
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cc-pane-light .section-label { color: #111; }
.cc-pane-dark { background: var(--gray-950); }

.cc-bar { margin-bottom: 22px; }
.cc-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.cc-bar-name {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: #333;
}
.cc-bar-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #111;
}
.cc-bar-track {
  height: 14px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.cc-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  transition: width 0.5s ease;
}
.cc-fill-petrol { background: #111; }
.cc-fill-ev { background: #8a8a8a; }
.cc-savings {
  display: flex;
  gap: 36px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.cc-savings .lab {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}
.cc-savings .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  color: #111;
}
.cc-foot {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-400);
  margin-top: 22px;
}
@media (max-width: 880px) {
  .cc-split { grid-template-columns: 1fr; }
  .cc-pane + .cc-pane { border-left: none; border-top: 1px solid var(--border); }
}

.calc-input-group { margin-bottom: 36px; }
.calc-input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.calc-input-name {
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.calc-input-value {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  font-weight: 700;
  color: var(--white);
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-red);
  cursor: pointer;
  transition: transform 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }
.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--clr-red);
  cursor: pointer;
  transition: transform 0.2s;
}
.calc-slider::-moz-range-thumb:hover { transform: scale(1.3); }

/* RIDE EXPERIENCE — masonry mosaic gallery (GLightbox) */
#ride-experience {
  background: var(--gray-950);
  padding: var(--section-gap) 0;
}
.gm-grid {
  column-count: 4;
  column-gap: 14px;
  margin-top: 20px;
}
.gm-item {
  display: block;
  position: relative;
  margin: 0 0 14px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--border);
  cursor: pointer;
}
.gm-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gm-item:hover img { transform: scale(1.07); }
.gm-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  transform: translateY(8px);
  opacity: 0;
  transition: 0.35s ease;
}
.gm-item:hover .gm-cap { transform: none; opacity: 1; }
.gm-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-bright);
  color: #fff;
  opacity: 0;
  transition: 0.35s ease;
}
.gm-item:hover .gm-badge { opacity: 1; }
@media (max-width: 1100px) { .gm-grid { column-count: 3; } }
@media (max-width: 760px) { .gm-grid { column-count: 2; } }
@media (max-width: 767px) {
  .gm-cap { transform: none; opacity: 1; }
  .gm-badge { display: none; }
}

/* PRICING & SAVINGS — price card + savings spotlight */
/* #pricing is now a tab panel inside #cost-saver, not a standalone section */
#pricing {
  background: transparent;
  padding: 0;
}
.price-card-label {
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.pp-ps-price h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  margin: 6px 0 14px;
  color: var(--white);
}
.pp-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1;
  color: var(--white);
  margin: 16px 0 10px;
}
.pp-note {
  font-family: var(--font-body);
  color: var(--gray-300);
  font-size: 14px;
  margin-bottom: 22px;
}
.pp-feat {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.pp-feat li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-200);
}
.pp-feat li i { color: var(--white); }

.pp-ps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.pp-ps > div {
  padding: 44px;
  display: flex;
  flex-direction: column;
}
.pp-ps .btn-csr { margin-top: auto; }
.pp-ps-price { border-right: 1px solid rgba(255, 255, 255, 0.18); }
.pp-ps-save {
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease;
}
.pp-ps-save .section-label { color: #111; }
.pp-ps-save p {
  font-family: var(--font-body);
  color: #1a1a1a;
  margin: 0;
  max-width: 36ch;
}
.pp-save-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  color: #111;
  margin: 8px 0 16px;
}
.pp-save-row {
  display: flex;
  gap: 34px;
  margin-top: 24px;
}
.pp-save-row .l {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
}
.pp-save-row .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #111;
}
.pp-ps-save .btn-csr {
  background: #111;
  color: #fff;
  border-color: #111;
}
.pp-ps-save .btn-csr:hover { background: #333; }
.pp-ps-save:hover { background: var(--gray-950); }
.pp-ps-save:hover .section-label,
.pp-ps-save:hover .pp-save-big,
.pp-ps-save:hover .pp-save-row .v {
  color: #fff !important;
}
.pp-ps-save:hover p { color: var(--gray-300) !important; }
.pp-ps-save:hover .pp-save-row .l { color: var(--gray-400) !important; }
.pp-ps-save:hover .btn-csr {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 880px) {
  .pp-ps { grid-template-columns: 1fr; }
  .pp-ps-price { border-right: none; }
  .pp-ps-save { border-top: 1px solid var(--border); }
}

/* SIMPLY PREMIUM MOBILITY — auto-scrolling ticker (no drag/arrows). */
#premium-mobility {
  background: var(--black);
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.pm-carousel-wrap {
  position: relative;
  margin-top: 20px;
}
.pm-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 4px 24px 12px;
  cursor: grab;
  user-select: none;
}
.pm-track.is-dragging {
  cursor: grabbing;
}
.pm-card {
  position: relative;
  flex: 0 0 clamp(240px, 32vw, 420px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gray-950);
}
.pm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.pm-cap {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* READY TO RIDE — split CTA: content left, image right */
#ready-to-ride { background: #f2f1ee; }
.rtr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.rtr-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8%;
}
.rtr-title {
  font-family: var(--font-label);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  margin-bottom: 14px;
}
.rtr-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
  margin: 0 0 28px;
}
.rtr-input-group {
  display: flex;
  align-items: center;
  max-width: 420px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.rtr-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #111;
  outline: none;
}
.rtr-input::placeholder { color: #999; }
.rtr-input-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--clr-red);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.rtr-input-btn:hover { background: #b31212; }
.rtr-media { position: relative; overflow: hidden; }
.rtr-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .rtr-grid { grid-template-columns: 1fr; min-height: auto; }
  .rtr-content { padding: 60px 24px; }
  .rtr-media { min-height: 320px; }
}

/* SVITCH ECO-SYSTEM — red toggle bar that expands the 2 sibling-brand cards */
:root { --discover-bg: var(--clr-red); --discover-bg-hover: #b31212; }
#discover { background: var(--discover-bg); transition: background 0.25s ease; }
#discover:hover { background: var(--discover-bg-hover); }
#discover .discover-title { margin: 0; display: flex; justify-content: center; }
#discover a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  color: var(--white);
  font-family: var(--font-label);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.discover-text {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: text-underline-offset 0.2s ease;
}
#discover a:hover .discover-text { text-underline-offset: 6px; }
.discover-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.35s ease;
}
#discover.open .discover-arrow { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) {
  #svitch-family, .discover-arrow, .discover-text { transition: none; }
}

#svitch-family {
  background: var(--black);
  padding: var(--section-gap) 0 36px;
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
#svitch-family.is-open { opacity: 1; }

/* Ready To Ride hides while the eco-system reveal is open, so it doesn't
   sit sandwiched between the discover bar and the expanded family cards. */
#ready-to-ride.is-hidden { display: none; }

.family-tree {
  position: relative;
  text-align: center;
  padding-bottom: 60px;
}
.family-tree-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}
.family-tree-logo img { height: 34px; width: auto; display: block; }
.family-tree-stem, .family-tree-branch, .family-tree-drop-l, .family-tree-drop-r {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.family-tree-stem { top: calc(100% - 60px); left: 50%; width: 1px; height: 30px; transform: translateX(-50%); }
.family-tree-branch { top: calc(100% - 30px); left: 25%; right: 25%; height: 1px; }
.family-tree-drop-l, .family-tree-drop-r { top: calc(100% - 30px); width: 1px; height: 30px; }
.family-tree-drop-l { left: 25%; }
.family-tree-drop-r { right: 25%; }
.family-tree-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.family-tree-dot.is-center { top: calc(100% - 30px); left: 50%; }
.family-tree-dot.is-left { top: 100%; left: 25%; }
.family-tree-dot.is-right { top: 100%; left: auto; right: 25%; transform: translate(50%, -50%); }

@media (max-width: 767px) {
  .family-tree-logo { padding: 14px 22px; }
  .family-tree-logo img { height: 26px; }
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.family-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 32px 28px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s, box-shadow 0.4s;
}
.family-card:hover {
  transform: translateY(-6px);
  border-color: #666;
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08);
}
.family-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.family-card:hover .family-card-bg { transform: scale(1.06); }
.family-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.family-card-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  max-height: 80px;
  width: auto;
  opacity: 0.95;
}
.family-card-logo.is-right { left: auto; right: 28px; }
.family-card-body { position: relative; z-index: 2; }
.family-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.family-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}
.family-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 380px;
}
.family-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.3s;
}
.family-card:hover .family-card-link { gap: 12px; }

@media (max-width: 767px) {
  #svitch-family { padding: 40px 0 60px; }
  .family-grid { grid-template-columns: 1fr; gap: 16px; }
  .family-card { min-height: 300px; padding: 24px 20px; }
  .family-card-logo { top: 20px; left: 20px; max-height: 40px; }
  .family-card-logo.is-right { left: auto; right: 20px; }
}

/* FOOTER — CSR762-style: brand + link columns, bottom bar, back-to-top button */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(110px, 150px));
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo-link img { height: 30px; display: block; margin-bottom: 28px; }
.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 320px;
  margin: 0 0 30px;
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--white);
  color: var(--black) !important;
  border-color: var(--white);
}
.social-btn:hover i { color: var(--black) !important; }

.footer-col-title {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin: 0 0 16px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-500);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--white); }
.footer-legal-dot { color: var(--gray-600); font-size: 12px; }

.footer-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  background: rgba(20, 20, 20, 0.92);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.footer-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.footer-to-top:hover { background: var(--white); color: var(--black); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}
