:root {
  /* ===== Premium Base (Champagne + Soft Pearl) ===== */
  --cf-bg: #fbfaf8;
  /* warm pearl */
  --cf-bg-2: #f6f3ee;
  /* champagne haze */
  --cf-surface: rgba(255, 255, 255, 0.78);
  --cf-surface-strong: rgba(255, 255, 255, 0.90);
  --cf-border: rgba(15, 23, 42, 0.10);

  /* Text */
  --cf-text: #0b1220;
  /* richer than #0f172a */
  --cf-text-2: rgba(11, 18, 32, 0.74);
  --cf-muted: rgba(11, 18, 32, 0.56);

  /* ===== Metallics (better gold) ===== */
  --cf-gold: #d6b25f;
  /* warm gold */
  --cf-gold-2: #b8892f;
  /* deeper antique gold */
  --cf-gold-3: #f3e4b7;
  /* highlight */
  --cf-champagne: #efe2c8;
  /* background warmth */

  /* Accent counter-tone (tiny but powerful) */
  --cf-ink: #0b1220;
  --cf-ink-2: #1a2b44;
  /* navy sheen */
  --cf-aqua: rgba(45, 212, 191, 0.18);
  /* subtle modern lift */
  --cf-blue: rgba(59, 130, 246, 0.14);
  /* cool counter-glow */

  /* Shadows (slightly richer) */
  --cf-shadow: 0 24px 70px rgba(11, 18, 32, 0.10);
  --cf-shadow-soft: 0 14px 44px rgba(11, 18, 32, 0.08);

  --cf-radius: 18px;
  --cf-radius-sm: 14px;
  --cf-blur: 16px;

  --cf-container: 1200px;
  --cf-pad-x: 20px;

  /* Headings (swap from "legal navy" -> luxury ink) */
  --cf-heading-primary: #0b1220;
  --cf-heading-secondary: #1a2b44;
  --cf-heading-accent: var(--cf-gold);

  /* Dropdown stays compatible */
  --cf-dd-blur: 18px;
  --cf-dd-radius: 18px;
  --cf-dd-border: rgba(11, 18, 32, 0.12);
  --cf-dd-shadow: 0 28px 90px rgba(11, 18, 32, 0.18);
  --cf-dd-text: rgba(11, 18, 32, 0.92);
  --cf-dd-muted: rgba(11, 18, 32, 0.60);
  --cf-dd-accent: rgba(214, 178, 95, 0.92);
  --cf-dd-accent-soft: rgba(214, 178, 95, 0.16);

  /* ===== Addons you can reuse in components ===== */
  --cf-sheen: linear-gradient(135deg, rgba(243, 228, 183, 0.65), rgba(214, 178, 95, 0.22), rgba(255, 255, 255, 0.40));
  --cf-glass: rgba(255, 255, 255, 0.72);
  --cf-glass-2: rgba(255, 255, 255, 0.82);
  --cf-ring: 0 0 0 4px rgba(214, 178, 95, 0.16);

  --cf-font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --cf-font-display: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

}

body {
  margin: 0;
  color: var(--cf-text);
  font-family: var(--cf-font-body);
  font-size: 16px;
  line-height: 1.6;

  /* Base */
  background:
    radial-gradient(1200px 820px at 10% 0%, rgba(214, 178, 95, 0.16), transparent 58%),
    radial-gradient(900px 720px at 92% 6%, rgba(59, 130, 246, 0.10), transparent 60%),
    radial-gradient(900px 760px at 52% 110%, rgba(45, 212, 191, 0.08), transparent 62%),
    linear-gradient(180deg, var(--cf-bg) 0%, var(--cf-bg-2) 55%, #ffffff 100%);
}

/* Ambient “bokeh + sheen” layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    /* soft bokeh */
    radial-gradient(220px 220px at 18% 18%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(280px 280px at 28% 42%, rgba(214, 178, 95, 0.22), transparent 62%),
    radial-gradient(240px 240px at 72% 26%, rgba(255, 255, 255, 0.40), transparent 60%),
    radial-gradient(320px 320px at 86% 42%, rgba(59, 130, 246, 0.10), transparent 64%),
    radial-gradient(420px 420px at 55% 78%, rgba(214, 178, 95, 0.12), transparent 66%),
    /* subtle diagonal sheen */
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 45%, rgba(255, 255, 255, 0.08) 60%, transparent 78%);
  opacity: 0.95;
  filter: blur(0px);
}

/* Optional “film grain” feel (very light) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0, rgba(0, 0, 0, 0.35) 1px, transparent 1px, transparent 2px);
  mix-blend-mode: soft-light;
}

body.cf-lock {
  overflow: hidden;
}


/* Luxury heading feel */
/* Luxury serif headings */
h1,
h2,
h3,
.cf-hero-title,
.cf-process-title,
.cf-intro-title,
.cc-404-code,
.cc-404-title {
  font-family: var(--cf-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}


/* =========================
   CASHFORWATCHES HEADER v2026
   Trust strip + floating glass dock + bottom sheet mobile
========================= */

.cf-header {
  position: sticky;
  top: 0;
  z-index: 3000;
}

/* ===== Trust strip ===== */
.cf-header .cf-trust {
  background: rgba(255, 255, 255, 0.56);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cf-blur));
  -webkit-backdrop-filter: blur(var(--cf-blur));
}

.cf-header .cf-trust .cf-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.cf-header .cf-trust .cf-trust-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


.cf-header .cf-trust .cf-trust-pill{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  /* premium glass + ink */
  background:
    radial-gradient(180px 80px at 20% 0%, rgba(215,180,106,0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,247,252,0.82));

  border: 1px solid rgba(215,180,106,0.32);

  color: rgba(15,23,42,0.88);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  box-shadow:
    0 12px 34px rgba(15,23,42,0.10),
    inset 0 1px 0 rgba(255,255,255,0.8);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

/* gold micro-divider for icon */
.cf-header .cf-trust .cf-trust-pill i{
  position: relative;
  z-index: 1;
  color: #c9a24d;
  opacity: 0.95;
}



/* engraved edge */
.cf-header .cf-trust .cf-trust-pill::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events:none;
}

/* subtle hover polish */
.cf-header .cf-trust .cf-trust-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(215,180,106,0.55);

  background:
    radial-gradient(220px 90px at 18% 0%, rgba(215,180,106,0.30), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(248,250,252,0.95));

  box-shadow:
    0 18px 50px rgba(15,23,42,0.16),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.cf-header .cf-trust .cf-trust-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: rgba(15, 23, 42, 0.70);
}

.cf-header .cf-trust .cf-trust-link {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cf-header .cf-trust .cf-trust-link:hover {
  color: rgba(15, 23, 42, 0.95);
}

.cf-header .cf-trust .cf-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
}

/* ===== Main bar wrap ===== */
.cf-header .cf-bar-wrap {
  background: rgba(255, 255, 255, 0.70);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cf-blur));
  -webkit-backdrop-filter: blur(var(--cf-blur));
}

.cf-header .cf-bar {
     display: flex;
    justify-content: space-between;
    align-items: center;
     gap: 14px;
  padding: 14px 0;
}

/* Brand */
.cf-header .cf-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cf-header .cf-logo {
  width: 250px;
  height: auto;
  display: block;
  margin-bottom:-80px;
  margin-top:-40px;
}

/* ===== Floating Glass Dock (center) ===== */
.cf-header .cf-dock {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  /*
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 18px 55px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(calc(var(--cf-blur) + 4px));
  -webkit-backdrop-filter: blur(calc(var(--cf-blur) + 4px));
  */
  position: relative;
}

/* subtle gold sheen that moves with hover (modern) */
.cf-header .cf-dock::before {
  content: "";
  position: absolute;
  inset: -40px -80px;
  background:
    radial-gradient(420px 220px at 30% 30%, rgba(215, 180, 106, 0.22), transparent 60%),
    radial-gradient(360px 220px at 80% 40%, rgba(15, 23, 42, 0.08), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}

.cf-header .cf-dock .cf-dock-link {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cf-header .cf-dock .cf-dock-link:hover {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

/* Actions */
.cf-header .cf-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cf-header .cf-actions .cf-action {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.cf-header .cf-actions .cf-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.14);
}

.cf-header .cf-actions .cf-action .cf-action-ico {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.cf-header .cf-actions .cf-action .cf-action-text {
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
}




/* Primary CTA (gold) */
.cf-header .cf-actions .cf-action-primary {
  border-color: rgba(215, 180, 106, 0.36);
  background: linear-gradient(135deg, rgba(246, 230, 180, 0.50), rgba(201, 162, 77, 0.26));
}

.cf-header .cf-actions .cf-action-primary .cf-action-ico {
  border-color: rgba(215, 180, 106, 0.35);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.32), rgba(255, 255, 255, 0.70));
}

/* Mobile toggle */
.cf-header .cf-toggle {
  height: 52px;
  width: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
  cursor: pointer;
  display: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cf-header .cf-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

.cf-header .cf-toggle .cf-toggle-ico {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile bottom sheet ===== */
.cf-header .cf-mobile {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 99999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cf-header .cf-mobile .cf-mobile-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(86vh, 760px);
  border-radius: 26px 26px 0 0;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 -40px 120px rgba(15, 23, 42, 0.30);
  transform: translateY(102%);
  transition: transform 320ms cubic-bezier(.2, .9, .2, 1);
  overflow: hidden;
}

.cf-header .cf-mobile.cf-open {
  opacity: 1;
  pointer-events: auto;
}

.cf-header .cf-mobile.cf-open .cf-mobile-sheet {
  transform: translateY(0);
}

.cf-header .cf-mobile .cf-mobile-grab {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  margin: 10px auto 0 auto;
}

.cf-header .cf-mobile .cf-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.cf-header .cf-mobile .cf-mobile-logo {
  width: 170px;
  height: auto;
  display: block;
}

.cf-header .cf-mobile .cf-mobile-close {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
  cursor: pointer;
}

.cf-header .cf-mobile .cf-mobile-body {
  padding: 16px;
  display: grid;
  gap: 14px;
  overflow: auto;
  height: calc(100% - 70px);
}

.cf-header .cf-mobile .cf-mobile-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cf-header .cf-mobile .cf-mobile-cta {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.cf-header .cf-mobile .cf-mobile-cta-primary {
  border-color: rgba(215, 180, 106, 0.36);
  background: linear-gradient(135deg, rgba(246, 230, 180, 0.55), rgba(201, 162, 77, 0.26));
}

.cf-header .cf-mobile .cf-mobile-links {
  display: grid;
  gap: 10px;
}

.cf-header .cf-mobile .cf-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  color: rgba(15, 23, 42, 0.95);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.cf-header .cf-mobile .cf-mobile-link:hover {
  background: rgba(215, 180, 106, 0.14);
  border-color: rgba(215, 180, 106, 0.22);
}

.cf-header .cf-mobile .cf-mobile-foot {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
}

.cf-header .cf-mobile .cf-mobile-note {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.74);
  font-weight: 800;
  line-height: 1.55;
}

.cf-header .cf-mobile .cf-mobile-map {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  color: rgba(15, 23, 42, 0.90);
  font-weight: 800;
  line-height: 1.35;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .cf-header .cf-dock {
    display: none;
  }

  .cf-header .cf-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .cf-header .cf-logo {
    width: 210px;
  }
}

@media (max-width: 520px) {
  .cf-header .cf-trust .cf-trust-right {
    display: none;
  }

  .cf-header .cf-actions .cf-action .cf-action-text {
    display: none;
  }

  .cf-header .cf-actions .cf-action {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .cf-header .cf-mobile .cf-mobile-cta-row {
    grid-template-columns: 1fr;
  }

  .cf-header .cf-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cf-header .cf-bar{ padding: 20px;}
  .cf-header .cf-trust{display:none;}


}

/* =========================
   CASHFORWATCHES HERO (cf-)
   Dark full width + background-ready
========================= */

.cf-hero {
  position: relative;
  overflow: hidden;
  background: #070A10;
  color: rgba(255, 255, 255, 0.92);
}

/* Background image layer (you'll add watch image) */
.cf-hero .cf-hero-bg {
  position: absolute;
  inset: 0;
  background-image: none;
  /* <-- add your watch url(...) */
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  opacity: 0.95;
  background-image: url('../img/hero-watch-bg.webp');
}

/* Subtle moving hero background */
.cf-hero .cf-hero-bg {
  animation: cfHeroBgMove 28s ease-in-out infinite;
  will-change: transform, background-position;
}

@keyframes cfHeroBgMove {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
    background-position: 50% 50%;
  }
  50% {
    transform: scale(1.06) translate3d(-2%, 1.5%, 0);
    background-position: 54% 46%;
  }
  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
    background-position: 50% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-hero .cf-hero-bg {
    animation: none;
  }
}

/* Readability shading + gold/ink ambience */
.cf-hero .cf-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 540px at 18% 22%, rgba(215, 180, 106, 0.18), transparent 62%),
    radial-gradient(820px 520px at 84% 24%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(900px 700px at 70% 92%, rgba(15, 23, 42, 0.72), transparent 64%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.72) 0%, rgba(7, 10, 16, 0.92) 55%, rgba(7, 10, 16, 0.98) 100%);
  pointer-events: none;
}

.cf-hero {
  background: #070A10;
  position: relative;
  overflow: hidden;
}

.cf-hero .cf-hero-shade {
  background:
    radial-gradient(1100px 640px at 18% 22%, rgba(214, 178, 95, 0.22), transparent 62%),
    radial-gradient(980px 520px at 82% 18%, rgba(255, 255, 255, 0.10), transparent 62%),
    radial-gradient(900px 620px at 72% 90%, rgba(26, 43, 68, 0.55), transparent 64%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.62) 0%, rgba(7, 10, 16, 0.92) 60%, rgba(7, 10, 16, 0.98) 100%);
}

.cf-hero .cf-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 6vw, 74px) 0;
}

.cf-hero .cf-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: center;
}

/* Copy */
.cf-hero .cf-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.cf-hero .cf-hero-kicker .cf-hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cf-hero .cf-hero-title {
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(36px, 4.6vw, 64px);
  margin: 0 0 12px;
}

.cf-hero .cf-hero-title .cf-hero-title-accent {
  background: linear-gradient(135deg, rgba(246, 230, 180, 0.95), rgba(201, 162, 77, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cf-hero .cf-hero-sub {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
}

.cf-hero .cf-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Buttons */
.cf-hero .cf-hero-btn {
  height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cf-hero .cf-hero-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.cf-hero .cf-hero-btn .cf-hero-btn-ico {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.cf-hero .cf-hero-btn-primary {
  border-color: rgba(215, 180, 106, 0.30);
  background: linear-gradient(135deg, rgba(246, 230, 180, 0.16), rgba(201, 162, 77, 0.08));
}

.cf-hero .cf-hero-btn-primary .cf-hero-btn-ico {
  border-color: rgba(215, 180, 106, 0.28);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.20), rgba(255, 255, 255, 0.06));
}

/* Meta */
.cf-hero .cf-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 680px;
}

.cf-hero .cf-hero-meta .cf-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cf-hero .cf-hero-meta .cf-hero-meta-ico {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.cf-hero .cf-hero-meta .cf-hero-meta-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

/* Right card (glass on dark) */
.cf-hero .cf-hero-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.cf-hero .cf-hero-card .cf-hero-card-top {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(520px 240px at 20% 10%, rgba(215, 180, 106, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.03);
}

.cf-hero .cf-hero-card .cf-hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  background: rgba(215, 180, 106, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.cf-hero .cf-hero-card .cf-hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(215, 180, 106, 0.95);
  box-shadow: 0 0 0 6px rgba(215, 180, 106, 0.14);
}

.cf-hero .cf-hero-card .cf-hero-card-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.01em;
}

.cf-hero .cf-hero-card .cf-hero-card-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.cf-hero .cf-hero-form {
  padding: 16px 18px 18px;
  display: grid;
  gap: 12px;
}

.cf-hero .cf-hero-field {
  display: grid;
  gap: 7px;
}

.cf-hero .cf-hero-field.cf-hero-field-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cf-hero .cf-hero-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.78);
}

.cf-hero .cf-hero-input {
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.20);
  color: rgba(255, 255, 255, 0.92);
  padding: 0 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cf-hero .cf-hero-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.cf-hero .cf-hero-input:focus {
  border-color: rgba(215, 180, 106, 0.40);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.14);
}

.cf-hero .cf-hero-submit {
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(215, 180, 106, 0.32);
  background: linear-gradient(135deg, rgba(246, 230, 180, 0.34), rgba(201, 162, 77, 0.16));
  color: rgba(255, 255, 255, 0.94);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-hero .cf-hero-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  border-color: rgba(215, 180, 106, 0.44);
}

.cf-hero .cf-hero-card-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.cf-hero .cf-hero-card-foot .cf-hero-card-foot-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.76);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .cf-hero .cf-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cf-hero .cf-hero-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cf-hero .cf-hero-cta {
    flex-direction: column;
  }

  .cf-hero .cf-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .cf-hero .cf-hero-field.cf-hero-field-split {
    grid-template-columns: 1fr;
  }

  .cf-hero .cf-hero-card-foot {
    grid-template-columns: 1fr;
  }
  .cf-hero{
    padding: clamp(24px, 8vw, 48px) 16px;
  }
}

/* =========================
   HERO v2 — premium readability + non-instant language support
========================= */

/* background image hooks */
.cf-hero .cf-hero-bg {
  /* You add your watch background here */
  background-position: right center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.05);
}

/* richer shade = better legibility on bright watch photos */
.cf-hero .cf-hero-shade {
  background:
    radial-gradient(1200px 720px at 18% 18%, rgba(214, 178, 95, 0.24), transparent 62%),
    radial-gradient(900px 620px at 82% 22%, rgba(255, 255, 255, 0.10), transparent 62%),
    radial-gradient(900px 680px at 70% 92%, rgba(26, 43, 68, 0.58), transparent 65%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.66) 0%, rgba(7, 10, 16, 0.90) 58%, rgba(7, 10, 16, 0.98) 100%);
}

/* copy column: add subtle glow so text feels expensive */
.cf-hero .cf-hero-copy {
  text-shadow: 0 18px 80px rgba(0, 0, 0, 0.55);
}

/* title accent: more metallic */
.cf-hero .cf-hero-title .cf-hero-title-accent {
  background: linear-gradient(135deg, rgba(243, 228, 183, 1), rgba(214, 178, 95, 0.95), rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* kicker pills: brighter, more glass */
.cf-hero .cf-hero-kicker .cf-hero-kicker-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* CTA buttons: clearer hierarchy */
.cf-hero .cf-hero-btn-primary {
  border-color: rgba(214, 178, 95, 0.38);
  background:
    radial-gradient(420px 180px at 18% 0%, rgba(243, 228, 183, 0.26), transparent 62%),
    linear-gradient(135deg, rgba(214, 178, 95, 0.18), rgba(255, 255, 255, 0.06));
}

.cf-hero .cf-hero-btn-primary:hover {
  border-color: rgba(214, 178, 95, 0.55);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
}

/* card: make it feel like luxury glass, not a generic panel */
.cf-hero .cf-hero-card {
  background:
    radial-gradient(640px 280px at 18% 0%, rgba(214, 178, 95, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 55px 140px rgba(0, 0, 0, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* badge: make it clearly "reviewed", not instant */
.cf-hero .cf-hero-card .cf-hero-card-badge {
  border-color: rgba(214, 178, 95, 0.28);
  background: rgba(214, 178, 95, 0.12);
}

/* inputs: slightly brighter so they read on dark */
.cf-hero .cf-hero-input {
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.16);
}

.cf-hero .cf-hero-input:focus {
  border-color: rgba(214, 178, 95, 0.48);
  box-shadow: 0 0 0 4px rgba(214, 178, 95, 0.14);
}

/* submit: make it feel like a "gold action" */
.cf-hero .cf-hero-submit {
  border-color: rgba(214, 178, 95, 0.44);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(243, 228, 183, 0.26), transparent 62%),
    linear-gradient(135deg, rgba(214, 178, 95, 0.22), rgba(255, 255, 255, 0.06));
}

.cf-hero .cf-hero-submit:hover {
  border-color: rgba(214, 178, 95, 0.62);
}

/* fineprint line */
.cf-hero .cf-hero-fineprint {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
  max-width: 62ch;
}

/* mobile polish */
@media (max-width: 992px) {
  .cf-hero .cf-hero-bg {
    background-position: center;
  }
}


/* =========================
   CASHFORWATCHES PROCESS (cf-)
   Trust strip + 3-step cards
========================= */

.cf-process {
  position: relative;
  padding: 56px 0;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(215, 180, 106, 0.10), transparent 60%),
    radial-gradient(900px 520px at 100% 10%, rgba(15, 23, 42, 0.06), transparent 58%),
    linear-gradient(180deg, rgba(7, 10, 16, 1) 0%, rgba(247, 248, 251, 1) 62%);
}

/* inner spacing */
.cf-process .cf-process-inner {
  position: relative;
}

/* trust strip */
.cf-process .cf-process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.30);
  margin-bottom: 26px;
}

.cf-process .cf-process-strip .cf-process-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
}

.cf-process .cf-process-strip .cf-process-strip-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 180, 106, 0.22);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.92);
}

.cf-process .cf-process-strip .cf-process-strip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cf-process .cf-process-strip .cf-process-strip-text strong {
  font-weight: 1000;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
}

.cf-process .cf-process-strip .cf-process-strip-text span {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

/* section heading */
.cf-process .cf-process-head {
  max-width: 920px;
  margin: 0 auto 18px auto;
  text-align: center;
}

.cf-process .cf-process-kicker {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.60);
  margin-bottom: 8px;
}

.cf-process .cf-process-title {
  margin: 0 0 10px 0;
  font-size: clamp(26px, 3.0vw, 40px);
  line-height: 1.12;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
}

.cf-process .cf-process-sub {
  margin: 0 auto;
  max-width: 78ch;
  color: rgba(15, 23, 42, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

/* cards */
.cf-process .cf-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.cf-process .cf-process-card {
  height: 100%;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cf-process .cf-process-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.14);
  border-color: rgba(215, 180, 106, 0.24);
  background: rgba(255, 255, 255, 0.84);
}

.cf-process .cf-process-card .cf-process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cf-process .cf-process-stepno {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.82);
}

.cf-process .cf-process-ico {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 180, 106, 0.26);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(255, 255, 255, 0.62));
  color: rgba(15, 23, 42, 0.90);
}

.cf-process .cf-process-card-title {
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: rgba(15, 23, 42, 0.95);
}

.cf-process .cf-process-card-text {
  color: rgba(15, 23, 42, 0.70);
  font-size: 13px;
  line-height: 1.7;
}

.cf-process .cf-process-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.cf-process .cf-process-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.82);
}

/* CTA row */
.cf-process .cf-process-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.cf-process .cf-process-btn {
  height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-process .cf-process-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
}

.cf-process .cf-process-btn .cf-process-btn-ico {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
}

.cf-process .cf-process-btn-primary {
  border-color: rgba(215, 180, 106, 0.28);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.20), rgba(255, 255, 255, 0.78));
}

/* responsive */
@media (max-width: 992px) {
  .cf-process .cf-process-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cf-process .cf-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cf-process .cf-process-strip {
    grid-template-columns: 1fr;
  }

  .cf-process .cf-process-cta {
    flex-direction: column;
  }

  .cf-process .cf-process-btn {
    width: 100%;
    justify-content: center;
  }
}



/* =========================
   CASHFORWATCHES INTRO (cf-)
   Trust metrics + intro copy
========================= */

.cf-intro {
  position: relative;
  padding: 56px 0;
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(215, 180, 106, 0.14), transparent 60%),
    radial-gradient(900px 520px at 100% 10%, rgba(15, 23, 42, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 16, 1) 0%, rgba(10, 14, 22, 1) 38%, rgba(247, 248, 251, 1) 100%);
}

.cf-intro .cf-intro-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

/* metrics block */
.cf-intro .cf-intro-metrics {
  display: grid;
  gap: 12px;
}

.cf-intro .cf-intro-metric {
  border-radius: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cf-intro .cf-intro-metric:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 180, 106, 0.22);
  background: rgba(255, 255, 255, 0.075);
}

.cf-intro .cf-intro-metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cf-intro .cf-intro-metric-ico {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 180, 106, 0.22);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.16), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.94);
}

.cf-intro .cf-intro-metric-value {
  font-weight: 1100;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
}

.cf-intro .cf-intro-metric-label {
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.cf-intro .cf-intro-metric-sub {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

/* content block */
.cf-intro .cf-intro-content {
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
}

.cf-intro .cf-intro-kicker {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.60);
  margin-bottom: 8px;
}

.cf-intro .cf-intro-title {
  margin: 0 0 10px 0;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.12;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
}

.cf-intro .cf-intro-text {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.74);
}

.cf-intro .cf-intro-points {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: grid;
  gap: 10px;
}

.cf-intro .cf-intro-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.86);
}

.cf-intro .cf-intro-point i {
  opacity: 0.9;
}

/* soft actions (not big buttons) */
.cf-intro .cf-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.cf-intro .cf-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.90);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.74);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-intro .cf-intro-link:hover {
  transform: translateY(-1px);
  background: rgba(215, 180, 106, 0.14);
  border-color: rgba(215, 180, 106, 0.22);
}

/* responsive */
@media (max-width: 992px) {
  .cf-intro .cf-intro-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cf-intro {
    padding: 46px 0;
  }

  .cf-intro .cf-intro-actions {
    flex-direction: column;
  }

  .cf-intro .cf-intro-link {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   CASHFORWATCHES INTRO (cf-)
   Bright premium gradient
========================= */

.cf-intro {
  position: relative;
  padding: 66px 0;
  background:
    radial-gradient(980px 540px at 18% 10%, rgba(215, 180, 106, 0.20), transparent 62%),
    radial-gradient(820px 520px at 92% 14%, rgba(45, 212, 191, 0.10), transparent 60%),
    radial-gradient(920px 620px at 50% 100%, rgba(59, 130, 246, 0.10), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 52%, rgba(245, 247, 252, 1) 100%);
}

/* metrics cards: convert from dark-glass -> light-glass */
.cf-intro .cf-intro-metric {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 60px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.cf-intro .cf-intro-metric:hover {
  border-color: rgba(215, 180, 106, 0.22);
  background: rgba(255, 255, 255, 0.86);
}

/* icon tile: keep gold, but readable on light */
.cf-intro .cf-intro-metric-ico {
  border: 1px solid rgba(215, 180, 106, 0.26);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.22), rgba(255, 255, 255, 0.85));
  color: rgba(15, 23, 42, 0.90);
}

/* metric text: flip to dark */
.cf-intro .cf-intro-metric-value {
  color: rgba(15, 23, 42, 0.95);
}

.cf-intro .cf-intro-metric-label {
  color: rgba(15, 23, 42, 0.68);
}

.cf-intro .cf-intro-metric-sub {
  color: rgba(15, 23, 42, 0.62);
}

/* content panel: slightly richer than metrics */
.cf-intro .cf-intro-content {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(215, 180, 106, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.10);
}


.cf-intro {
  background:
    radial-gradient(980px 540px at 18% 10%, rgba(214, 178, 95, 0.22), transparent 62%),
    radial-gradient(900px 520px at 92% 12%, rgba(59, 130, 246, 0.12), transparent 62%),
    radial-gradient(980px 620px at 50% 112%, rgba(45, 212, 191, 0.08), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
}

/* metrics: light glass cards */
.cf-intro .cf-intro-metric {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.10);
}

.cf-intro .cf-intro-metric-ico {
  color: rgba(11, 18, 32, 0.92);
  background: var(--cf-sheen);
  border-color: rgba(214, 178, 95, 0.28);
}

.cf-intro .cf-intro-metric-value {
  color: rgba(11, 18, 32, 0.95);
}

.cf-intro .cf-intro-metric-label {
  color: rgba(11, 18, 32, 0.68);
}

.cf-intro .cf-intro-metric-sub {
  color: rgba(11, 18, 32, 0.62);
}


/* =========================
   CASHFORWATCHES PROCESS (cf-)
   Bright gradient + standout strip
========================= */

.cf-process {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(1000px 560px at 16% 0%, rgba(215, 180, 106, 0.18), transparent 60%),
    radial-gradient(880px 560px at 96% 16%, rgba(59, 130, 246, 0.10), transparent 58%),
    radial-gradient(980px 620px at 50% 115%, rgba(99, 102, 241, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(245, 247, 252, 1) 0%, rgba(255, 255, 255, 1) 42%, rgba(248, 250, 252, 1) 100%);
}

/* trust strip: make it pop on light backgrounds */
.cf-process .cf-process-strip {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.14), rgba(255, 255, 255, 0.86));
  box-shadow:
    0 22px 70px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

/* strip items: light glass */
.cf-process .cf-process-strip .cf-process-strip-item {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.74);
}

/* strip icon: gold glass */
.cf-process .cf-process-strip .cf-process-strip-ico {
  border: 1px solid rgba(215, 180, 106, 0.26);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.20), rgba(255, 255, 255, 0.84));
  color: rgba(15, 23, 42, 0.92);
}

/* strip text: flip to dark */
.cf-process .cf-process-strip .cf-process-strip-text strong {
  color: rgba(15, 23, 42, 0.92);
}

.cf-process .cf-process-strip .cf-process-strip-text span {
  color: rgba(15, 23, 42, 0.60);
}

/* cards: slightly richer + more depth */
.cf-process .cf-process-card {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
    radial-gradient(420px 180px at 22% 0%, rgba(215, 180, 106, 0.10), transparent 62%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
}

.cf-process .cf-process-card:hover {
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.14);
  border-color: rgba(215, 180, 106, 0.26);
  background:
    radial-gradient(520px 220px at 22% 0%, rgba(215, 180, 106, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.90);
}

/* CTA buttons: keep subtle, premium */
.cf-process .cf-process-btn {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 23, 42, 0.12);
}

.cf-process .cf-process-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.cf-process .cf-process-btn-primary {
  border-color: rgba(215, 180, 106, 0.30);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.22), rgba(255, 255, 255, 0.90));
}

.cf-intro::before,
.cf-process::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 180, 106, 0.38), transparent);
  opacity: 0.9;
  pointer-events: none;
}


.cf-process {
  background:
    radial-gradient(1000px 560px at 12% 0%, rgba(214, 178, 95, 0.18), transparent 60%),
    radial-gradient(1000px 560px at 96% 10%, rgba(59, 130, 246, 0.10), transparent 62%),
    radial-gradient(900px 620px at 50% 115%, rgba(45, 212, 191, 0.08), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 55%, #ffffff 100%);
}

/* strip becomes bright, not black */
.cf-process .cf-process-strip {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(214, 178, 95, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 70px rgba(11, 18, 32, 0.10);
}

.cf-process .cf-process-strip .cf-process-strip-item {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.78);
}

.cf-process .cf-process-strip .cf-process-strip-ico {
  color: rgba(11, 18, 32, 0.92);
  background: var(--cf-sheen);
  border-color: rgba(214, 178, 95, 0.28);
}

.cf-process .cf-process-strip .cf-process-strip-text strong {
  color: rgba(11, 18, 32, 0.92);
}

.cf-process .cf-process-strip .cf-process-strip-text span {
  color: rgba(11, 18, 32, 0.62);
}


/* =========================
   CASHFORWATCHES FOOTER v2 (cf-)
   Premium spotlight band + clean layout
========================= */

.cf-footer {
  position: relative;
  padding: 76px 0 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(1100px 520px at 14% 0%, rgba(215, 180, 106, 0.22), transparent 62%),
    radial-gradient(1000px 520px at 90% 10%, rgba(59, 130, 246, 0.12), transparent 60%),
    radial-gradient(1000px 560px at 50% 120%, rgba(45, 212, 191, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(245, 247, 252, 1) 100%);
  overflow: hidden;
}

/* subtle premium noise (looks expensive, not flat) */
.cf-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}



/* =========================
   FOOTER TOP BAND (cf-)
   Premium single-column closer
========================= */

.cf-footer .cf-footer-top{
  position: relative;
  padding: 22px 22px 18px;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(820px 320px at 14% 0%, rgba(215,180,106,0.18), transparent 62%),
    radial-gradient(760px 320px at 92% 10%, rgba(59,130,246,0.10), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.78) 100%);
  box-shadow:
    0 26px 90px rgba(15,23,42,0.10),
    inset 0 1px 0 rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

/* subtle luxe sheen (quiet, not “busy”) */
.cf-footer .cf-footer-top::before{
  content:"";
  position: absolute;
  inset: -60px -100px auto -100px;
  height: 220px;
  background:
    radial-gradient(520px 220px at 28% 40%, rgba(255,255,255,0.26), transparent 62%),
    radial-gradient(520px 220px at 62% 60%, rgba(215,180,106,0.16), transparent 64%);
  opacity: 0.75;
  pointer-events: none;
  transform: rotate(-6deg);
}

.cf-footer .cf-footer-top-single{
  display: grid;
  gap: 14px;
}

/* kicker */
.cf-footer .cf-footer-top-kicker{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.68);
}

.cf-footer .cf-footer-top-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(215,180,106,0.95);
  box-shadow: 0 0 0 7px rgba(215,180,106,0.14);
}

.cf-footer .cf-footer-top-sep{
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15,23,42,0.20);
  opacity: 0.8;
}

/* head row: title + actions */
.cf-footer .cf-footer-top-head{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

/* title */
.cf-footer .cf-footer-top-title{
  margin: 0;
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.12;
  font-weight: 1150;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,0.96);
  max-width: 46ch;
}

/* actions (quiet, premium) */
.cf-footer .cf-footer-top-actions{
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cf-footer .cf-footer-top-link{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(215,180,106,0.28);
  background:
    linear-gradient(135deg, rgba(215,180,106,0.16), rgba(255,255,255,0.70));
  color: rgba(15,23,42,0.92);
  font-weight: 1100;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 16px 54px rgba(15,23,42,0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cf-footer .cf-footer-top-link:hover{
  transform: translateY(-1px);
  border-color: rgba(215,180,106,0.46);
  background:
    linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.86));
  box-shadow: 0 24px 80px rgba(15,23,42,0.12);
}

.cf-footer .cf-footer-top-arrow{
  opacity: 0.8;
  transform: translateY(-0.5px);
}

/* note */
.cf-footer .cf-footer-top-note{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  color: rgba(15,23,42,0.68);
  font-weight: 900;
  font-size: 12px;
}

/* trust row */
.cf-footer .cf-footer-top-trust{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  padding-top: 2px;
}

.cf-footer .cf-footer-top-trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
  color: rgba(15,23,42,0.82);
  font-weight: 950;
  font-size: 13px;
}

.cf-footer .cf-footer-top-trust-ico{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,180,106,0.24);
  background:
    linear-gradient(135deg, rgba(215,180,106,0.18), rgba(255,255,255,0.70));
  color: rgba(15,23,42,0.88);
  flex: 0 0 auto;
}

/* responsive */
@media (max-width: 992px){
  .cf-footer .cf-footer-top-head{
    grid-template-columns: 1fr;
  }
  .cf-footer .cf-footer-top-actions{
    justify-items: start;
  }
  .cf-footer .cf-footer-top-title{
    max-width: none;
  }
}

@media (max-width: 520px){
  .cf-footer .cf-footer-top{
    padding: 18px 16px 16px;
    border-radius: 22px;
  }
  .cf-footer .cf-footer-top-trust{
    grid-template-columns: 1fr;
  }
  .cf-footer .cf-footer-top-link,
  .cf-footer .cf-footer-top-note{
    width: 100%;
    justify-content: center;
  }
}



/* ===== Main footer ===== */
.cf-footer .cf-footer-main {
  padding: 8px 0 10px;
}

.cf-footer .cf-footer-brandbox {
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(215, 180, 106, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
}

.cf-footer .cf-footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  margin-bottom: 10px;
}

.cf-footer .cf-footer-brand-main {
  font-weight: 1200;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.95);
}

.cf-footer .cf-footer-brand-sub {
  font-weight: 1050;
  font-size: 16px;
  color: rgba(215, 180, 106, 0.92);
}

.cf-footer .cf-footer-text {
  margin: 0 0 14px 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  line-height: 1.85;
  max-width: 50ch;
}

/* replace chips with clean mini row links */
.cf-footer .cf-footer-minirow {
  display: grid;
  gap: 10px;
}

.cf-footer .cf-footer-minirow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(15, 23, 42, 0.86);
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-footer .cf-footer-minirow-link:hover {
  transform: translateX(2px);
  background: rgba(215, 180, 106, 0.14);
  border-color: rgba(215, 180, 106, 0.22);
}

.cf-footer .cf-footer-col {
  padding: 10px 6px;
}

.cf-footer .cf-footer-title {
  font-size: 12px;
  font-weight: 1100;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.72);
  margin: 6px 0 10px;
}

.cf-footer .cf-footer-links {
  display: grid;
  gap: 10px;
}

.cf-footer .cf-footer-links a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.82);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 12px;

  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-footer .cf-footer-links a:hover {
  transform: translateX(2px);
  background: rgba(215, 180, 106, 0.14);
  border-color: rgba(215, 180, 106, 0.22);
}

/* contact card */
.cf-footer .cf-footer-contact {
  border-radius: 26px;
  padding: 18px;


  height: 100%;
}

.cf-footer .cf-footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.cf-footer .cf-footer-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15, 23, 42, 0.76);
  font-weight: 850;
  font-size: 13px;
  line-height: 1.6;
}

.cf-footer .cf-footer-line i {
  margin-top: 2px;
  opacity: 0.85;
}

/* secondary CTA inside contact (one only) */
.cf-footer .cf-footer-contact-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(59, 130, 246, 0.10), transparent 62%),
    rgba(255, 255, 255, 0.74);
  color: rgba(15, 23, 42, 0.90);
  font-weight: 1000;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-footer .cf-footer-contact-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(215, 180, 106, 0.22);
}

.cf-footer .cf-footer-contact-cta-ico {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  flex: 0 0 auto;
}

.cf-footer .cf-footer-contact-cta-arrow {
  margin-left: auto;
  opacity: 0.65;
}

/* bottom bar */
.cf-footer .cf-footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.cf-footer .cf-footer-note {
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}

.cf-footer .cf-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(15, 23, 42, 0.70);
  font-weight: 900;
  font-size: 13px;
}

.cf-footer .cf-footer-meta a {
  color: rgba(15, 23, 42, 0.88);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.22);
}

.cf-footer .cf-footer-meta a:hover {
  border-bottom-color: rgba(215, 180, 106, 0.55);
}

.cf-footer .cf-footer-dot {
  opacity: 0.45;
}

/* responsive */
@media (max-width: 992px) {
  .cf-footer {
    padding: 56px 0 22px;
  }


}



/* menu shell */
.dropdown-menu {
  --bs-dropdown-min-width: 14rem;
  --bs-dropdown-padding-y: 10px;
  --bs-dropdown-padding-x: 10px;
  --bs-dropdown-spacer: 10px;

  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  border-radius: var(--cf-dd-radius);
  border: 1px solid var(--cf-dd-border);
  color: var(--cf-dd-text);

  background:
    radial-gradient(900px 420px at 15% 0%, rgba(215, 180, 106, 0.14), transparent 55%),
    radial-gradient(800px 380px at 100% 20%, rgba(15, 23, 42, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.86);

  backdrop-filter: blur(var(--cf-dd-blur));
  -webkit-backdrop-filter: blur(var(--cf-dd-blur));
  box-shadow: var(--cf-dd-shadow);

  /* make it feel "snappy" */
  transform-origin: top;
  animation: cfDropdownIn 160ms ease-out;
}

@keyframes cfDropdownIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* alignments + large menus */
.dropdown-menu-end {
  transform-origin: top right;
}

/* items */
.dropdown-menu .dropdown-item {
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cf-dd-text);
  display: flex;
  align-items: center;
  gap: 10px;

  transition:
    background 140ms ease,
    transform 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: linear-gradient(135deg, var(--cf-dd-accent-soft), rgba(255, 255, 255, 0.55));
  color: rgba(15, 23, 42, 0.98);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  outline: none;
}

/* active state (Bootstrap uses .active) */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.22), rgba(15, 23, 42, 0.06));
  color: rgba(15, 23, 42, 0.98);
}

/* disabled */
.dropdown-menu .dropdown-item.disabled,
.dropdown-menu .dropdown-item:disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* small helper text inside item (optional) */
.dropdown-menu .dropdown-item .cf-dd-sub {
  font-weight: 800;
  font-size: 12px;
  color: var(--cf-dd-muted);
  letter-spacing: 0;
}

/* icon bubble if you include icons inside items (optional) */
.dropdown-menu .dropdown-item .cf-dd-ico {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  flex: 0 0 auto;
}

/* dividers */
.dropdown-menu .dropdown-divider {
  margin: 10px 6px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 1;
}

/* headers */
.dropdown-menu .dropdown-header {
  padding: 10px 10px 6px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.58);
}

/* text / forms inside dropdown */
.dropdown-menu .dropdown-item-text,
.dropdown-menu .dropdown-text {
  padding: 10px 12px;
  color: rgba(15, 23, 42, 0.70);
}

/* Optional: dropdown with "cardy" inner layout */
.dropdown-menu .cf-dd-card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

/* Better keyboard focus */
.dropdown-menu .dropdown-item:focus-visible {
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.20);
}

/* Mobile comfort */
@media (max-width: 520px) {
  .dropdown-menu {
    --bs-dropdown-min-width: 100%;
    width: 100%;
    border-radius: 18px;
  }

  .dropdown-menu .dropdown-item {
    padding: 12px 14px;
    border-radius: 16px;
  }
}

/* =========================
   DARK CONTEXT SUPPORT
   If dropdown is inside a dark header/hero
   (auto if parent sets .cf-dark)
========================= */

.cf-dark .dropdown-menu {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(215, 180, 106, 0.18), transparent 58%),
    radial-gradient(900px 520px at 100% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    rgba(10, 14, 22, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
}

.cf-dark .dropdown-menu .dropdown-header {
  color: rgba(255, 255, 255, 0.68);
}

.cf-dark .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.92);
}

.cf-dark .dropdown-menu .dropdown-item:hover,
.cf-dark .dropdown-menu .dropdown-item:focus {
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.cf-dark .dropdown-menu .dropdown-divider {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .dropdown-menu {
    animation: none;
  }

  .dropdown-menu .dropdown-item {
    transition: none;
  }
}

/* Premium divider line */
.cf-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 178, 95, 0.55), transparent);
  opacity: 0.9;
}

/* Luxury “glow on hover” utility */
.cf-glow-hover {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cf-glow-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 90px rgba(11, 18, 32, 0.14);
}

/* Better selection highlight */
::selection {
  background: rgba(214, 178, 95, 0.30);
  color: rgba(11, 18, 32, 0.96);
}

/* =========================
   CASHFORWATCHES 404 (cf-)
   Premium gradient + glass layout
========================= */

.cf-404 {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 84px) 0;
  background:
    radial-gradient(1000px 620px at 18% 12%, rgba(215, 180, 106, 0.18), transparent 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(59, 130, 246, 0.10), transparent 60%),
    radial-gradient(900px 560px at 50% 110%, rgba(45, 212, 191, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 55%, rgba(245, 247, 252, 1) 100%);
}

.cf-404 .cf-404-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.cf-404 .cf-404-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

/* Left */
.cf-404 .cf-404-copy {
  padding: 10px 6px;
}

.cf-404 .cf-404-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(15, 23, 42, 0.76);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cf-404 .cf-404-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(215, 180, 106, 0.95);
  box-shadow: 0 0 0 7px rgba(215, 180, 106, 0.16);
}

.cf-404 .cf-404-code {
  margin: 12px 0 6px;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1;
  font-weight: 1200;
  letter-spacing: -0.04em;
  color: rgba(15, 23, 42, 0.94);
}

.cf-404 .cf-404-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.12;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
  max-width: 26ch;
}

.cf-404 .cf-404-text {
  margin: 0 0 16px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 700;
}

/* Actions */
.cf-404 .cf-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.cf-404 .cf-404-btn {
  height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  font-weight: 1100;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
}

.cf-404 .cf-404-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 90px rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.cf-404 .cf-404-btn-ico {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
}

.cf-404 .cf-404-btn-primary {
  border-color: rgba(215, 180, 106, 0.36);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(255, 255, 255, 0.92));
}

.cf-404 .cf-404-btn-ghost {
  background: rgba(255, 255, 255, 0.70);
}

/* Helpful links row */
.cf-404 .cf-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cf-404 .cf-404-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  color: rgba(15, 23, 42, 0.84);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-404 .cf-404-link:hover {
  transform: translateY(-1px);
  background: rgba(215, 180, 106, 0.14);
  border-color: rgba(215, 180, 106, 0.22);
}

/* Right card */
.cf-404 .cf-404-card {
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(700px 260px at 18% 0%, rgba(215, 180, 106, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 120px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.cf-404 .cf-404-card-top {
  padding: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
  background:
    radial-gradient(520px 240px at 20% 10%, rgba(59, 130, 246, 0.10), transparent 62%),
    rgba(255, 255, 255, 0.60);
}

.cf-404 .cf-404-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 180, 106, 0.28);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.22), rgba(255, 255, 255, 0.86));
  color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
}

.cf-404 .cf-404-card-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 1100;
  color: rgba(15, 23, 42, 0.95);
}

.cf-404 .cf-404-card-sub {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.70);
  font-weight: 750;
}

.cf-404 .cf-404-card-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.cf-404 .cf-404-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 23, 42, 0.90);
  font-weight: 1000;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cf-404 .cf-404-item:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 180, 106, 0.22);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
}

.cf-404 .cf-404-item-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  flex: 0 0 auto;
}

.cf-404 .cf-404-item-arrow {
  margin-left: auto;
  opacity: 0.55;
}

.cf-404 .cf-404-card-foot {
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.66);
}

.cf-404 .cf-404-foot-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 900;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
  .cf-404 .cf-404-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .cf-404 .cf-404-actions {
    flex-direction: column;
  }

  .cf-404 .cf-404-btn {
    width: 100%;
    justify-content: center;
  }

  .cf-404 .cf-404-links {
    flex-direction: column;
  }

  .cf-404 .cf-404-link {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   CASHFORWATCHES SELL (cf-)
   Editorial split + image
========================= */

.cf-sell {
  position: relative;
  padding: 64px 0;
  background:
    radial-gradient(800px 420px at 12% 0%, rgba(215, 180, 106, 0.14), transparent 60%),
    radial-gradient(800px 420px at 100% 20%, rgba(59, 130, 246, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(245, 247, 252, 1) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* layout */
.cf-sell .cf-sell-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: center;
}

/* =========================
   IMAGE
========================= */

.cf-sell .cf-sell-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  box-shadow:
    0 30px 90px rgba(15, 23, 42, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.40);
}

.cf-sell .cf-sell-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

/* subtle overlay for consistency */
.cf-sell .cf-sell-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 23, 42, 0.10),
      rgba(15, 23, 42, 0.20));
  pointer-events: none;
}

/* =========================
   CONTENT
========================= */

.cf-sell .cf-sell-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 6px 2px;
}

/* kicker */
.cf-sell .cf-kicker {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

/* heading */
.cf-sell h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
}

/* copy */
.cf-sell p {
  margin: 0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.72);
}

/* =========================
   POINTS
========================= */

.cf-sell .cf-sell-points {
  list-style: none;
  margin: 10px 0 4px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cf-sell .cf-sell-points li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(15, 23, 42, 0.88);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

/* check icon */
.cf-sell .cf-sell-points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 1100;
  color: rgba(15, 23, 42, 0.90);
  background: linear-gradient(135deg,
      rgba(215, 180, 106, 0.30),
      rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(215, 180, 106, 0.38);
}

/* =========================
   TEXT LINK
========================= */

.cf-sell .cf-text-link {
  margin-top: 8px;
  align-self: flex-start;
  text-decoration: none;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.90);
  padding-bottom: 2px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.30);
  transition: color 160ms ease, border-color 160ms ease;
}

.cf-sell .cf-text-link:hover {
  color: rgba(215, 180, 106, 0.95);
  border-bottom-color: rgba(215, 180, 106, 0.60);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .cf-sell {
    padding: 52px 0;
  }

  .cf-sell .cf-sell-grid {
    grid-template-columns: 1fr;
  }

  .cf-sell .cf-sell-image {
    order: -1;
  }
}

@media (max-width: 520px) {
  .cf-sell h2 {
    font-size: 26px;
  }

  .cf-sell .cf-sell-points li {
    font-size: 12px;
  }
}

/* =========================
   CF PROCESS — TRUST STRIP (upgrade)
   Make it pop on light backgrounds
========================= */

/* main strip: light glass + gold sheen + depth */
.cf-process .cf-process-strip {
  position: relative;
  border-radius: 26px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);

  background:
    radial-gradient(520px 260px at 18% 0%, rgba(215, 180, 106, 0.22), transparent 60%),
    radial-gradient(560px 300px at 92% 40%, rgba(59, 130, 246, 0.10), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));

  box-shadow:
    0 28px 90px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transform: translateZ(0);
}

/* premium top accent line */
.cf-process .cf-process-strip::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 10px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(215, 180, 106, 0.55), transparent);
  opacity: 0.9;
  pointer-events: none;
}

/* soft outer glow ring */
.cf-process .cf-process-strip::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(215, 180, 106, 0.14), transparent 60%),
    radial-gradient(520px 240px at 90% 40%, rgba(59, 130, 246, 0.08), transparent 60%);
  filter: blur(14px);
  opacity: 0.65;
  pointer-events: none;
  z-index: -1;
}

/* items: brighter cards inside */
.cf-process .cf-process-strip .cf-process-strip-item {
  position: relative;
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));

  box-shadow:
    0 16px 44px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.70) inset;

  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cf-process .cf-process-strip .cf-process-strip-item:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 180, 106, 0.26);
  box-shadow:
    0 22px 70px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

/* icon tile: richer gold glass */
.cf-process .cf-process-strip .cf-process-strip-ico {
  width: 46px;
  height: 46px;
  border-radius: 18px;

  border: 1px solid rgba(215, 180, 106, 0.30);
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, 0.70), transparent 60%),
    linear-gradient(135deg, rgba(215, 180, 106, 0.30), rgba(255, 255, 255, 0.88));

  color: rgba(15, 23, 42, 0.92);

  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.60) inset;
}

/* text: flip to dark for contrast */
.cf-process .cf-process-strip .cf-process-strip-text strong {
  color: rgba(15, 23, 42, 0.94);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.cf-process .cf-process-strip .cf-process-strip-text span {
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  font-weight: 800;
}

/* tighten the whole strip visually on small screens */
@media (max-width: 992px) {
  .cf-process .cf-process-strip {
    padding: 12px;
    border-radius: 24px;
  }

  .cf-process .cf-process-strip .cf-process-strip-item {
    padding: 12px;
  }
}

@media (max-width: 520px) {
  .cf-process .cf-process-strip {
    padding: 12px;
  }
}


/* =========================
   CASHFORWATCHES BRAND PAGES
========================= */

.cf-brand-hero {
  position: relative;
  padding: 84px 0 64px;
  background:
    radial-gradient(1200px 560px at 12% 0%, rgba(215, 180, 106, 0.18), transparent 62%),
    radial-gradient(900px 520px at 92% 12%, rgba(59, 130, 246, 0.10), transparent 60%),
    linear-gradient(180deg, var(--cf-bg) 0%, var(--cf-bg-2) 65%, #ffffff 100%);
  overflow: hidden;
}

.cf-brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 280px at 18% 20%, rgba(255, 255, 255, 0.60), transparent 70%),
    radial-gradient(520px 260px at 72% 28%, rgba(215, 180, 106, 0.12), transparent 72%);
  pointer-events: none;
}

.cf-brand-hero-inner {
  position: relative;
}

.cf-brand-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.cf-brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.70);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.cf-brand-title {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: var(--cf-heading-primary);
}

.cf-brand-sub {
  margin: 0 0 20px;
  max-width: 60ch;
  color: var(--cf-text-2);
  font-size: 16px;
  line-height: 1.7;
}

.cf-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cf-brand-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(15, 23, 42, 0.90);
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-brand-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
}

.cf-brand-btn-primary {
  border-color: rgba(215, 180, 106, 0.35);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(255, 255, 255, 0.86));
}

.cf-brand-meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cf-brand-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
}

.cf-brand-hero-card {
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

.cf-brand-card-title {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.cf-brand-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, 0.78);
  font-size: 13px;
}

.cf-brand-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cf-brand-checklist i {
  color: var(--cf-gold-2);
}

.cf-brand-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.68);
}

.cf-brand-card-link {
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.92);
}

.cf-brand-detail {
  position: relative;
  padding: 70px 0;
  background: #ffffff;
}

.cf-brand-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.cf-brand-detail-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--cf-heading-primary);
}

.cf-brand-detail-copy p {
  margin: 0 0 14px;
  color: var(--cf-text-2);
  line-height: 1.7;
}

.cf-brand-detail-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
}

.cf-brand-detail-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 1000;
}

.cf-brand-pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cf-brand-pill-list li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.78);
}

.cf-brand-detail-note {
  margin: 0;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.64);
}

.cf-brand-features {
  padding: 70px 0;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(215, 180, 106, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.cf-brand-features-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.cf-brand-features-head h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  color: var(--cf-heading-primary);
}

.cf-brand-features-head p {
  margin: 0;
  color: var(--cf-text-2);
}

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

.cf-brand-feature-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 10px;
}

.cf-brand-feature-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 180, 106, 0.26);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.20), rgba(255, 255, 255, 0.70));
  color: rgba(15, 23, 42, 0.90);
}

.cf-brand-feature-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 1000;
  color: rgba(15, 23, 42, 0.95);
}

.cf-brand-feature-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.70);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .cf-brand-hero-grid,
  .cf-brand-detail-grid,
  .cf-brand-features-grid {
    grid-template-columns: 1fr;
  }

  .cf-brand-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cf-brand-actions {
    flex-direction: column;
  }

  .cf-brand-btn {
    width: 100%;
    justify-content: center;
  }

  .cf-brand-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   CASHFORWATCHES RECENT PAYOUTS
========================= */

.cf-payouts-hero {
  position: relative;
  padding: 84px 0 56px;
  background: #070A10;
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.cf-payouts-hero .cf-payouts-kicker{
  color: rgba(255, 255, 255, 0.78);
}
.cf-payouts-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cf-cash-img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
  z-index: 0;
  pointer-events: none;
}

.cf-payouts-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(215,180,106,0.22), transparent 62%),
    radial-gradient(920px 560px at 88% 16%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 650px at 70% 92%, rgba(15,23,42,0.78), transparent 64%),
    linear-gradient(180deg, rgba(7,10,16,0.72) 0%, rgba(7,10,16,0.86) 55%, rgba(7,10,16,0.95) 100%);
  opacity: 0.98;
  pointer-events: none;
  z-index: 0;
}

.cf-payouts-hero-inner {
  position: relative;
  z-index: 1;
}

.cf-payouts-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.cf-payouts-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: #000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.cf-payouts-title {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.cf-payouts-sub {
  margin: 0 0 20px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.cf-payouts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cf-payouts-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-payouts-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.cf-payouts-btn-primary {
  border-color: rgba(215, 180, 106, 0.32);
  background: linear-gradient(135deg, rgba(246, 230, 180, 0.30), rgba(201, 162, 77, 0.14));
}

.cf-payouts-trust {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cf-payouts-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.cf-payouts-live {
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cf-payouts-live-label {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.cf-payouts-live-amount {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 1100;
  color: rgba(255, 255, 255, 0.96);
}

.cf-payouts-live-watch {
  font-weight: 1000;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.cf-payouts-live-meta,
.cf-payouts-live-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  flex-wrap: wrap;
}

.cf-live-animate {
  animation: cfLivePulse 700ms ease;
}

@keyframes cfLivePulse {
  from {
    transform: translateY(4px);
    opacity: 0.65;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cf-payouts-ticker {
  padding: 14px 0 30px;
  overflow: hidden;
}

.cf-payouts-ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: cfTickerScroll 36s linear infinite;
}

.cf-payouts-ticker-item {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.80);
  font-size: 12px;
  color: rgba(15, 23, 42, 0.70);
  min-width: 220px;
}

.cf-payouts-ticker-item strong {
  color: rgba(15, 23, 42, 0.95);
  font-size: 14px;
}

@keyframes cfTickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cf-payouts-grid {
  padding: 60px 0 70px;
  background: #ffffff;
}

.cf-payouts-grid-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 24px;
}

.cf-payouts-grid-head h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  color: var(--cf-heading-primary);
}

.cf-payouts-grid-head p {
  margin: 0;
  color: var(--cf-text-2);
}

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

.cf-payouts-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 8px;
  animation: cfCardFloat 5s ease-in-out infinite;
}

.cf-payouts-card:nth-child(2n) {
  animation-delay: 0.8s;
}

.cf-payouts-card:nth-child(3n) {
  animation-delay: 1.4s;
}

@keyframes cfCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.cf-payouts-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cf-payouts-card-amount {
  font-size: 20px;
  font-weight: 1100;
  color: rgba(15, 23, 42, 0.95);
}

.cf-payouts-card-badge {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
}

.cf-payouts-card-watch {
  font-weight: 1000;
  color: rgba(15, 23, 42, 0.90);
}

.cf-payouts-card-meta {
  color: rgba(15, 23, 42, 0.70);
  font-size: 13px;
}

.cf-payouts-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  flex-wrap: wrap;
}

.cf-payouts-cta {
  padding: 30px 0 80px;
  background: #ffffff;
}

.cf-payouts-cta .cf-payouts-btn-primary{
  color:#000;
}

.cf-payouts-cta-card {
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.16), rgba(255, 255, 255, 0.90));
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cf-payouts-cta-card h2 {
  margin: 10px 0 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.cf-payouts-cta-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

@media (max-width: 992px) {
  .cf-payouts-hero-grid,
  .cf-payouts-cards {
    grid-template-columns: 1fr;
  }

  .cf-payouts-trust {
    grid-template-columns: 1fr;
  }

  .cf-payouts-cta-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .cf-payouts-actions {
    flex-direction: column;
  }

  .cf-payouts-btn {
    width: 100%;
    justify-content: center;
  }
}


/* =========================
   CASHFORWATCHES REVIEWS
========================= */

.cf-reviews .cf-reviews-hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(1200px 640px at 16% 0%, rgba(215, 180, 106, 0.18), transparent 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(59, 130, 246, 0.10), transparent 62%),
    linear-gradient(180deg, var(--cf-bg) 0%, var(--cf-bg-2) 65%, #ffffff 100%);
  overflow: hidden;
}

.cf-reviews .cf-reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 260px at 26% 16%, rgba(255, 255, 255, 0.65), transparent 70%),
    radial-gradient(560px 260px at 72% 24%, rgba(215, 180, 106, 0.12), transparent 72%);
  pointer-events: none;
}

.cf-reviews .cf-reviews-hero-inner {
  position: relative;
  z-index: 1;
}

.cf-reviews .cf-reviews-hero-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 30px;
}

.cf-reviews .cf-reviews-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.70);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.cf-reviews .cf-reviews-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: var(--cf-heading-primary);
}

.cf-reviews .cf-reviews-sub {
  margin: 0 auto;
  max-width: 70ch;
  color: var(--cf-text-2);
  font-size: 16px;
  line-height: 1.7;
}

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

.cf-reviews .cf-review-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 10px;
  min-height: 220px;
  animation: cfReviewFloat 6s ease-in-out infinite;
}

.cf-reviews .cf-review-card:nth-child(2n) {
  animation-delay: 0.8s;
}

.cf-reviews .cf-review-card:nth-child(3n) {
  animation-delay: 1.4s;
}

@keyframes cfReviewFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.cf-reviews .cf-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(215, 180, 106, 0.95);
  font-size: 14px;
}

.cf-reviews .cf-review-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.cf-reviews .cf-review-watch {
  font-weight: 1000;
  color: rgba(15, 23, 42, 0.90);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cf-reviews .cf-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .cf-reviews .cf-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .cf-reviews .cf-reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   CASHFORWATCHES FAQ
========================= */

.cf-faq {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(1200px 640px at 16% 0%, rgba(215, 180, 106, 0.18), transparent 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(59, 130, 246, 0.10), transparent 62%),
    linear-gradient(180deg, var(--cf-bg) 0%, var(--cf-bg-2) 65%, #ffffff 100%);
  overflow: hidden;
}

.cf-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 260px at 26% 16%, rgba(255, 255, 255, 0.65), transparent 70%),
    radial-gradient(560px 260px at 72% 24%, rgba(215, 180, 106, 0.12), transparent 72%);
  pointer-events: none;
}

.cf-faq-inner {
  position: relative;
  z-index: 1;
}

.cf-faq-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 30px;
}

.cf-faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.70);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.cf-faq-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: var(--cf-heading-primary);
}

.cf-faq-sub {
  margin: 0 auto;
  max-width: 70ch;
  color: var(--cf-text-2);
  font-size: 16px;
  line-height: 1.7;
}

.cf-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cf-faq-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 10px;
}

.cf-faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
  color: rgba(15, 23, 42, 0.92);
}

.cf-faq-question i {
  color: rgba(215, 180, 106, 0.95);
}

.cf-faq-answer {
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.7;
}

.cf-faq-cta {
  margin-top: 26px;
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.16), rgba(255, 255, 255, 0.90));
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cf-faq-cta h2 {
  margin: 10px 0 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.cf-faq-cta p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

.cf-faq-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(215, 180, 106, 0.35);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(255, 255, 255, 0.86));
  color: rgba(15, 23, 42, 0.92);
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-faq-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 90px rgba(15, 23, 42, 0.16);
  border-color: rgba(215, 180, 106, 0.55);
}

@media (max-width: 992px) {
  .cf-faq-grid {
    grid-template-columns: 1fr;
  }

  .cf-faq-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cf-faq-btn {
    width: 100%;
    justify-content: center;
  }
}


/* =========================
   CASHFORWATCHES BRANDS WE BUY PAGE
========================= */

.cf-brands-page {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(1200px 640px at 16% 0%, rgba(215, 180, 106, 0.18), transparent 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(59, 130, 246, 0.10), transparent 62%),
    linear-gradient(180deg, var(--cf-bg) 0%, var(--cf-bg-2) 65%, #ffffff 100%);
  overflow: hidden;
}

.cf-brands-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 260px at 26% 16%, rgba(255, 255, 255, 0.65), transparent 70%),
    radial-gradient(560px 260px at 72% 24%, rgba(215, 180, 106, 0.12), transparent 72%);
  pointer-events: none;
}

.cf-brands-page-inner {
  position: relative;
  z-index: 1;
}

.cf-brands-page-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cf-brands-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.70);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.cf-brands-page-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: var(--cf-heading-primary);
}

.cf-brands-page-sub {
  margin: 0 auto 20px;
  max-width: 70ch;
  color: var(--cf-text-2);
  font-size: 16px;
  line-height: 1.7;
}

.cf-brands-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.cf-brands-page-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(15, 23, 42, 0.90);
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cf-brands-page-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
}

.cf-brands-page-btn-primary {
  border-color: rgba(215, 180, 106, 0.35);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(255, 255, 255, 0.86));
}

.cf-brands-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.cf-brands-page-stat {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  padding: 14px;
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.68);
  font-weight: 800;
}

.cf-brands-page-stat strong {
  font-size: 16px;
  color: rgba(15, 23, 42, 0.95);
}

.cf-brands-page-cta {
  padding: 30px 0 80px;
  background: #ffffff;
}

.cf-brands-page-cta-card {
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.16), rgba(255, 255, 255, 0.90));
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cf-brands-page-cta-card h2 {
  margin: 10px 0 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.cf-brands-page-cta-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

@media (max-width: 992px) {
  .cf-brands-page-stats {
    grid-template-columns: 1fr;
  }

  .cf-brands-page-cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cf-brands-page-actions {
    flex-direction: column;
  }

  .cf-brands-page-btn {
    width: 100%;
    justify-content: center;
  }
}


.cf-brands{
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(1200px 620px at 18% 0%, rgba(215,180,106,0.20), transparent 60%),
    radial-gradient(900px 560px at 92% 18%, rgba(15,23,42,0.08), transparent 62%),
    radial-gradient(900px 560px at 50% 120%, rgba(59,130,246,0.08), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,250,252,1) 100%);
  overflow: hidden;
}

.cf-brands::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(255,255,255,0.55), transparent 70%),
    radial-gradient(520px 240px at 70% 30%, rgba(215,180,106,0.10), transparent 72%);
  pointer-events:none;
  opacity: 0.9;
}

.cf-brands .cf-brands-head{
  position: relative;
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.cf-brands .cf-brands-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.76);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(15,23,42,0.70);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
}

.cf-brands .cf-brands-title{
  margin: 12px 0 10px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,0.95);
}

.cf-brands .cf-brands-sub{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(15,23,42,0.68);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== The Brand Wall ===== */
.cf-brands .cf-brands-wall{
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: start;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 26px 90px rgba(15,23,42,0.10),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

/* subtle “gold thread” line */
.cf-brands .cf-brands-wall::before{
  content:"";
  position:absolute;
  inset: -120px -180px;
  background:
    radial-gradient(520px 220px at 25% 35%, rgba(215,180,106,0.20), transparent 65%),
    radial-gradient(520px 240px at 75% 30%, rgba(15,23,42,0.08), transparent 65%);
  pointer-events:none;
  opacity: 0.8;
}


/* Make some brands feel “featured” automatically (every 5th item) */
.cf-brands .cf-brands-item{
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 20px;
  border-radius: 14px;

  /* premium dark base */
  background:
    radial-gradient(320px 140px at 20% 0%, rgba(215,180,106,0.14), transparent 60%),
    linear-gradient(180deg, rgba(22,26,35,0.98), rgba(12,15,22,0.98));

  border: 1px solid rgba(215,180,106,0.28);

  color: rgba(255,255,255,0.92);
  font-weight: 1000;
  letter-spacing: 0.04em;

  box-shadow:
    0 18px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

/* engraved gold hallmark dot */
.cf-brands .cf-brands-item::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #f5e6b8,
    #c9a24d
  );

  box-shadow:
    0 0 0 5px rgba(215,180,106,0.18),
    inset 0 1px 2px rgba(255,255,255,0.45);

  flex: 0 0 auto;
}

/* text micro-adjustment */
.cf-brands .cf-brands-item span{
  transform: translateY(0.5px);
}

/* hover: polished, not flashy */
.cf-brands .cf-brands-item:hover{
  transform: translateY(-2px);

  border-color: rgba(215,180,106,0.55);

  background:
    radial-gradient(420px 180px at 18% 0%, rgba(215,180,106,0.22), transparent 62%),
    linear-gradient(180deg, rgba(28,32,44,0.98), rgba(14,18,28,0.98));

  box-shadow:
    0 26px 90px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.cf-brands .cf-brands-item::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events:none;
}

/* Footer line */
.cf-brands .cf-brands-foot{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cf-brands .cf-brands-foot-line{
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,180,106,0.55), transparent);
  opacity: 0.9;
}

.cf-brands .cf-brands-foot-text{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.58);
}

/* Responsive */
@media (max-width: 520px){
  .cf-brands{
    padding: 52px 0;
  }
  .cf-brands .cf-brands-wall{
    padding: 14px;
    gap: 10px;
    border-radius: 22px;
  }
  .cf-brands .cf-brands-item{
    width: 100%;
    justify-content: center;
  }
}


/* =========================
   DEFAULT PAGE (cf-)
   Editorial / Premium / Clean
========================= */

.cf-page{
  position: relative;
  padding: clamp(34px, 4.6vw, 64px) 0;
  overflow: hidden;
}

/* subtle luxe background */
.cf-page .cf-page-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(215,180,106,0.18), transparent 60%),
    radial-gradient(1000px 680px at 100% 10%, rgba(59,130,246,0.10), transparent 58%),
    radial-gradient(980px 640px at 55% 110%, rgba(45,212,191,0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,250,252,1) 55%, rgba(245,247,252,1) 100%);
}

/* page width */
.cf-page .cf-page-shell{
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

.container-fluid .cf-page-shell{
  max-width: 1280px;
}

/* ===== Header card (more “publication”, less “app UI”) ===== */
.cf-page .cf-page-head{
  margin-bottom: 16px;
}

.cf-page .cf-page-head .cf-page-head-inner{
  border-radius: 22px;
  padding: 22px 22px;
  text-align:center;

}

/* meta line (no pills) */
.cf-page .cf-page-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15,23,42,0.62);
}

.cf-page .cf-page-meta .cf-page-meta-brand{
  color: rgba(15,23,42,0.72);
}

.cf-page .cf-page-meta .cf-page-meta-dot{
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(215,180,106,0.95);
  box-shadow: 0 0 0 6px rgba(215,180,106,0.10);
}

.cf-page .cf-page-title{
  margin: 0 0 10px 0;
  font-weight: 1100;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(30px, 3.6vw, 48px);
  color: rgba(15,23,42,0.96);
  font-family: var(--cf-font-display);
}

/* breadcrumb: simple, classy */
.cf-page .cf-page-crumbs{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(15,23,42,0.60);
  font-weight: 800;
}

.cf-page .cf-page-crumbs .cf-page-crumb-link{
  text-decoration: none;
  color: rgba(15,23,42,0.72);
  border-bottom: 1px solid rgba(15,23,42,0.16);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}

.cf-page .cf-page-crumbs .cf-page-crumb-link:hover{
  color: rgba(15,23,42,0.95);
  border-bottom-color: rgba(215,180,106,0.60);
}

.cf-page .cf-page-crumbs .cf-page-crumb-sep{
  opacity: 0.45;
}

.cf-page .cf-page-crumbs .cf-page-crumb-current{
  color: rgba(15,23,42,0.62);
}

/* ===== Banner (optional) ===== */
.cf-page .cf-page-media{
  margin: 14px 0 18px;
}

.cf-page .cf-page-media .cf-page-media-frame{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 28px 100px rgba(15,23,42,0.10);
}

.cf-page .cf-page-media .cf-page-media-frame img{
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Content ===== */
.cf-page .cf-page-content{
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 26px 90px rgba(15,23,42,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cf-page .cf-page-content.cf-page-content-full{
  padding: 26px;
}

/* CMS typography (clean) */
.cf-page .cf-page-content h2,
.cf-page .cf-page-content h3{
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 1050;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,0.95);
}

.cf-page .cf-page-content p{
  color: rgba(15,23,42,0.74);
  line-height: 1.85;
}

.cf-page .cf-page-content a{
  color: rgba(15,23,42,0.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15,23,42,0.22);
}

.cf-page .cf-page-content a:hover{
  border-bottom-color: rgba(215,180,106,0.65);
}

/* images inside content */
.cf-page .cf-page-content img{
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 60px rgba(15,23,42,0.10);
}

/* ===== Responsive ===== */
@media (max-width: 520px){
  .cf-page{
    padding: 30px 0 42px;
  }

  .cf-page .cf-page-head .cf-page-head-inner{
    padding: 16px;
    border-radius: 18px;
  }

  .cf-page .cf-page-title{
    font-size: 28px;
  }

  .cf-page .cf-page-content{
    padding: 16px;
    border-radius: 18px;
  }
}


/* =========================
   CF CKEDITOR UTILITIES
   Use inside page content
========================= */

.cf-wysiwyg{
  /* keeps content readable and consistent */
  color: rgba(15,23,42,0.82);
  font-size: 16px;
  line-height: 1.85;
}

.cf-wysiwyg h2,
.cf-wysiwyg h3{
  color: rgba(15,23,42,0.95);
  letter-spacing: -0.02em;
  margin: 28px 0 10px;
}

.cf-wysiwyg h2{
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 1100;
}

.cf-wysiwyg h3{
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 1000;
}

.cf-wysiwyg p{
  margin: 0 0 14px;
  color: rgba(15,23,42,0.76);
}

.cf-wysiwyg a{
  color: rgba(15,23,42,0.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15,23,42,0.28);
}

.cf-wysiwyg a:hover{
  border-bottom-color: rgba(215,180,106,0.70);
}

/* --- Elegant “card” wrapper --- */
.cf-box{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(520px 240px at 18% 0%, rgba(215,180,106,0.14), transparent 62%),
    rgba(255,255,255,0.82);
  box-shadow: 0 18px 60px rgba(15,23,42,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px;
}

.cf-box .cf-box-title{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.66);
}

.cf-box .cf-box-text{
  margin: 0;
  color: rgba(15,23,42,0.76);
}

/* --- Highlight callout --- */
.cf-callout{
  border-radius: 22px;
  border: 1px solid rgba(215,180,106,0.22);
  background:
    linear-gradient(135deg, rgba(215,180,106,0.14), rgba(255,255,255,0.86));
  box-shadow: 0 18px 60px rgba(15,23,42,0.10);
  padding: 16px 18px;
}

.cf-callout .cf-callout-title{
  margin: 0 0 6px;
  font-weight: 1100;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.95);
  font-size: 18px;
}

.cf-callout .cf-callout-text{
  margin: 0;
  color: rgba(15,23,42,0.74);
  line-height: 1.8;
}

/* --- Step cards (great for How It Works) --- */
.cf-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin: 16px 0;
}

.cf-steps .cf-step{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 50px rgba(15,23,42,0.08);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.cf-steps .cf-step .cf-step-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cf-steps .cf-step .cf-step-no{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.78);
}

.cf-steps .cf-step .cf-step-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,180,106,0.26);
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.86));
  color: rgba(15,23,42,0.90);
}

.cf-steps .cf-step .cf-step-title{
  margin: 0;
  font-weight: 1100;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.95);
  font-size: 16px;
}

.cf-steps .cf-step .cf-step-text{
  margin: 0;
  color: rgba(15,23,42,0.72);
  line-height: 1.8;
  font-size: 14px;
}

.cf-steps .cf-step .cf-step-tags{
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cf-steps .cf-step .cf-step-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  color: rgba(15,23,42,0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* --- Elegant list (bullets become “checks”) --- */
.cf-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 10px;
}

.cf-list li{
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  color: rgba(15,23,42,0.78);
  font-weight: 800;
  line-height: 1.6;
}

.cf-list li::before{
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(215,180,106,0.18);
  border: 1px solid rgba(215,180,106,0.28);
  color: rgba(15,23,42,0.92);
  font-weight: 1000;
  font-size: 12px;
}

/* --- Subtle inline “pill” --- */
.cf-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  color: rgba(15,23,42,0.78);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
}

/* --- Notice / small disclaimer --- */
.cf-note{
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.72);
  color: rgba(15,23,42,0.66);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

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


/* =========================
   CASH BACKGROUND SECTION (cf-)
   Full width / premium / image-ready
========================= */

:root{
  /* set your cash photo here */
  --cf-cash-img: url("../img/cash-bg.webp");
}

.cf-cash{
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
  color: rgba(255,255,255,0.92);
}

/* background image layer */
.cf-cash .cf-cash-bg{
  position: absolute;
  inset: 0;
  background-image: var(--cf-cash-img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

.cf-cash .cf-cash-bg{
  animation: cfCashBgMove 30s ease-in-out infinite;
  will-change: transform, background-position;
}

@keyframes cfCashBgMove{
  0%{
    transform: scale(1.03) translate3d(0,0,0);
    background-position: 50% 50%;
  }
  50%{
    transform: scale(1.06) translate3d(-2%,1.5%,0);
    background-position: 54% 46%;
  }
  100%{
    transform: scale(1.03) translate3d(0,0,0);
    background-position: 50% 50%;
  }
}

@media (prefers-reduced-motion: reduce){
  .cf-cash .cf-cash-bg{
    animation: none;
  }
}
/* premium overlay: gold + ink + readability */
.cf-cash .cf-cash-shade{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(215,180,106,0.22), transparent 62%),
    radial-gradient(920px 560px at 88% 16%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 650px at 70% 92%, rgba(15,23,42,0.78), transparent 64%),
    linear-gradient(180deg, rgba(7,10,16,0.72) 0%, rgba(7,10,16,0.86) 55%, rgba(7,10,16,0.95) 100%);
  pointer-events: none;
}

/* subtle grain for “luxury print” feel */
.cf-cash::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0.18;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
}

.cf-cash .cf-cash-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

/* Left copy panel (glass on dark) */
.cf-cash .cf-cash-copy{
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 22px;
}

/* kicker */
.cf-cash .cf-cash-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}

.cf-cash .cf-cash-kicker-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(215,180,106,0.95);
  box-shadow: 0 0 0 7px rgba(215,180,106,0.16);
}

/* headline */
.cf-cash .cf-cash-title{
  margin: 0 0 10px;
  font-weight: 1100;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(26px, 3.2vw, 44px);
}

.cf-cash .cf-cash-accent{
  background: linear-gradient(135deg, rgba(246,230,180,0.95), rgba(201,162,77,0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* sub */
.cf-cash .cf-cash-sub{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.75;
  max-width: 62ch;
}

/* point list */
.cf-cash .cf-cash-points{
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.cf-cash .cf-cash-point{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
}

.cf-cash .cf-cash-ico{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,180,106,0.26);
  background: linear-gradient(135deg, rgba(215,180,106,0.18), rgba(255,255,255,0.06));
  color: rgba(255,255,255,0.92);
}

.cf-cash .cf-cash-point strong{
  display:block;
  font-weight: 1000;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 3px;
}

.cf-cash .cf-cash-point span{
  color: rgba(255,255,255,0.70);
  font-weight: 750;
  font-size: 13px;
  line-height: 1.5;
}

/* CTA: one premium action, not spammy */
.cf-cash .cf-cash-cta{
  height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,0.94);
  border: 1px solid rgba(215,180,106,0.30);
  background: linear-gradient(135deg, rgba(246,230,180,0.16), rgba(201,162,77,0.08));
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cf-cash .cf-cash-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(215,180,106,0.44);
  box-shadow: 0 26px 90px rgba(0,0,0,0.55);
  background: linear-gradient(135deg, rgba(246,230,180,0.22), rgba(201,162,77,0.10));
}

.cf-cash .cf-cash-cta-ico{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,180,106,0.26);
  background: rgba(0,0,0,0.22);
}

.cf-cash .cf-cash-cta-arrow{
  opacity: 0.8;
  transform: translateY(-0.5px);
}

.cf-cash .cf-cash-fine{
  margin-top: 12px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 750;
}

/* Right card */
.cf-cash .cf-cash-card{
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.cf-cash .cf-cash-card-top{
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(520px 240px at 20% 10%, rgba(215,180,106,0.18), transparent 62%),
    rgba(255,255,255,0.03);
}

.cf-cash .cf-cash-card-title{
  font-size: 16px;
  font-weight: 1100;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}

.cf-cash .cf-cash-card-sub{
  margin-top: 4px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 750;
}

.cf-cash .cf-cash-stats{
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.cf-cash .cf-cash-stat{
  padding: 12px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cf-cash .cf-cash-stat-value{
  font-weight: 1150;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: rgba(255,255,255,0.94);
}

.cf-cash .cf-cash-stat-label{
  color: rgba(255,255,255,0.66);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* footer chips (small, not cheesy) */
.cf-cash .cf-cash-card-foot{
  padding: 14px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.cf-cash .cf-cash-card-foot span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.76);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* responsive */
@media (max-width: 992px){
  .cf-cash .cf-cash-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .cf-cash .cf-cash-copy,
  .cf-cash .cf-cash-card{
    border-radius: 22px;
  }
  .cf-cash .cf-cash-cta{
    width: 100%;
    justify-content: center;
  }
}



/* =========================
   CONTACT / OFFER PAGE (cf-)
   Premium light gradients + clean cards
========================= */

.cf-contact{
  position: relative;
  padding: 72px 0;
}

.cf-contact .cf-contact-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 620px at 15% 8%, rgba(215,180,106,0.20), transparent 60%),
    radial-gradient(1000px 620px at 95% 18%, rgba(59,130,246,0.10), transparent 60%),
    radial-gradient(1000px 620px at 50% 110%, rgba(45,212,191,0.10), transparent 60%),
    linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(245,247,252,1) 100%);
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.cf-contact .cf-contact-head{
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 18px auto;
  text-align: center;
}

.cf-contact .cf-contact-title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 1100;
  letter-spacing: -0.03em;
  color: rgba(15,23,42,0.95);
}

.cf-contact .cf-contact-sub{
  margin: 0 auto;
  max-width: 78ch;
  color: rgba(15,23,42,0.70);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
}

.cf-contact .cf-contact-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 18px;
  align-items: start;
}

/* Card base */
.cf-contact .cf-contact-card,
.cf-contact .cf-contact-side-card{
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(215,180,106,0.12), transparent 62%),
    rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 90px rgba(15,23,42,0.10);
}

/* Main form card */
.cf-contact .cf-contact-card{
  padding: 18px;
}

.cf-contact .cf-contact-card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px 14px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  margin-bottom: 14px;
}

.cf-contact .cf-contact-card-kicker{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.62);
  margin-bottom: 6px;
}

.cf-contact .cf-contact-card-title{
  font-size: 18px;
  font-weight: 1050;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.95);
}

.cf-contact .cf-contact-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.76);
  color: rgba(15,23,42,0.80);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Form */
.cf-contact .cf-contact-form{
  display: grid;
  gap: 12px;
}

.cf-contact .cf-contact-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-contact .cf-contact-field{
  display: grid;
  gap: 8px;
}

.cf-contact .cf-contact-label{
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.70);
}

.cf-contact .cf-control{
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 34px rgba(15,23,42,0.06);
}

.cf-contact textarea.cf-control{
  height: auto;
  min-height: 150px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.cf-contact .cf-control:focus{
  border-color: rgba(215,180,106,0.45);
  box-shadow: 0 0 0 4px rgba(215,180,106,0.16);
}

.cf-contact .cf-control-file{
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(15,23,42,0.20);
  background: rgba(255,255,255,0.78);
}

.cf-contact .cf-contact-help{
  font-size: 13px;
  color: rgba(15,23,42,0.60);
  font-weight: 700;
  line-height: 1.5;
}

/* Offer slab */
.cf-contact .cf-contact-slab{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(520px 220px at 12% 0%, rgba(215,180,106,0.12), transparent 62%),
    rgba(255,255,255,0.70);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.cf-contact .cf-contact-slab-title{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.64);
}

/* Actions */
.cf-contact .cf-contact-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cf-contact .cf-contact-btn{
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 18px 60px rgba(15,23,42,0.12);
}

.cf-contact .cf-contact-link{
  text-decoration: none;
  color: rgba(15,23,42,0.78);
  font-weight: 900;
}

.cf-contact .cf-contact-link:hover{
  color: rgba(15,23,42,0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cf-contact .cf-contact-note{
  color: rgba(15,23,42,0.62);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

/* Side */
.cf-contact .cf-contact-side-card{
  padding: 18px;
}

.cf-contact .cf-contact-side-title{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.68);
  margin-bottom: 12px;
}

.cf-contact .cf-contact-lines{
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.cf-contact .cf-contact-line{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.74);
  text-decoration: none;
  color: rgba(15,23,42,0.92);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cf-contact .cf-contact-line:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(15,23,42,0.10);
  border-color: rgba(215,180,106,0.24);
}

.cf-contact .cf-contact-line-ico{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,180,106,0.22);
  background: linear-gradient(135deg, rgba(215,180,106,0.18), rgba(255,255,255,0.70));
  color: rgba(15,23,42,0.92);
}

.cf-contact .cf-contact-line-text strong{
  display: block;
  font-weight: 1000;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.cf-contact .cf-contact-line-text span{
  display: block;
  color: rgba(15,23,42,0.66);
  font-weight: 750;
  line-height: 1.45;
}

/* Social */
.cf-contact .cf-contact-social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.cf-contact .cf-contact-social-link{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.76);
  color: rgba(15,23,42,0.82);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cf-contact .cf-contact-social-link:hover{
  transform: translateY(-1px);
  border-color: rgba(215,180,106,0.24);
  background: rgba(215,180,106,0.12);
}

/* Map */
.cf-contact .cf-contact-map{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  overflow: hidden;
  background: rgba(255,255,255,0.76);
}

.cf-contact .cf-contact-map-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.cf-contact .cf-contact-map-head strong{
  font-weight: 1000;
  color: rgba(15,23,42,0.92);
}

.cf-contact .cf-contact-map-head span{
  font-weight: 800;
  color: rgba(15,23,42,0.62);
}

.cf-contact .cf-contact-map-canvas{
  height: 300px;
}

/* Leaflet polish */
.cf-contact .leaflet-container{
  background: rgba(255,255,255,0.9);
}
.cf-contact .leaflet-control-zoom a{
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px){
  .cf-contact{ padding: 56px 0; }
  .cf-contact .cf-contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .cf-contact .cf-contact-row{ grid-template-columns: 1fr; }
  .cf-contact .cf-contact-card,
  .cf-contact .cf-contact-side-card{ border-radius: 22px; }
}



/* =========================
  LOGIN PAGE (cf-)
  Premium light glass layout
========================= */

.login-page {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
   radial-gradient(1000px 620px at 15% 8%, rgba(215, 180, 106, 0.20), transparent 60%),
   radial-gradient(1000px 620px at 95% 18%, rgba(59, 130, 246, 0.10), transparent 60%),
   radial-gradient(1000px 620px at 50% 110%, rgba(45, 212, 191, 0.10), transparent 60%),
   linear-gradient(180deg, #f8fafc 0%, #f5f7fc 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.login-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
   radial-gradient(520px 260px at 26% 16%, rgba(255, 255, 255, 0.55), transparent 70%),
   radial-gradient(520px 240px at 72% 24%, rgba(215, 180, 106, 0.12), transparent 72%);
  opacity: 0.9;
}

.login-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

.right-container {
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
   radial-gradient(520px 220px at 18% 0%, rgba(215, 180, 106, 0.14), transparent 62%),
   rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(22px, 3vw, 32px);
}

.right-container h1 {
  margin: 0 0 6px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.96);
  font-family: var(--cf-font-display);
}

.login-form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.login-form .form-label {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.70);
}

.login-form .form-control {
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.login-form .form-control:focus {
  border-color: rgba(215, 180, 106, 0.45);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.16);
}

.login-form .form-check-label {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
  font-size: 13px;
}

.login-form .btn.btn-primary {
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.35);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(255, 255, 255, 0.86));
  color: rgba(15, 23, 42, 0.95);
  font-weight: 1000;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.login-form .btn.btn-primary:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 180, 106, 0.55);
  box-shadow: 0 26px 90px rgba(15, 23, 42, 0.14);
}

.login-form a {
  color: rgba(15, 23, 42, 0.90);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.22);
}

.login-form a:hover {
  border-bottom-color: rgba(215, 180, 106, 0.65);
}

.cf-turnstile {
  margin-top: 8px;
  margin-bottom: 6px;
}

@media (max-width: 520px) {
  .right-container {
   border-radius: 22px;
   padding: 18px;
  }

  .login-form .btn.btn-primary {
   width: 100%;
   justify-content: center;
  }
}