@font-face {
  font-family: "RoadRadio";
  src:
    url("fonts/roadradio-black-webfont.woff2") format("woff2"),
    url("fonts/roadradio-black-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "RoadRadioThin";
  src:
    url("fonts/roadradio-thin-webfont.woff2") format("woff2"),
    url("fonts/roadradio-thin-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --bg: #0c0909;
  --bg-soft: #1c1716;
  --bg-panel: rgba(16, 20, 20, 0.72);
  --text: #ffffff;
  --muted: #d3d3d3;
  --muted-soft: #a8a8a8;
  --orange-1: #e7692c;
  --orange-2: #cc443b;
  --cyan-1: #7fffd4;
  --cyan-2: #5fd1c5;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --transition: 0.28s ease;
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.34);
}

/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

a,
a:visited,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(980px, calc(100% - 40px));
}

.section {
  position: relative;
}

.dark {
  background: var(--bg-soft);
}

.gradient-text {
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1,
h2,
h3,
h4 {
  font-family: "RoadRadio", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.55rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

p {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 18px;
  font-family: "RoadRadio", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gradient {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #f57a33 0%, #e7692c 45%, #d94c36 100%);
  box-shadow:
    0 10px 24px rgba(231, 105, 44, 0.28),
    0 4px 12px rgba(217, 76, 54, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 16px 34px rgba(231, 105, 44, 0.34),
    0 8px 18px rgba(217, 76, 54, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: saturate(1.05);
}

.btn-outline-light {
  color: #fff;
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

a.btn-gradient,
a.btn-gradient:visited,
a.btn-gradient:hover,
a.btn-gradient:active,
a.btn-gradient:focus,
.btn-primary,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
  color: #fff;
}

/* Floating logos */
.floating-logo {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-logo a,
.floating-logo img {
  pointer-events: auto;
}

.floating-logo-center {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.floating-logo-center img {
  width: 150px;
}

.floating-logo-corner {
  top: 14px;
  left: 14px;
  opacity: 0;
  transform: translateY(-10px);
}

.floating-logo-corner img {
  width: 76px;
}

.hide-logo {
  opacity: 0;
  transform: translateX(-50%) translateY(-6px) scale(0.96);
}

.show-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hero */
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
  background: url("images/tanuki-figures-patreon-models.jpg") center top / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 4%, rgba(0, 0, 0, 0.32) 42%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-bottom: 110px;
}

.hero-card {
  max-width: 650px;
  text-align: center;
}

.hero-card h1 {
  max-width: 600px;
  margin: 0 auto 12px;
}

.hero-subtitle {
  margin: 10px 0 18px;
  font-family: "RoadRadio", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero smoke */
.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-smoke .smoke {
  position: absolute;
  display: block;
  border-radius: 58% 42% 63% 37% / 41% 59% 38% 62%;
  filter: blur(22px);
  will-change: transform, opacity;
  background: radial-gradient(
    circle,
    rgba(231, 105, 44, 0.24) 0%,
    rgba(170, 95, 60, 0.2) 28%,
    rgba(95, 60, 40, 0.16) 56%,
    rgba(255, 210, 170, 0.05) 76%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-smoke .smoke-1 {
  top: 2%;
  left: -4%;
  width: 320px;
  height: 320px;
  opacity: 0.34;
  animation: heroSmokeFloat1 6.2s ease-in-out infinite alternate;
}

.hero-smoke .smoke-2 {
  top: -6%;
  left: 32%;
  width: 420px;
  height: 420px;
  opacity: 0.28;
  animation: heroSmokeFloat2 3.4s ease-in-out infinite alternate;
}

.hero-smoke .smoke-3 {
  top: -2%;
  right: -6%;
  width: 360px;
  height: 360px;
  opacity: 0.22;
  animation: heroSmokeFloat3 4.4s ease-in-out infinite alternate;
}

.hero:hover .smoke {
  opacity: 0.32;
}

@keyframes heroSmokeFloat1 {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(60px, -40px, 0) rotate(8deg); }
}

@keyframes heroSmokeFloat2 {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-70px, 45px, 0) rotate(-10deg); }
}

@keyframes heroSmokeFloat3 {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(50px, -55px, 0) rotate(6deg); }
}

/* Intro / what you get */
.what-you-get-section,
.comparison-section,
.reviews-section,
.print-showcase-section,
.loyalty-section,
.final-cta-section,
.final-offer-section {
  position: relative;
  z-index: 3;
}

.what-you-get-section {
  margin-top: -36px;
  padding: 54px 0 52px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.45);
}

.what-section {
  background:
    radial-gradient(circle at center, rgba(231, 105, 44, 0.06), transparent 20%),
    linear-gradient(180deg, #15110f 0%, #0b0a09 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.intro-block {
  padding: 20px;
  text-align: center;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-title,
.what-you-get-title {
  margin-bottom: 20px;
  font-size: 40px;
  text-align: center;
}

.intro-text {
  max-width: 720px;
  margin: 0 auto 12px;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.6;
}

.what-you-get-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: left;
}

.what-you-get-list li,
.final-offer-list li {
  position: relative;
  line-height: 1.35;
}

.what-you-get-list li {
  margin-bottom: 8px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.what-you-get-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange-1);
  font-weight: 700;
  text-shadow: 0 0 6px rgba(231, 105, 44, 0.28);
}

.what-you-get-cancel {
  margin-bottom: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.what-you-get-notes {
  text-align: center;
}

.what-you-get-notes p {
  color: var(--muted-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* Comparison */
.comparison-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  overflow: hidden;
  background: url("images/tanuki-figures-patreon-models-death-darksiders.jpg") top center / cover no-repeat;
}

.comparison-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 220px;
  opacity: 0.9;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 60%, #000 100%);
}

.comparison-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(9, 15, 15, 0.28), rgba(8, 13, 13, 0.38));
}

.comparison-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.comparison-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison-panel {
  width: min(760px, 100%);
  margin-top: 140px;
  padding: 30px 28px 26px;
  border-radius: 24px;
  background: rgba(18, 30, 30, 0.58);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.comparison-title {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  text-align: center;
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 11px;
  font-family: "RoadRadio", sans-serif;
  font-size: 0.95rem;
  text-align: center;
  text-transform: uppercase;
}

.comparison-pill-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.comparison-pill-fill {
  color: #f57a33;
  border: 1.5px solid rgba(231, 105, 44, 0.6);
  background: rgba(231, 105, 44, 0.06);
  backdrop-filter: blur(6px);
}

.comparison-list {
  display: grid;
  gap: 5px;
}

.comparison-list li {
  position: relative;
  margin-bottom: 10px;
  margin-left: 5px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.comparison-col:first-child .comparison-list li {
  color: rgba(255, 255, 255, 0.65);
}

.comparison-col:first-child .comparison-list li::before,
.comparison-col:last-child .comparison-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.comparison-col:first-child .comparison-list li::before {
  content: "✕";
  color: #ff4d4d;
  text-shadow: 0 0 6px rgba(255, 77, 77, 0.4);
}

.comparison-col:last-child .comparison-list li::before {
  content: "✓";
  color: var(--orange-1);
  text-shadow: 0 0 6px rgba(231, 105, 44, 0.35);
}

.comparison-cta {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  text-align: center;
}

.comparison-cta .btn {
  min-width: 300px;
}

/* Comparison particles */
.comparison-spark {
  --w: 16px;
  --h: 3px;
  --r: 0deg;
  --mx: 0px;
  --my: 0px;
  --sx: 0px;
  --sy: 0px;

  position: absolute;
  width: var(--w);
  height: var(--h);
  border-radius: 999px;
  opacity: 0.72;
  will-change: transform, opacity, filter;
  background: linear-gradient(
    90deg,
    rgba(120, 255, 245, 0) 0%,
    rgba(120, 255, 245, 0.65) 18%,
    rgba(160, 255, 248, 1) 50%,
    rgba(120, 255, 245, 0.65) 82%,
    rgba(120, 255, 245, 0) 100%
  );
  box-shadow:
    0 0 8px rgba(95, 245, 230, 0.45),
    0 0 18px rgba(95, 245, 230, 0.22);
  transform: translate3d(calc(var(--mx) + var(--sx)), calc(var(--my) + var(--sy)), 0) rotate(var(--r));
  animation:
    sparkFloat 7s ease-in-out infinite,
    sparkPulse 4.8s ease-in-out infinite;
}

.comparison-spark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 180%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(175, 255, 248, 0.95), rgba(175, 255, 248, 0) 72%);
  filter: blur(2px);
}

.comparison-spark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(90, 245, 228, 0.18), transparent 72%);
  filter: blur(6px);
}

.comparison-spark.spark-dot {
  --w: 5px;
  --h: 5px;
  --r: 0deg;
}

.comparison-spark.spark-dot::before {
  width: 100%;
  height: 100%;
}

.comparison-spark.spark-big {
  --w: 24px;
  --h: 4px;
  opacity: 0.55;
  filter: blur(0.2px);
}

.spark-1 { top: 22%; left: 17%; --w: 18px; --h: 2px; --r: -24deg; animation-delay: 0s, 0.2s; animation-duration: 8.2s, 4.2s; }
.spark-2 { top: 28%; left: 76%; --w: 12px; --h: 3px; --r: 38deg; animation-delay: 1.1s, 0.8s; animation-duration: 9.4s, 5.4s; }
.spark-3 { top: 40%; left: 12%; --w: 9px; --h: 2px; --r: -62deg; animation-delay: 2.3s, 1.4s; animation-duration: 7.1s, 4.6s; }
.spark-4 { top: 50%; left: 84%; --w: 15px; --h: 2px; --r: 18deg; animation-delay: 0.7s, 2s; animation-duration: 8.8s, 5s; }
.spark-5 { top: 70%; left: 22%; --w: 11px; --h: 3px; --r: -12deg; animation-delay: 1.8s, 0.4s; animation-duration: 7.9s, 4.8s; }
.spark-6 { top: 80%; left: 69%; --w: 17px; --h: 2px; --r: 52deg; animation-delay: 2.8s, 1.6s; animation-duration: 9.1s, 5.3s; }
.spark-7 { top: 60%; left: 12%; --w: 8px; --h: 2px; --r: -40deg; animation-delay: 1.4s, 1.1s; animation-duration: 6.8s, 4.1s; }
.spark-8 { top: 34%; left: 59%; --w: 13px; --h: 2px; --r: 70deg; animation-delay: 2.1s, 0.7s; animation-duration: 8.5s, 5.1s; }

@keyframes sparkFloat {
  0%, 100% {
    opacity: 0.34;
    transform: translate3d(calc(var(--mx) + var(--sx)), calc(var(--my) + var(--sy)), 0) rotate(var(--r)) translateY(4px) scale(0.94);
  }
  50% {
    opacity: 0.9;
    transform: translate3d(calc(var(--mx) + var(--sx)), calc(var(--my) + var(--sy)), 0) rotate(var(--r)) translateY(-16px) scale(1.06);
  }
}

@keyframes sparkPulse {
  0%, 100% { filter: brightness(0.95) saturate(1); }
  50% { filter: brightness(1.28) saturate(1.18); }
}

/* Reviews */
.reviews-section {
  padding: 58px 0 56px;
  background: radial-gradient(circle at center, rgba(231, 105, 44, 0.08), transparent 45%), #1c1716;
}

.reviews-title {
  margin-bottom: 30px;
  font-size: clamp(1.55rem, 3.3vw, 2.25rem);
  text-align: center;
}

.reviews-carousel,
.showcase-slider {
  position: relative;
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
}

.reviews-viewport,
.showcase-viewport {
  overflow: hidden;
}

.reviews-track,
.showcase-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviews-track {
  gap: 18px;
}

.review-slide {
  flex: 0 0 calc((100% - 36px) / 3);
}

.review-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.reviews-nav,
.showcase-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  font-family: "RoadRadio", sans-serif;
  font-size: 1.8rem;
  transform: translateY(-50%);
  background: rgba(14, 14, 14, 0.74);
  transition: background var(--transition), transform var(--transition);
}

.reviews-nav:hover,
.showcase-nav:hover {
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
}

.reviews-prev,
.showcase-prev {
  left: -58px;
}

.reviews-next,
.showcase-next {
  right: -58px;
}

.reviews-dots,
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.reviews-dot,
.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  transition: width var(--transition), background var(--transition);
}

.reviews-dot.active,
.showcase-dot.active {
  width: 28px;
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
}

.reviews-progress {
  display: none;
}

/* Print showcase */
.print-showcase-section {
  padding: 42px 0 48px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28)),
    url("images/tanuki-figures-patreon-models.jpg") center center / cover no-repeat;
}

.print-showcase-title {
  margin-bottom: 26px;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  text-align: center;
}

.print-showcase-subtitle {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.showcase-track {
  gap: 20px;
}

.model-card {
  flex: 0 0 calc((100% - 40px) / 3);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(18, 13, 13, 0.66);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.model-card-top {
  margin-bottom: 14px;
  text-align: center;
}

.model-name {
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.model-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 14px;
  aspect-ratio: 0.82 / 1;
  background: rgba(255, 255, 255, 0.03);
}

.model-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease;
}

.model-image.active {
  opacity: 1;
  visibility: visible;
}

.model-image[data-zoomable="true"],
.loyalty-card[data-lightbox-group="loyalty"] {
  cursor: zoom-in;
}

.model-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.model-tab {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: "RoadRadio", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.model-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.7);
}

.model-tab.active {
  border-color: transparent;
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
}

.print-showcase-cta {
  margin-top: 24px;
  text-align: center;
}

/* Loyalty */
.loyalty-section {
  background: #111;
}

.loyalty-header {
  padding: 32px 0 26px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(80, 220, 200, 0.45) 0%, rgba(30, 120, 130, 0.35) 25%, rgba(15, 60, 80, 0.6) 55%, rgba(10, 25, 45, 0.9) 100%),
    linear-gradient(to right, #1f5f59, #1a6b67, #134e61, #0d2d4a);
  filter: saturate(0.9) brightness(0.95);
}

.loyalty-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.loyalty-kicker,
.loyalty-subtitle {
  font-family: "RoadRadioThin", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.loyalty-kicker {
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.loyalty-title {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.9;
  text-shadow:
    0 0 12px rgba(120, 255, 220, 0.25),
    0 0 30px rgba(0, 255, 200, 0.15);
  background: linear-gradient(to bottom, var(--cyan-1), var(--cyan-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loyalty-subtitle {
  font-size: 14px;
  letter-spacing: 0.5px;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.loyalty-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.2s ease;
}

.loyalty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.loyalty-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.loyalty-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.08) contrast(1.05);
}

.loyalty-card-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loyalty-center-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 100%;
  padding: 0 20px;
  transform: translateX(-50%);
  pointer-events: none;
  text-align: center;
  font-family: "RoadRadio", sans-serif;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 1px;
  text-shadow:
    0 0 12px rgba(120, 255, 220, 0.35),
    0 4px 20px rgba(0, 255, 200, 0.25);
  background: linear-gradient(to bottom, var(--cyan-1), var(--cyan-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  width: min(1280px, 100%);
  max-height: calc(100vh - 48px);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.image-lightbox.is-open .image-lightbox-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.image-lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.image-lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.image-lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.image-lightbox-close,
.image-lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.image-lightbox-close {
  position: absolute;
  top: -12px;
  right: 0;
  z-index: 4;
  width: 44px;
  height: 44px;
  background: rgba(20, 20, 24, 0.88);
  font-size: 28px;
  line-height: 1;
}

.image-lightbox-close:hover {
  transform: scale(1.04);
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
}

.image-lightbox-nav {
  width: 52px;
  height: 52px;
  background: rgba(20, 20, 24, 0.76);
  font-family: "RoadRadio", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.image-lightbox-nav:hover {
  background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
}

body.lightbox-open {
  overflow: hidden;
}

/* Final offer */
.final-offer-section {
  overflow: hidden;
  background: url("images/bg-rodape-tanuki-figures.jpg") center center / cover no-repeat;
}

.final-offer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.4)),
    radial-gradient(circle at top center, rgba(95, 209, 197, 0.12), transparent 36%),
    radial-gradient(circle at bottom center, rgba(231, 105, 44, 0.08), transparent 30%);
}

.final-offer-content {
  position: relative;
  z-index: 2;
}

.final-offer-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 520px;
  margin: 0 auto 26px;
  padding: 38px 24px 10px;
}

.final-offer-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(95, 209, 197, 0.16) 0%, rgba(95, 209, 197, 0.08) 28%, rgba(95, 209, 197, 0.03) 48%, rgba(95, 209, 197, 0) 75%);
  filter: blur(28px);
}

.final-offer-logo {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.final-offer-logo-tanuki {
  width: 120px;
}

.final-offer-logo-patreon {
  width: 140px;
  opacity: 0.96;
}

.final-offer-card {
  position: relative;
  width: min(613px, calc(100% - 48px));
  margin: 0 auto;
  padding: 45px;
  overflow: hidden;
  border: 1px solid rgba(95, 209, 197, 0.22);
  border-radius: 35px;
  background: rgba(4, 14, 22, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.final-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  opacity: 0.95;
  background: linear-gradient(to right, rgba(95, 209, 197, 0.16) 0%, rgba(95, 209, 197, 0.5) 20%, rgba(255, 255, 255, 0.92) 50%, rgba(95, 209, 197, 0.5) 80%, rgba(95, 209, 197, 0.16) 100%);
}

.final-offer-card::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 140px;
  height: 20px;
  pointer-events: none;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(95, 209, 197, 0.42) 36%, rgba(95, 209, 197, 0) 78%);
  filter: blur(8px);
}

.final-offer-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.final-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 22px;
  padding: 0 20px;
  border: 1px solid rgba(95, 209, 197, 0.34);
  border-radius: 999px;
  background: rgba(95, 209, 197, 0.08);
  color: var(--cyan-1);
  font-family: "RoadRadio", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-offer-price-wrap {
  margin-bottom: 18px;
}

.final-offer-price {
  color: #fff;
  font-family: "RoadRadio", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.final-offer-price span {
  margin-left: 6px;
  color: var(--cyan-1);
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.1px;
}

.final-offer-description {
  max-width: 520px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.35;
}

.final-offer-list {
  display: grid;
  gap: 10px;
  justify-content: center;
  width: fit-content;
  max-width: 420px;
  margin: 0 auto 26px;
  text-align: left;
}

.final-offer-list li {
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.final-offer-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan-1);
  font-weight: 700;
}

.final-offer-btn {
  min-width: 320px;
  margin-top: 4px;
}

.final-offer-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  text-align: center;
}

.footer-mini p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* Reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(42px);
  will-change: opacity, transform;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.model-card.reveal-up {
  transition-duration: 0.8s;
}

.loyalty-card.reveal-up {
  transition-duration: 0.9s;
}

.showcase-track .model-card:nth-child(1) { transition-delay: 0.02s; }
.showcase-track .model-card:nth-child(2) { transition-delay: 0.08s; }
.showcase-track .model-card:nth-child(3) { transition-delay: 0.14s; }
.showcase-track .model-card:nth-child(4) { transition-delay: 0.02s; }
.showcase-track .model-card:nth-child(5) { transition-delay: 0.08s; }
.showcase-track .model-card:nth-child(6) { transition-delay: 0.14s; }

.loyalty-grid .loyalty-card:nth-child(1) { transition-delay: 0.02s; }
.loyalty-grid .loyalty-card:nth-child(2) { transition-delay: 0.10s; }
.loyalty-grid .loyalty-card:nth-child(3) { transition-delay: 0.18s; }

.model-card.reveal-up .model-media {
  transform: scale(1.03);
  transition: transform 0.9s ease;
}

.model-card.reveal-up.is-visible .model-media {
  transform: scale(1);
}

.final-cta-copy .btn {
  min-height: 62px;
  padding: 0 40px;
  border-radius: 20px;
  animation: subtlePulse 2.8s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow:
      0 16px 36px rgba(231, 105, 44, 0.34),
      0 8px 20px rgba(217, 76, 54, 0.26);
  }
  50% {
    box-shadow:
      0 20px 44px rgba(231, 105, 44, 0.42),
      0 10px 26px rgba(217, 76, 54, 0.3);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .reviews-carousel,
  .showcase-slider {
    width: min(1320px, calc(100% - 56px));
  }

  .review-slide {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .model-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .reviews-prev,
  .showcase-prev {
    left: -34px;
  }

  .reviews-next,
  .showcase-next {
    right: -34px;
  }
}

@media (max-width: 900px) {
  .hero {
    position: relative;
    min-height: 78vh;
    background-position: center top;
  }

  .hero-content {
    padding-bottom: 26px;
  }

  .what-you-get-section {
    margin-top: 0;
    padding-top: 42px;
    border-radius: 0;
    box-shadow: none;
  }

  .what-you-get-list,
  .comparison-columns,
  .loyalty-grid {
    grid-template-columns: 1fr;
  }

  .comparison-panel {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 280px;
    min-height: 52px;
    margin: 0 auto;
    padding: 0 26px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .hero-btn {
    min-height: 52px;
    padding: 0 28px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .floating-logo-center {
    top: calc(env(safe-area-inset-top, 0px) + 38px);
  }

  .floating-logo-center img {
    width: 116px;
  }

  .floating-logo-corner img {
    width: 62px;
  }

  .hero {
    top: auto;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: calc(env(safe-area-inset-top, 0px) + 88px);
    padding-bottom: 28px;
    background-position: 48% 22%;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 8%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.14) 100%);
  }

  .hero-content {
    padding-bottom: 26px;
  }

  .hero-card {
    max-width: 340px;
    padding: 0 6px;
  }

  .hero-card h1 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 0.95;
  }

  .hero-subtitle {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .hero-btn,
  .hero .btn {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  .hero-smoke .smoke {
    filter: blur(14px);
  }

  .hero-smoke .smoke-1 {
    top: 16%;
    left: -2%;
    width: 150px;
    height: 150px;
    opacity: 0.42;
    animation-duration: 3.8s;
  }

  .hero-smoke .smoke-2 {
    top: 12%;
    right: -6%;
    left: auto;
    width: 180px;
    height: 180px;
    opacity: 0.32;
    animation-duration: 4.4s;
  }

  .hero-smoke .smoke-3 {
    bottom: 18%;
    left: 18%;
    right: auto;
    top: auto;
    width: 160px;
    height: 160px;
    opacity: 0.26;
    animation-duration: 4s;
  }

  .what-you-get-section {
    margin-top: 0;
    padding: 42px 0 40px;
    border-radius: 0;
    box-shadow: none;
  }

  .what-you-get-title {
    margin-bottom: 24px;
    padding: 0 10px;
  }

  .what-you-get-list {
    grid-template-columns: 1fr;
    gap: 2px;
    max-width: 310px;
    margin: 0 auto 22px;
  }

  .what-you-get-list ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .what-you-get-list li {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 0.95rem;
  }

  .what-you-get-list li::before {
    position: static;
    flex: 0 0 auto;
    width: auto;
    margin-top: 1px;
  }

  .what-you-get-cancel,
  .what-you-get-notes {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
  }

  .comparison-section {
    min-height: auto;
    padding: 64px 0;
    background-position: center center;
  }

  .comparison-spark {
    opacity: 0.38;
    box-shadow:
      0 0 6px rgba(95, 245, 230, 0.22),
      0 0 12px rgba(95, 245, 230, 0.1);
  }

  .spark-2,
  .spark-4,
  .spark-8 {
    display: none;
  }

  .comparison-panel {
    margin-top: 125px;
    padding: 24px 16px 20px;
    border-radius: 20px;
  }

  .comparison-title {
    max-width: 300px;
    margin: 0 auto 18px;
    font-size: 1.8rem;
  }

  .comparison-col {
    text-align: left;
  }

  .comparison-pill {
    max-width: 300px;
    min-height: 44px;
    margin: 0 auto 14px;
    font-size: 0.9rem;
  }

  .comparison-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 300px;
    margin: 0 auto;
  }

  .comparison-list li {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.35;
    text-align: left;
  }

  .comparison-col:first-child .comparison-list li::before,
  .comparison-col:last-child .comparison-list li::before {
    position: static;
    flex: 0 0 auto;
    width: auto;
    margin-top: 1px;
  }

  .comparison-cta {
    margin-top: 24px;
  }

  .comparison-cta .btn {
    min-width: 0;
    max-width: 300px;
  }

  .reviews-section {
    padding: 42px 0 40px;
  }

  .reviews-title {
    max-width: 310px;
    margin: 0 auto 22px;
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 0.96;
  }

  .reviews-carousel,
  .showcase-slider {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
  }

  .reviews-viewport,
  .showcase-viewport {
    touch-action: pan-y;
  }

  .reviews-track,
  .showcase-track {
    cursor: grab;
  }

  .reviews-track:active,
  .showcase-track:active {
    cursor: grabbing;
  }

  .reviews-track {
    gap: 12px;
  }

  .review-slide,
  .model-card {
    flex: 0 0 100%;
  }

  .review-card {
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  }

  .reviews-nav,
  .reviews-dots,
  .showcase-nav,
  .showcase-dots {
    display: none !important;
  }

  .reviews-progress {
    position: relative;
    display: block;
    width: 72px;
    height: 4px;
    margin: 18px auto 0;
  }

  .reviews-progress-track,
  .reviews-progress-bar {
    position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .reviews-progress-track {
    background: rgba(255, 255, 255, 0.16);
  }

  .reviews-progress-bar {
    width: 0%;
    background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
    box-shadow: 0 0 10px rgba(231, 105, 44, 0.24);
    transition: width 0.18s linear;
  }

  .print-showcase-section {
    padding: 28px 0 34px;
  }

  .print-showcase-title {
    margin-bottom: 18px;
  }

  .model-card {
    position: relative;
    padding: 14px 14px 16px;
    border-radius: 16px;
  }

  .model-media {
    margin-bottom: 14px;
    aspect-ratio: 0.82 / 1.02;
  }

  .model-tabs {
    gap: 8px;
  }

  .model-tab {
    min-height: 40px;
    font-size: 0.76rem;
  }

  .model-card.show-swipe-hint::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: swipeHintMove 2s ease-in-out infinite;
  }

  .loyalty-header {
    padding: 24px 0 18px;
  }

  .loyalty-kicker {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .loyalty-title {
    margin-bottom: 4px;
    font-size: clamp(30px, 10vw, 52px);
  }

  .loyalty-subtitle {
    width: calc(100% - 24px);
    margin: 0 auto;
    font-size: 11px;
    line-height: 1.3;
  }

  .loyalty-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-center-text {
    bottom: 16px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .image-lightbox-content {
    position: relative;
    width: 100%;
  }

  .image-lightbox-content img {
    max-height: calc(100vh - 140px);
    border-radius: 12px;
  }

  .image-lightbox-caption {
    margin-top: 10px;
    font-size: 13px;
  }

  .image-lightbox-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    background: rgba(10, 10, 12, 0.82);
    font-size: 24px;
  }

  .image-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    background: rgba(10, 10, 12, 0.72);
    font-size: 28px;
    transform: translateY(-50%);
  }

  .image-lightbox-prev { left: 8px; }
  .image-lightbox-next { right: 8px; }

  .image-lightbox-prev:hover,
  .image-lightbox-prev:active,
  .image-lightbox-next:hover,
  .image-lightbox-next:active {
    transform: translateY(-50%);
  }

  .image-lightbox-nav:hover,
  .image-lightbox-nav:active {
    background: linear-gradient(180deg, var(--orange-1), var(--orange-2));
    box-shadow: 0 0 18px rgba(231, 105, 44, 0.28);
  }

  .final-offer-brand {
    gap: 14px;
    max-width: 320px;
    margin-bottom: 18px;
    padding: 20px 12px 6px;
  }

  .final-offer-brand::before {
    filter: blur(18px);
  }

  .final-offer-logo-tanuki {
    width: 88px;
  }

  .final-offer-logo-patreon {
    width: 118px;
  }

  .final-offer-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .final-offer-card::before {
    left: 18px;
    right: 18px;
  }

  .final-offer-card::after {
    width: 92px;
  }

  .final-offer-inner,
  .final-offer-list {
    max-width: 100%;
  }

  .final-offer-description {
    font-size: 0.98rem;
  }

  .final-offer-list {
    margin-bottom: 22px;
  }

  .final-offer-list li {
    font-size: 0.95rem;
  }

  .final-offer-btn {
    width: 100%;
    min-width: 0;
  }

  .footer-mini {
    margin: 18px 0 20px;
  }

  .final-cta-copy .btn {
    min-height: 58px;
    padding: 0 30px;
    border-radius: 18px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-card {
    max-width: 310px;
  }

  .comparison-title {
    font-size: 1.6rem;
  }

  .reviews-title,
  .print-showcase-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 767px) {
  .reveal-up,
  .model-card.reveal-up,
  .loyalty-card.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .model-card.reveal-up .model-media {
    transform: none !important;
    transition: none !important;
  }
  
  .lang-switcher {
	  top: 16px !important;
	  right: 13px !important;
  }
  
  .lang-toggle{
	height: 38px !important;
    padding: 0 10px !important;
  }
  
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@keyframes swipeHintMove {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) translateX(10px);
  }
}

/* Samsung Internet safe fallback */
.gradient-text,
.hero-subtitle,
.what-you-get-cancel {
  background: none !important;
  color: #f57a33 !important;
  -webkit-text-fill-color: #f57a33 !important;
  text-shadow: 0 0 10px rgba(231, 105, 44, 0.12);
}

.loyalty-title,
.loyalty-center-text {
  background: none !important;
  color: var(--cyan-1) !important;
  -webkit-text-fill-color: var(--cyan-1) !important;
  text-shadow:
    0 0 12px rgba(120, 255, 220, 0.22),
    0 0 28px rgba(0, 255, 200, 0.12);
}

.btn-gradient,
.model-tab.active,
.showcase-dot.active,
.reviews-dot.active,
.reviews-progress-bar {
  color: #fff !important;
  background: #f57a33 !important;
  background-image: linear-gradient(180deg, #ff8a3d 0%, #f57a33 45%, #e7692c 100%) !important;
}

button,
.btn,
.model-tab {
  appearance: none;
  -webkit-appearance: none;
}

.lang-switcher {
  position: fixed;
  top: 23px;
  right: 30px;
  z-index: 1600;
}

/* BOTÃO */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;

  height: 44px;
  padding: 0 12px;

  border-radius: 14px;
  background: rgba(10, 12, 18, 0.75);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);
  cursor: pointer;
}

/* BANDEIRA */
.lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

/* SETA */
.lang-arrow {
  width: 14px;
  height: 14px;
  display: flex;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

/* MENU */
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;

  display: flex;
  flex-direction: column;
  gap: 6px;

  padding: 8px;
  border-radius: 16px;

  background: rgba(10,12,18,0.95);
  border: 1px solid rgba(255,255,255,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITENS */
.lang-option {
  width: 44px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  transition: background 0.2s;
}

.lang-option:hover {
  background: rgba(255,255,255,0.06);
}

.lang-option.is-active {
  background: linear-gradient(180deg, rgba(231,105,44,0.2), rgba(204,68,59,0.2));
}