/* =========================
   Gem Inspector — styles.css
   ========================= */

:root {
  --navy-900: #0e2c45;
  --navy-800: #143a58;
  --cream: #f4f2ea;
  --paper: #fbfaf6;
  --gold: #d7b56f;
  --gold-2: #caa45b;
  --ink: #0f1216;
  --muted: #5d6672;
  --shadow: 0 14px 40px rgba(12, 18, 28, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

/* =========================
       Buttons
       ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  gap: 10px;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  will-change: transform;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, #f0a86a, #d8873f);
  color: #1b1108;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 18px rgba(216, 135, 63, 0.25);
}

.btn--primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #1b1108;
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* =========================
     Brand — Logo Only
     ========================= */

/* Base topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(244, 242, 234, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 18, 22, 0.08);
  transition: background 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* Inner sizing (default: slightly taller for premium feel) */
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  transition: padding 0.18s ease;
}

/* Brand (logo only) */
.brand--logoOnly {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  display: block;
  height: 58px; /* default size */
  width: auto;
  max-height: 64px;
  filter: drop-shadow(0 10px 20px rgba(12, 18, 28, 0.22));
  transform: translateZ(0);
  transition: transform 0.18s ease, filter 0.18s ease, height 0.18s ease;
}

/* Hover polish */
@media (hover: hover) and (pointer: fine) {
  .brand--logoOnly:hover .brand__logo {
    transform: translateY(-1px);
    filter: drop-shadow(0 14px 28px rgba(12, 18, 28, 0.32));
  }
}

/* =========================
     Shrink-on-Scroll State
     ========================= */
.topbar.topbar--scrolled {
  background: rgba(244, 242, 234, 0.92);
  box-shadow: 0 16px 40px rgba(12, 18, 28, 0.14);
  border-color: rgba(15, 18, 22, 0.1);
}

.topbar.topbar--scrolled .topbar__inner {
  padding: 10px 0;
}

.topbar.topbar--scrolled .brand__logo {
  height: 46px; /* shrinks subtly */
  filter: drop-shadow(0 8px 16px rgba(12, 18, 28, 0.18));
}

/* =========================
     Desktop nav
     ========================= */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  position: relative;
  text-decoration: none;
  color: rgba(15, 18, 22, 0.82);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 8px;
  border-radius: 12px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav__link:hover {
  color: rgba(15, 18, 22, 1);
  background: rgba(215, 181, 111, 0.16);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
  opacity: 0.9;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/* =========================
     Mobile toggle
     ========================= */
.navToggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(15, 18, 22, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(12, 18, 28, 0.08);
  cursor: pointer;
  padding: 10px 12px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.navToggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.navToggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(15, 18, 22, 0.86);
  border-radius: 999px;
}

.navToggle__bar + .navToggle__bar {
  margin-top: 7px;
}

/* =========================
     Mobile menu panel
     ========================= */
.mobileMenu {
  border-top: 1px solid rgba(15, 18, 22, 0.08);
  background: rgba(244, 242, 234, 0.92);
  backdrop-filter: blur(14px);
}

.mobileMenu__inner {
  padding: 12px 0 16px;
  display: grid;
  gap: 10px;
}

.mobileMenu__link {
  text-decoration: none;
  color: rgba(15, 18, 22, 0.9);
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 18, 22, 0.08);
  transition: background 0.15s ease, transform 0.15s ease;
}

.mobileMenu__link:hover {
  background: rgba(215, 181, 111, 0.18);
  transform: translateY(-1px);
}

/* =========================
     Responsive
     ========================= */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .navToggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .brand__logo {
    height: 48px;
  }
  .topbar__inner {
    padding: 16px 0;
  }
  .topbar.topbar--scrolled .brand__logo {
    height: 42px;
  }
}

/* =========================
     Reduce motion
     ========================= */
@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar__inner,
  .brand__logo,
  .nav__link::after {
    transition: none !important;
  }
}

/* =========================
     Hero
     ========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 10%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.46) 72%
  );
  opacity: 0.55;
}

.hero__horizon {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -150px;
  height: 300px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(215, 181, 111, 0.22),
    rgba(215, 181, 111, 0) 62%
  );
  filter: blur(10px);
  opacity: 0.92;
}

/* Subtle grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  mask-image: radial-gradient(
    circle at 40% 18%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0) 72%
  );
}

/* Glows */
.hero__glow {
  position: absolute;
  width: 740px;
  height: 740px;
  border-radius: 50%;
  filter: blur(62px);
  opacity: 0.58;
  animation: heroFloat 9s ease-in-out infinite;
  will-change: transform;
}

.hero__glow--gold {
  top: -320px;
  left: -280px;
  background: radial-gradient(
    circle,
    rgba(215, 181, 111, 0.56),
    rgba(215, 181, 111, 0) 60%
  );
}

.hero__glow--amber {
  bottom: -360px;
  right: -320px;
  background: radial-gradient(
    circle,
    rgba(240, 168, 106, 0.44),
    rgba(240, 168, 106, 0) 62%
  );
  animation-delay: 2.7s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(22px);
  }
}

/* Sparkles (foil flecks) */
.hero__sparkles {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.28) 1px,
      transparent 1px
    ),
    radial-gradient(rgba(215, 181, 111, 0.22) 1px, transparent 1px),
    radial-gradient(rgba(240, 168, 106, 0.16) 1px, transparent 1px);
  background-size: 140px 140px, 190px 190px, 240px 240px;
  background-position: 0 0, 40px 70px, 90px 40px;
  mask-image: radial-gradient(
    circle at 30% 20%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0) 70%
  );
  animation: sparkleDrift 10s ease-in-out infinite;
}

@keyframes sparkleDrift {
  0%,
  100% {
    transform: translateY(0);
    filter: blur(0px);
  }
  50% {
    transform: translateY(14px);
    filter: blur(0.2px);
  }
}

/* Layout */
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

/* Content */
.hero__content {
  animation: heroRise 0.8s ease both;
}

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

.pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid rgba(215, 181, 111, 0.85);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero__title {
  margin: 18px 0 12px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 980;
}

.hero__subcopy {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 650;
}

.hero__subcopy strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
}

/* Micro highlights row */
.hero__microRow {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.microPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 111, 0.22);
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.84);
}

.microPill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(215, 181, 111, 0.95);
  box-shadow: 0 0 0 4px rgba(215, 181, 111, 0.18);
}

/* CTAs */
.hero__ctaRow {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--heroPrimary {
  background: linear-gradient(180deg, #ffe3a6 0%, #d7b56f 60%, #caa45b 100%);
  color: #1b1108;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 36px rgba(202, 164, 91, 0.42);
  font-weight: 950;
  letter-spacing: 0.02em;
  padding: 14px 22px;
}

.btn--heroPrimary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn--heroGhost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-weight: 900;
  padding: 14px 22px;
}

.btn--heroGhost:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Trust pills */
.hero__trustRow {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trustPill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 111, 0.28);
  font-size: 12px;
  font-weight: 850;
}

/* Right-side brand area */
.hero__brand {
  display: flex;
  justify-content: flex-end;
  animation: heroRise 1s ease both;
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    padding: 80px 0 74px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__brand {
    justify-content: center;
    margin-top: 26px;
  }

  .hero__ctaRow,
  .hero__trustRow,
  .hero__microRow {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 74px 0 68px;
  }

  .hero__title {
    font-size: clamp(34px, 9vw, 46px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__glow,
  .hero__sparkles,
  .hero__content,
  .hero__brand {
    animation: none !important;
  }
}

/* =========================
       Hero Trading Card (Brand Visual)
       ========================= */
.tcgCard {
  width: min(440px, 100%);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(215, 181, 111, 0.32);
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.42);
  transform: translateZ(0);
}

.tcgCard__shine {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(215, 181, 111, 0.22),
      rgba(215, 181, 111, 0) 55%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(240, 168, 106, 0.18),
      rgba(240, 168, 106, 0) 55%
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0.9;
  pointer-events: none;
}

.tcgCard__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
}

.tcgCard__header {
  position: relative;
  padding: 18px 18px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tcgCard__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(215, 181, 111, 0.14);
  border: 1px solid rgba(215, 181, 111, 0.32);
}

.tcgCard__titleWrap {
  text-align: right;
}

.tcgCard__title {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
}

.tcgCard__subtitle {
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.tcgCard__art {
  position: relative;
  padding: 0 18px;
}

.tcgCard__artFrame {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(215, 181, 111, 0.28);
  background: rgba(0, 0, 0, 0.16);
  overflow: hidden;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.tcgCard__artGrid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  mask-image: radial-gradient(
    circle at 40% 30%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0) 70%
  );
}

.tcgCard__artGlow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(215, 181, 111, 0.18),
    rgba(215, 181, 111, 0) 55%
  );
  filter: blur(18px);
  opacity: 0.8;
}

.tcgCard__svg {
  position: relative;
  width: 100%;
  height: 120px;
  display: block;
}

.tcgCard__artLabel {
  position: relative;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.tcgCard__body {
  position: relative;
  padding: 14px 18px 14px;
}

.tcgCard__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.tcgCard__kv span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.tcgCard__kv strong {
  display: block;
  margin-top: 4px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.tcgCard__meterTop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.tcgCard__meterLabel {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.tcgCard__meterHint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
}

.tcgCard__bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(215, 181, 111, 0.24);
  overflow: hidden;
}

.tcgCard__barFill {
  position: absolute;
  inset: 0;
  width: 78%;
  background: linear-gradient(
    90deg,
    rgba(215, 181, 111, 0.2),
    rgba(215, 181, 111, 0.85),
    rgba(240, 168, 106, 0.55)
  );
  border-radius: 999px;
  animation: gemFill 2.2s ease-out both;
}

@keyframes gemFill {
  from {
    width: 0%;
  }
  to {
    width: 78%;
  }
}

.tcgCard__barTick {
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 0.7;
}
.tcgCard__barTick--1 {
  left: 25%;
}
.tcgCard__barTick--2 {
  left: 50%;
}
.tcgCard__barTick--3 {
  left: 75%;
}

.tcgCard__bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.55;
  font-size: 12.8px;
}

.tcgCard__bullets li + li {
  margin-top: 6px;
}

.tcgCard__footer {
  position: relative;
  padding: 12px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tcgCard__footerLeft {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tcgCard__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 111, 0.22);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.tcgCard__footerRight {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 520px) {
  .tcgCard__row {
    grid-template-columns: 1fr;
  }
  .tcgCard__titleWrap {
    text-align: left;
  }
  .tcgCard__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reduced motion (card meter) */
@media (prefers-reduced-motion: reduce) {
  .tcgCard__barFill {
    animation: none !important;
    width: 78% !important;
  }
}

/* =========================
   GI Card — Symmetric Stats Row
   ========================= */

.giCard__stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.giStat {
  border-radius: 14px;
  padding: 10px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(215, 181, 111, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.giStat__kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.giStat__value {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

/* Mobile polish: keep symmetry without squish */
@media (max-width: 520px) {
  .giCard__stats {
    gap: 8px;
  }
  .giStat {
    padding: 9px 8px;
    border-radius: 12px;
  }
  .giStat__kicker {
    font-size: 9px;
    margin-bottom: 5px;
  }
  .giStat__value {
    font-size: 11px;
  }
}

/* Extra-small phones: stack cleanly if needed */
@media (max-width: 360px) {
  .giCard__stats {
    grid-template-columns: 1fr;
  }
  .giStat {
    text-align: left;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
  }
  .giStat__kicker {
    margin-bottom: 0;
  }
}

.giCard__descTitle {
  position: relative;
  padding-bottom: 8px;
}

.giCard__descTitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(215, 181, 111, 0),
    rgba(215, 181, 111, 0.45),
    rgba(215, 181, 111, 0)
  );
  opacity: 0.9;
}

/* =========================
   Hero Trading Card Showcase
   ========================= */

.spinStage {
  width: min(460px, 100%);
  display: grid;
  gap: 12px;
  justify-items: end;
  perspective: 1100px;
  perspective-origin: 50% 40%;
  transform: translateZ(0);
}

/* Adds a “stage” shadow so there’s no dead space under the card */
.spinStage--showcase {
  position: relative;
  padding-bottom: 18px;
}

.spinStage--showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: min(420px, 92%);
  height: 38px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0) 72%
  );
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
}

.spinHint {
  font-size: 12px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
}

/* The 3D card container */
.giCard {
  width: min(440px, 100%);
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: 28px;

  /* Keep depth but avoid iOS backface weirdness */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* Replace “spin” with a controlled float/tilt */
.giCard--float {
  animation: giFloat 6.8s ease-in-out infinite;
  transform-origin: 50% 60%;
}

/* Gentle, premium “product showcase” motion (safe on iOS) */
@keyframes giFloat {
  0% {
    transform: translateY(0) rotateX(6deg) rotateY(-10deg) rotateZ(0.4deg);
  }
  50% {
    transform: translateY(-10px) rotateX(7.5deg) rotateY(-6deg) rotateZ(-0.4deg);
  }
  100% {
    transform: translateY(0) rotateX(6deg) rotateY(-10deg) rotateZ(0.4deg);
  }
}

/* Frame like your reference image */
.giCard__frame {
  height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(215, 181, 111, 0.3);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Corner caps */
.giCard__frame::before,
.giCard__frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0.75;
  pointer-events: none;
}

/* Extra subtle outer glow ring (adds richness without clutter) */
.giCard__frame::after {
  inset: 10px;
  opacity: 0.28;
  border-color: rgba(215, 181, 111, 0.55);
  filter: blur(0.2px);
}

.giCard__inner {
  position: absolute;
  inset: 26px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 16px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 14px;
  background: rgba(0, 0, 0, 0.08);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Art window */
.giCard__artWindow {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(215, 181, 111, 0.18),
      rgba(215, 181, 111, 0) 55%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(240, 168, 106, 0.12),
      rgba(240, 168, 106, 0) 60%
    ),
    rgba(0, 0, 0, 0.18);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Foil sheen */
.giCard__foilSheen {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: rotate(12deg);
  animation: sheen 3.8s ease-in-out infinite;
  opacity: 0.75;
}

@keyframes sheen {
  0%,
  100% {
    transform: translateX(-6%) rotate(12deg);
  }
  50% {
    transform: translateX(6%) rotate(12deg);
  }
}

.giCard__artContent {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 18px;
  gap: 10px;
}

/* NEW: Front logo */
.giCard__logo {
  width: min(240px, 78%);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
  opacity: 0.98;
}

.giCard__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(215, 181, 111, 0.14);
  border: 1px solid rgba(215, 181, 111, 0.3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.giCard__title {
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.giCard__subtitle {
  font-size: 12.5px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.78);
}

/* Nameplate */
.giCard__nameplate {
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 10px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.giCard__name {
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Bottom description box */
.giCard__descBox {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.12);
}

.giCard__descTitle {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.giCard__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  font-size: 12.4px;
  line-height: 1.5;
}

.giCard__miniRow {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.giChip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 111, 0.22);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

/* Responsive */
@media (max-width: 980px) {
  .spinStage {
    justify-items: center;
    perspective: 900px;
  }
  .spinHint {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .giCard {
    width: min(380px, 92vw);
  }

  /* Reduce rotation on small screens to keep it crisp */
  .giCard--float {
    animation-duration: 7.8s;
  }

  @keyframes giFloat {
    0% {
      transform: translateY(0) rotateX(5deg) rotateY(-7deg) rotateZ(0.25deg);
    }
    50% {
      transform: translateY(-8px) rotateX(6deg) rotateY(-4deg) rotateZ(-0.25deg);
    }
    100% {
      transform: translateY(0) rotateX(5deg) rotateY(-7deg) rotateZ(0.25deg);
    }
  }

  .giCard__inner {
    inset: 22px;
    padding: 14px;
  }

  .giCard__logo {
    width: min(220px, 82%);
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .giCard--float,
  .giCard__foilSheen {
    animation: none !important;
  }
}

/* =========================
   Hero Card — Mobile Polish
   ========================= */

/* Make the showcase card responsive to viewport height on phones */
.spinStage--showcase {
  width: min(440px, 100%);
}

@media (max-width: 520px) {
  .spinStage--showcase {
    width: 100%;
    justify-items: center;
  }

  /* Card: scale to viewport height so it never feels "smushy" */
  .spinStage--showcase .giCard {
    width: min(360px, 92vw);
    max-height: 68vh; /* key: prevents oversized/tall card */
    aspect-ratio: 3 / 4;
  }

  /* Reduce frame/inset thickness to buy breathing room */
  .spinStage--showcase .giCard__frame {
    border-radius: 22px;
  }

  .spinStage--showcase .giCard__frame::before,
  .spinStage--showcase .giCard__frame::after {
    inset: 10px;
    border-radius: 18px;
  }

  .spinStage--showcase .giCard__inner {
    inset: 18px;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }

  /* Top window spacing */
  .spinStage--showcase .giCard__artContent {
    padding: 14px;
    gap: 6px;
  }

  /* Logo smaller so header area doesn't crush the title */
  .spinStage--showcase .giCard__logo {
    height: 38px;
    width: auto;
    margin-bottom: 2px;
  }

  /* Typography downshift */
  .spinStage--showcase .giCard__badge {
    font-size: 10px;
    padding: 6px 9px;
  }

  .spinStage--showcase .giCard__title {
    font-size: 15px;
    line-height: 1.15;
  }

  .spinStage--showcase .giCard__subtitle {
    font-size: 11.5px;
  }

  /* Nameplate + desc tighten but stay readable */
  .spinStage--showcase .giCard__nameplate {
    border-radius: 12px;
    padding: 9px 10px;
  }

  .spinStage--showcase .giCard__name {
    font-size: 11.5px;
  }

  .spinStage--showcase .giCard__descBox {
    border-radius: 14px;
    padding: 10px;
  }

  .spinStage--showcase .giCard__descTitle {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .spinStage--showcase .giCard__list {
    font-size: 11.5px;
    line-height: 1.45;
  }

  /* Chips become smaller and wrap cleaner */
  .spinStage--showcase .giCard__miniRow {
    margin-top: 8px;
    gap: 6px;
  }

  .spinStage--showcase .giChip {
    font-size: 10px;
    padding: 5px 9px;
  }
}

/* Extra-small phones: keep it clean */
@media (max-width: 380px) {
  .spinStage--showcase .giCard {
    width: 90vw;
    max-height: 64vh;
  }

  .spinStage--showcase .giCard__inner {
    inset: 16px;
    padding: 11px;
  }

  .spinStage--showcase .giCard__title {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .spinStage--showcase {
    padding-bottom: 10px;
  }

  .spinStage--showcase::after {
    content: "";
    width: min(320px, 80vw);
    height: 22px;
    border-radius: 999px;
    margin: 10px auto 0;
    display: block;
    background: radial-gradient(
      circle,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0) 70%
    );
    filter: blur(2px);
    opacity: 0.65;
  }
}

/* =========================
       About
       ========================= */
.about {
  background: var(--paper);
  padding: 40px 0 34px;
}

.about__header {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
  text-decoration: underline;
}

.about__lead {
  margin: 10px auto 0;
  max-width: 860px;
  color: #2b3440;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

/* Premium content card */
.about__card {
  max-width: 980px;
  margin: 18px auto 18px;
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  border: 1px solid rgba(215, 181, 111, 0.38);
  box-shadow: 0 16px 44px rgba(12, 18, 28, 0.08);
  position: relative;
  overflow: hidden;
}

/* Subtle premium sheen */
.about__card::before {
  content: "";
  position: absolute;
  inset: -60px -40px auto -40px;
  height: 140px;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(215, 181, 111, 0.18),
    rgba(215, 181, 111, 0) 60%
  );
  pointer-events: none;
}

.about__text {
  max-width: 920px;
  margin: 0 auto;
  color: #27313b;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

.about__text + .about__text {
  margin-top: 12px;
}

.about__text strong {
  font-weight: 900;
  color: #141c24;
}

.about__learnMore {
  margin-top: 14px;
}

.about__learnLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 850;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--gold);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about__learnLink:hover {
  opacity: 1;
  transform: translateX(2px);
}

/* Stats row (refined) */
.statsWrap {
  margin: 18px auto 12px;
  max-width: 980px;
  background: rgba(215, 181, 111, 0.28);
  border-radius: 20px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.statCard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 24, 34, 0.08);
  border-radius: 16px;
  padding: 12px 12px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(12, 18, 28, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.statCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12, 18, 28, 0.09);
  border-color: rgba(215, 181, 111, 0.45);
}

.statCard__title {
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1b2430;
  margin-bottom: 8px;
}

.statCard__value {
  font-size: 12.5px;
  color: #2c3742;
  font-weight: 750;
  line-height: 1.35;
}

.disclaimer {
  font-size: 12px;
  color: #5a6673;
  text-align: center;
  margin: 14px auto 0;
  max-width: 980px;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 980px) {
  .statsWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .about {
    padding: 40px 0 28px;
  }

  .about__card {
    padding: 16px 14px;
  }

  .statsWrap {
    grid-template-columns: 1fr;
    padding: 12px;
  }
}

/* =========================
   Process Flow (Premium Grid)
   ========================= */

.trustFlow {
  margin-top: 14px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(15, 18, 22, 0.12);
  backdrop-filter: blur(10px);
}

.trustFlow__label {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 18, 22, 0.62);
  margin-bottom: 10px;
}

.trustFlow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}

/* Step tile */
.trustStep {
  position: relative;
  border-radius: 16px;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 18, 22, 0.1);
  box-shadow: 0 10px 24px rgba(15, 18, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

/* Number badge */
.trustStep__badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  font-weight: 950;
  color: rgba(15, 18, 22, 0.92);

  background: linear-gradient(180deg, #ffe3a6, #d7b56f);
  border: 1px solid rgba(202, 164, 91, 0.55);
  box-shadow: 0 10px 22px rgba(202, 164, 91, 0.22);
}

.trustStep__title {
  font-weight: 950;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: rgba(15, 18, 22, 0.92);
  line-height: 1.1;
}

.trustStep__sub {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 650;
  color: rgba(15, 18, 22, 0.62);
  line-height: 1.25;
}

/* Make step 3 feel “special” without screaming */
.trustStep--primary {
  border-color: rgba(202, 164, 91, 0.35);
  box-shadow: 0 16px 40px rgba(15, 18, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trustStep__shine {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 35% 25%,
    rgba(215, 181, 111, 0.22),
    rgba(215, 181, 111, 0) 55%
  );
  transform: rotate(10deg);
  opacity: 0.9;
  pointer-events: none;
}

/* Subtle directional chevrons (desktop only) */
@media (min-width: 781px) {
  .trustStep--1::after,
  .trustStep--2::after {
    content: "→";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: rgba(15, 18, 22, 0.22);
  }

  .trustStep--3::after {
    content: "→";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: rgba(15, 18, 22, 0.22);
  }
}

/* Mobile: single column, clean spacing */
@media (max-width: 780px) {
  .trustFlow {
    padding: 12px 12px 14px;
  }
  .trustFlow__grid {
    grid-template-columns: 1fr;
  }
}

/* Ultra small screens: reduce padding so it never feels “fat” */
@media (max-width: 420px) {
  .trustStep {
    padding: 11px 11px;
  }
  .trustStep__badge {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }
}

/* ==========================================================
   GEM INSPECTOR — FULL-BLEED GALLERY RIBBON (Premium)
   Full width • ~5 visible desktop • Seamless loop • Clean tiles
   ========================================================== */

.giRibbon {
  --gi-visible: 5;
  --gi-gap: clamp(14px, 1.2vw, 22px);
  --gi-fade: clamp(90px, 9vw, 160px);
  --gi-pad: clamp(18px, 3vw, 44px);

  /* computed size so only ~5 are visible */
  --gi-card-w: calc(
    (
        100vw - (var(--gi-pad) * 2) - (var(--gi-fade) * 2) -
          (var(--gi-gap) * (var(--gi-visible) - 1))
      ) / var(--gi-visible)
  );
  --gi-card-h: calc(var(--gi-card-w) / 0.7142857);

  padding: 14px 0;
}

/* Full-bleed wrapper */
.giRibbon__bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

/* Viewport spans full width */
.giRibbon__viewport {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 12px 0;
}

/* Track belt */
.giRibbon__track {
  display: flex;
  align-items: center;
  gap: var(--gi-gap);
  width: max-content;

  padding: 10px var(--gi-pad);

  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: giRibbonScroll 44s linear infinite;
}

.giRibbon__viewport:hover .giRibbon__track {
  animation-play-state: paused;
}

/* ==========================================================
     Cards — make the PHOTO feel premium (no tile/matte)
     ========================================================== */

.giRibbon__track img {
  flex: 0 0 auto;
  width: var(--gi-card-w);
  height: var(--gi-card-h);
  display: block;

  /* KEY: fill the tile so slabs look BIG */
  object-fit: cover;
  object-position: center;

  border-radius: 18px;
  background: transparent;

  /* premium depth without “boxed tile” look */
  box-shadow: 0 18px 60px rgba(10, 14, 20, 0.12),
    0 6px 18px rgba(10, 14, 20, 0.08);

  /* subtle clarity (not over-processed) */
  filter: contrast(1.04) saturate(1.03) brightness(1.01);

  transform: translate3d(0, 0, 0);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

/* Gentle hover (quiet luxury) */
.giRibbon__track img:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 28px 92px rgba(10, 14, 20, 0.14),
    0 10px 24px rgba(10, 14, 20, 0.1);
  filter: contrast(1.06) saturate(1.05) brightness(1.02);
}

/* OPTIONAL: adds a very soft “lens” highlight without borders
     (works on <img> via drop-shadow style illusion) */
.giRibbon__track img {
  outline: 1px solid rgba(255, 255, 255, 0.06);
  outline-offset: -1px;
}

/* Seamless loop */
@keyframes giRibbonScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Edge fades */
.giRibbon__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--gi-fade);
  pointer-events: none;
  z-index: 3;
}

/* Auto-match background when supported */
.giRibbon__fade--l {
  left: 0;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, Canvas 96%, transparent) 0%,
    color-mix(in srgb, Canvas 72%, transparent) 48%,
    transparent 100%
  );
}
.giRibbon__fade--r {
  right: 0;
  background: linear-gradient(
    270deg,
    color-mix(in srgb, Canvas 96%, transparent) 0%,
    color-mix(in srgb, Canvas 72%, transparent) 48%,
    transparent 100%
  );
}

/* Fallback (cream) */
@supports not (background: color-mix(in srgb, Canvas 96%, transparent)) {
  .giRibbon__fade--l {
    background: linear-gradient(
      90deg,
      rgba(251, 250, 246, 1) 0%,
      rgba(251, 250, 246, 0.82) 48%,
      rgba(251, 250, 246, 0) 100%
    );
  }
  .giRibbon__fade--r {
    background: linear-gradient(
      270deg,
      rgba(251, 250, 246, 1) 0%,
      rgba(251, 250, 246, 0.82) 48%,
      rgba(251, 250, 246, 0) 100%
    );
  }
}

/* Responsive */
@media (max-width: 820px) {
  .giRibbon {
    --gi-visible: 4;
  }
}

@media (max-width: 520px) {
  .giRibbon {
    --gi-visible: 3;
    --gi-gap: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .giRibbon__track {
    animation: none;
    transform: none;
  }
}

/* =========================
     Services
     ========================= */
.services {
  background: linear-gradient(180deg, var(--navy-900), #0b2840);
  color: #fff;
  padding: 54px 0 60px;
}

.services__header {
  text-align: center;
  margin-bottom: 22px;
}

.services__title {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 950;
  letter-spacing: -0.02em;
}

.services__subtitle {
  margin: 8px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

/* Symmetrical grid */
.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

/* Identical-height cards */
.serviceCard {
  background: rgba(255, 255, 255, 0.96);
  color: #131820;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 56px rgba(10, 18, 26, 0.34);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.serviceCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 74px rgba(10, 18, 26, 0.42);
  border-color: rgba(215, 181, 111, 0.38);
}

.serviceCard__img {
  background: #eef2f5;
  padding: 14px 14px 0;
}

.serviceCard__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

/* Body layout ensures symmetry */
.serviceCard__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.serviceCard__name {
  margin: 4px 0 10px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #121820;
}

.serviceCard__kicker {
  margin: -8px 0 10px;
  font-size: 12px;
  font-weight: 850;
  color: #6a7480;
}

/* Price block (consistent height + centered) */
.price {
  margin: 8px 0 12px;
  border-radius: 18px;
  padding: 12px 12px;
  text-align: center;
  background: rgba(215, 181, 111, 0.16);
  border: 1px solid rgba(215, 181, 111, 0.28);
}

.price__main {
  font-weight: 950;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #151b22;
}

.price__main span {
  font-size: 14px;
  font-weight: 900;
  color: #586371;
}

.price__note {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 850;
  color: #6a7480;
}

.pricingBox {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 18, 22, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.pricingBox__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pricingBox__label {
  font-size: 0.9rem;
  opacity: 0.72;
}

.pricingBox__value {
  font-weight: 700;
}

.pricingBox__note {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.3;
}

.dealerReq {
  margin-top: 10px;
}

/* Description */
.serviceCard__desc {
  margin: 0;
  color: #2b3440;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

/* Button sits at bottom to keep cards symmetrical */
.btn--service {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.02em;
  font-size: 14px;

  /* High contrast + premium */
  background: linear-gradient(180deg, #f7d48a 0%, #d7b56f 50%, #caa45b 100%);
  color: #1b1108;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 14px 28px rgba(202, 164, 91, 0.34);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn--service:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(202, 164, 91, 0.42);
}

.btn--service:active {
  transform: translateY(1px);
}

/* =========================
   Services: Full-width Referral Bar
   ========================= */

.serviceBar {
  margin-top: 18px;
  background: rgba(244, 242, 234, 0.96);
  border: 1px solid rgba(15, 18, 22, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(12, 18, 28, 0.18);
  overflow: hidden;
}

.serviceBar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 18, 22, 0.1);
}

.serviceBar__label {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 18, 22, 0.78);
}

.serviceBar__note {
  font-weight: 700;
  color: rgba(15, 18, 22, 0.62);
  font-size: 13px;
}

.serviceBar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px 16px;
}

.serviceBar__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.serviceBar__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;

  background: rgba(215, 181, 111, 0.18);
  border: 1px solid rgba(215, 181, 111, 0.35);
  color: rgba(15, 18, 22, 0.78);
  white-space: nowrap;
}

.serviceBar__text {
  color: rgba(15, 18, 22, 0.72);
  line-height: 1.55;
}

.serviceBar__actions {
  display: flex;
  justify-content: flex-end;
  min-width: 190px;
}

@media (max-width: 980px) {
  .serviceBar__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .serviceBar__content {
    flex-direction: column;
    align-items: stretch;
  }

  .serviceBar__actions {
    min-width: 0;
  }

  .serviceBar__actions .btn {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .serviceGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .serviceCard__img img {
    height: 190px;
  }
}

/* =========================
   About: Premium Trust Panel
   ========================= */

.about__divider {
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 181, 111, 0.55),
    transparent
  );
  opacity: 0.65;
}

/* Panel shell */
.trustPanel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 18, 22, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 62px rgba(12, 18, 28, 0.12);
}

/* Soft premium atmosphere */
.trustPanel__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 18% 18%,
      rgba(215, 181, 111, 0.18),
      transparent 52%
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 255, 255, 0.22),
      transparent 52%
    ),
    linear-gradient(180deg, rgba(14, 44, 69, 0.06), rgba(14, 44, 69, 0.02));
  pointer-events: none;
}

.trustPanel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  padding: 22px;
}

/* Left */
.trustPanel__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  background: rgba(215, 181, 111, 0.18);
  border: 1px solid rgba(215, 181, 111, 0.38);
  color: rgba(15, 18, 22, 0.78);
}

.trustPanel__title {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(15, 18, 22, 0.95);
}

.trustPanel__subtitle {
  margin: 0 0 14px;
  color: rgba(15, 18, 22, 0.72);
  line-height: 1.65;
  max-width: 60ch;
}

.trustPanel__pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Right */
.trustPanel__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: start;
}

.trustPoint {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  background: rgba(244, 242, 234, 0.55);
}

.trustPoint__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 181, 111, 0.35);
  background: rgba(215, 181, 111, 0.16);
  color: rgba(15, 18, 22, 0.82);
}

.trustPoint__icon svg {
  width: 22px;
  height: 22px;
}

.trustPoint__title {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(15, 18, 22, 0.92);
}

.trustPoint__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 18, 22, 0.72);
}

/* Footline */
.trustPanel__foot {
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.trustPanel__footLabel {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 18, 22, 0.66);
  margin-bottom: 6px;
}

.trustPanel__footText {
  color: rgba(15, 18, 22, 0.72);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .trustPanel__inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

/* Make the panel feel fuller + more premium */
.trustPanel--pro .trustPanel__inner {
  gap: 20px;
  padding: 24px;
}

/* Process strip */
.trustFlow {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 12px;
}

.trustFlow__label {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 18, 22, 0.62);
  margin-bottom: 10px;
}

.trustFlow__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trustStep {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215, 181, 111, 0.28);
  background: rgba(215, 181, 111, 0.12);
}

.trustStep__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 18, 22, 0.55);
}

.trustStep__text {
  font-weight: 700;
  font-size: 13px;
  color: rgba(15, 18, 22, 0.78);
}

/* CTA inside panel */
.trustPanel__cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trustPanel__ctaNote {
  color: rgba(15, 18, 22, 0.62);
  font-size: 14px;
}

/* Micro-proof meta line */
.trustPoint__meta {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(15, 18, 22, 0.58);
  font-weight: 700;
}

/* Make right column feel more “filled” */
.trustPoint {
  padding: 13px 13px;
}

/* Two-column footer */
.trustPanel__footGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.trustPanel__foot--alt {
  background: rgba(244, 242, 234, 0.6);
}

.trustPanel__prevent {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(15, 18, 22, 0.72);
  line-height: 1.55;
}

.trustPanel__prevent li {
  margin: 6px 0;
}

/* Responsive */
@media (max-width: 980px) {
  .trustPanel__footGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
       How it works
       ========================= */
.how {
  background: var(--paper);
  padding: 34px 0 52px;
}

.how__inner {
  position: relative;
}

.how__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.how__left {
  max-width: 720px;
}

.how__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 181, 111, 0.2);
  border: 1px solid rgba(215, 181, 111, 0.55);
  color: #1f2730;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how__title {
  margin: 12px 0 6px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ink);
}

.how__subtitle {
  margin: 0;
  color: #3b4651;
  font-weight: 600;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stepCard {
  background: #fffdf7;
  border-radius: 20px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(215, 181, 111, 0.45);
  box-shadow: 0 12px 28px rgba(12, 18, 28, 0.1);
  min-height: 150px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.stepCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12, 18, 28, 0.14);
  border-color: rgba(215, 181, 111, 0.78);
}

.stepCard__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stepCard__num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(215, 181, 111, 0.22);
  border: 1px solid rgba(215, 181, 111, 0.55);
  color: #212a33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.stepCard__title {
  margin: 0;
  font-weight: 900;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  color: #18202a;
}

.stepCard__text {
  margin: 0;
  color: #2b3440;
  line-height: 1.55;
  font-weight: 600;
  font-size: 13.5px;
}

/* Shipping strip */
.shipBar {
  margin-top: 18px;
  background: #fffdf7;
  border-radius: 20px;
  padding: 16px 16px;
  border: 1px solid rgba(215, 181, 111, 0.45);
  box-shadow: 0 12px 28px rgba(12, 18, 28, 0.08);
}

.shipBar__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.shipBar__label {
  font-weight: 900;
  color: #18202a;
  letter-spacing: 0.02em;
}

.shipBar__note {
  font-size: 12px;
  font-weight: 700;
  color: #5a6673;
}

.shipBar__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipBar__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #1e2630;
}

.shipBar__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(215, 181, 111, 0.18);
  border: 1px solid rgba(215, 181, 111, 0.45);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2730;
}

/* =========================
       Submission Form
       ========================= */
.submit {
  background: var(--paper);
  padding: 42px 0 78px;
}

.submit__header {
  margin-bottom: 16px;
}

.submit__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 181, 111, 0.2);
  border: 1px solid rgba(215, 181, 111, 0.55);
  color: #1f2730;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submit__title {
  margin: 12px 0 6px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #131b22;
}

.submit__subtitle {
  margin: 0;
  color: #3b4651;
  font-weight: 650;
  line-height: 1.55;
  max-width: 760px;
}

/* Quick facts row */
.submit__quickFacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.qf {
  border: 1px solid rgba(215, 181, 111, 0.32);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 22px rgba(12, 18, 28, 0.06);
}

.qf__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #55606c;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.qf__value {
  font-weight: 850;
  color: #1b2430;
  line-height: 1.2;
}

/* Main form card */
.submitForm {
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  border: 1px solid rgba(215, 181, 111, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(12, 18, 28, 0.09);
  padding: 18px;
}

/* Section title */
.submitForm__sectionTitle {
  margin: 16px 0 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1f2730;
}

/* Grids */
.submitForm__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.submitForm__grid--two {
  grid-template-columns: 1.2fr 1fr;
}

/* Submission Details Grid With Pricing Column */
.submitForm__grid--pricing {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px, 280px);
  gap: 16px;
  align-items: start;
}

/* Pricing Column */
.pricingCol {
  display: flex;
  align-items: stretch;
}

/* Pricing Box Styling (Polished) */
.pricingBox {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.65)
  );
  border: 1px solid rgba(15, 18, 22, 0.12);
  box-shadow: 0 6px 20px rgba(15, 18, 22, 0.06);
}

.pricingBox__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pricingBox__label {
  font-size: 0.85rem;
  opacity: 0.7;
}

.pricingBox__value {
  font-weight: 700;
}

.pricingBox__note {
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.3;
  opacity: 0.8;
}

/* Responsive: Stack On Mobile */
@media (max-width: 768px) {
  .submitForm__grid--pricing {
    grid-template-columns: 1fr;
  }

  .pricingCol {
    margin-top: 6px;
  }
}

/* Fields */
.field label {
  display: block;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #1f2730;
  margin-bottom: 6px;
}

.req {
  opacity: 0.8;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 24, 34, 0.12);
  background: #ffffff;
  outline: none;
  font-weight: 650;
  color: #1b2430;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.45;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(27, 36, 48, 0.55);
  font-weight: 600;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(215, 181, 111, 0.95);
  box-shadow: 0 0 0 4px rgba(215, 181, 111, 0.2);
}

/* Helper */
.hint {
  margin-top: 8px;
  font-size: 12px;
  color: #5a6673;
  font-weight: 650;
}

/* Checkbox area */
.submitForm__checks {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(15, 24, 34, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
}

.check input {
  margin-top: 3px;
}

/* Actions */
.submitForm__actions {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.submitForm__note {
  margin: 2px 0 0;
  font-size: 12px;
  color: #5a6673;
  font-weight: 650;
  max-width: 680px;
}

/* Status (hidden until message exists) */
.formStatus {
  display: none;
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 24, 34, 0.12);
  font-weight: 850;
  font-size: 13px;
  color: #1b2430;
  background: #ffffff;
}

.formStatus:not(:empty) {
  display: block;
}

.formStatus--success {
  border-color: rgba(30, 160, 90, 0.35);
  background: rgba(30, 160, 90, 0.1);
}

.formStatus--error {
  border-color: rgba(200, 40, 40, 0.35);
  background: rgba(200, 40, 40, 0.1);
}

.formStatus--info {
  border-color: rgba(215, 181, 111, 0.55);
  background: rgba(215, 181, 111, 0.12);
}

/* Honeypot hidden */
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Dealer two-column fields */
.dealerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .dealerGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
     FAQ
     ========================= */
.faq {
  background: linear-gradient(180deg, var(--navy-900), #0b2840);
  color: #fff;
  padding: 56px 0 62px;
  border-top: 1px solid rgba(215, 181, 111, 0.18);
  border-bottom: 1px solid rgba(215, 181, 111, 0.18);
}

.faq__header {
  text-align: center;
  margin-bottom: 22px;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 181, 111, 0.14);
  border: 1px solid rgba(215, 181, 111, 0.32);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq__title {
  margin: 12px 0 6px;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.faq__subtitle {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

/* Grid */
.faqGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.faqCol {
  display: grid;
  gap: 12px;
}

/* Item */
.faqItem {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 111, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(10, 18, 26, 0.28);
  transition: transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.faqItem:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 181, 111, 0.38);
  filter: brightness(1.02);
}

.faqItem__q {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faqItem__q::-webkit-details-marker {
  display: none;
}

.faqItem__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  position: relative;
  flex: 0 0 18px;
  background: rgba(215, 181, 111, 0.18);
  border: 1px solid rgba(215, 181, 111, 0.35);
}

.faqItem__icon::before,
.faqItem__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  border-radius: 99px;
}

.faqItem__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.18s ease;
}

.faqItem[open] .faqItem__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Answer */
.faqItem__a {
  padding: 0 16px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  line-height: 1.6;
  font-size: 13.5px;
}

.faqItem__a strong {
  color: #fff;
  font-weight: 900;
}

/* Footer callout */
.faq__footer {
  margin-top: 18px;
}

.faqCallout {
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 181, 111, 0.26);
  box-shadow: 0 22px 62px rgba(10, 18, 26, 0.32);
  text-align: center;
}

.faqCallout__title {
  font-weight: 950;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.faqCallout__text {
  margin: 0 auto;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.65;
  font-size: 13.5px;
}

.faqCallout__actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
  .faqGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Footer 
   ========================= */

.footer--dark {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900), #0b2840);
  color: rgba(255, 255, 255, 0.86);
  padding: 30px 0 0;
  overflow: hidden;
}

/* Thin gold top line */
.footer--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(215, 181, 111, 0),
    rgba(215, 181, 111, 0.85),
    rgba(215, 181, 111, 0)
  );
  box-shadow: 0 0 6px rgba(215, 181, 111, 0.45),
    0 0 14px rgba(215, 181, 111, 0.25);
  pointer-events: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
  padding: 0 0 22px;
}

/* Brand */
.footer__name {
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
}

.footer__tagline {
  margin-top: 6px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  max-width: 560px;
}

.footer__notes {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.footer__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__note--dim {
  color: rgba(255, 255, 255, 0.6);
}

/* Right side */
.footer__right {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer__link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.01em;
  position: relative;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0%;
  background: rgba(215, 181, 111, 0.8);
  transition: width 180ms ease;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer__link:hover::after {
  width: 100%;
}

/* Contact */
.footer__contact {
  text-align: right;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(215, 181, 111, 0.22);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.footer__contactLabel {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(215, 181, 111, 0.9);
  margin-bottom: 6px;
}

.footer__email {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.footer__email:hover {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: underline;
  text-decoration-color: rgba(215, 181, 111, 0.85);
  text-underline-offset: 3px;
}

/* Bottom bar (tight, like Summons) */
.footer__bar {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.footer__barInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 650;
}

.footer__creditLink {
  color: rgba(215, 181, 111, 0.92);
  text-decoration: none;
  font-weight: 900;
}

.footer__creditLink:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(215, 181, 111, 0.85);
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 980px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__right {
    justify-items: start;
  }
  .footer__nav {
    justify-content: flex-start;
  }
  .footer__contact {
    text-align: left;
    width: 100%;
  }
  .footer__barInner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.footer__icon svg {
  width: 18px;
  height: 18px;
}

.footer__icon:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

/* =========================
       Responsive (Global)
       ========================= */
@media (max-width: 980px) {
  .statsWrap {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .how__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .shipBar__head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .submitForm__grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .submit__quickFacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

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

  .submitForm {
    padding: 14px;
  }

  .submitForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
