/* =========================================
   Fox & Co. — Partners Page Styles
========================================= */

:root {
  --midnight-navy: #0C1424;
  --regal-gold: #D5B26E;
  --platinum-grey: #C9CDD4;
  --soft-ivory: #F5F2EA;
  --deep-slate: #1F2937;
  --royal-merlot: #6B2F3A;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

.fox-body {
  overflow-x: hidden;
}

body.fox-body {
  font-family: var(--font-sans);
  background: var(--midnight-navy);
  color: var(--soft-ivory);
}

a { text-decoration: none; }

strong {
  font-weight: 700;
  color: var(--soft-ivory);
}

.fox-container {
  padding-left: 40px;
  padding-right: 40px;
}

.fox-inner-container {
  padding-left: 20px;
  padding-right: 20px;
}

/* ========================================
   NAVBAR
   ======================================== */

.fox-navbar {
  background: rgba(12, 20, 36, 0.92);
  border-bottom: 1px solid rgba(213, 178, 110, 0.15);
  backdrop-filter: blur(12px);
  padding: 18px 0;
}

.fox-brand { gap: 14px; }

.fox-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(213, 178, 110, 0.95) 0%, rgba(213, 178, 110, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-navy);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.fox-brand:hover .fox-brand-mark {
    transform: translateY(-2px);
}

.fox-brand-name {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.4px;
  color: var(--soft-ivory);
  line-height: 1.1;
}

.fox-brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(201, 205, 212, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.fox-nav-links { gap: 6px; }

.fox-nav-link {
  color: rgba(245, 242, 234, 0.74) !important;
  padding: 10px 16px !important;
  border-radius: 0;
  transition: color 0.25s ease, opacity 0.25s ease;
  font-weight: 500;
  position: relative;
}

.fox-nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: rgba(213, 178, 110, 0.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.fox-nav-link.active {
  color: var(--soft-ivory) !important;
}

.fox-nav-link.active::after {
  transform: scaleX(1);
}

.fox-nav-link:hover {
  color: var(--soft-ivory) !important;
}

.fox-nav-link:hover::after {
  transform: scaleX(1);
}

.fox-nav-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(213, 178, 110, 0.28);
  color: var(--regal-gold);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.fox-nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(213, 178, 110, 0.06);
  border-color: rgba(213, 178, 110, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* ── Fox Toast ─────────────────────────────────────── */

.fox-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    min-width: 280px;
    max-width: 420px;
    background: #1a1f2e;
    border: 1px solid rgba(212, 175, 83, 0.25);
    border-left: 3px solid #d4af53;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.fox-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fox-toast.success {
    border-left-color: #4caf79;
}

.fox-toast.error {
    border-left-color: #c0392b;
}

.fox-toast.info {
    border-left-color: #d4af53;
}

.fox-toast-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #d4af53;
}

.fox-toast.success .fox-toast-icon {
    background: #4caf79;
}

.fox-toast.error .fox-toast-icon {
    background: #c0392b;
}

.fox-toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0 0 0 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.fox-toast-close:hover {
    color: #f5f0e8;
}

/* ========================================
   HERO
   ======================================== */

.fox-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-start;
}

.fox-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(213,178,110,0.045) 0px, rgba(213,178,110,0.045) 1px, transparent 1px, transparent 26px),
    repeating-linear-gradient(45deg, rgba(213,178,110,0.028) 0px, rgba(213,178,110,0.028) 1px, transparent 1px, transparent 32px),
    radial-gradient(900px circle at 20% 25%, rgba(213,178,110,0.12), transparent 60%),
    radial-gradient(800px circle at 70% 55%, rgba(107,47,58,0.10), transparent 55%),
    linear-gradient(180deg, #070C16 0%, #0C1424 60%, #0C1424 100%);
  pointer-events: none;
  z-index: 0;
}

.fox-hero > * { position: relative; z-index: 1; }

.fox-eyebrow {
  display: inline-block;
  border: 1px solid rgba(213, 178, 110, 0.25);
  background: rgba(31, 41, 55, 0.35);
  color: rgba(201, 205, 212, 0.95);
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 28px;
}

/* Eyebrow variant for ivory sections */
.fox-eyebrow-dark {
  background: rgba(31, 41, 55, 0.08);
  border: 1px solid rgba(31, 41, 55, 0.15);
  color: rgba(31, 41, 55, 0.65);
}

.fox-hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--soft-ivory);
  overflow-wrap: break-word;
}

.fox-hero-title-accent { color: var(--regal-gold); }

.fox-hero-body {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.85;
  color: rgba(201, 205, 212, 0.88);
  max-width: 640px;
  margin-bottom: 34px;
}

.fox-hero-cta-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.fox-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 14px 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  will-change: transform;
}

.fox-btn-gold {
  background: var(--regal-gold);
  border: 1px solid var(--regal-gold);
  color: var(--midnight-navy);
  box-shadow: 0 8px 20px rgba(12, 20, 36, 0.12);
}

.fox-btn-gold:hover {
  transform: translateY(-2px);
  background: #dcc081;
  border-color: #dcc081;
  box-shadow: 0 12px 26px rgba(12, 20, 36, 0.16);
}

.fox-btn-outline {
  background: transparent;
  border: 1px solid rgba(201, 205, 212, 0.25);
  color: var(--soft-ivory);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.fox-btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 178, 110, 0.45);
  background: rgba(213, 178, 110, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.fox-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(12, 20, 36, 0.12);
}

.fox-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(213, 178, 110, 0.2),
    0 10px 24px rgba(12, 20, 36, 0.12);
}

#partnerSubmitBtn {
  width: auto;
  min-width: 260px;
  max-width: 340px;
}

.fox-scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  opacity: 0.9;
}

.fox-scroll-text {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(201, 205, 212, 0.75);
  margin-bottom: 10px;
}

.fox-scroll-line {
  width: 2px;
  height: 36px;
  margin: 0 auto;
  background: rgba(213, 178, 110, 0.6);
  border-radius: 2px;
  animation: fox-scroll-pulse 1.6s ease-in-out infinite;
}

@keyframes fox-scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Sections */
.fox-section { padding: 110px 0; }

.fox-section-ivory {
  background: var(--soft-ivory);
  color: var(--deep-slate);
}

.fox-section-journey {
  background: #0a111f;
  position: relative;
}

/* Typography */
.fox-h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 3.6rem;
  margin-bottom: 22px;
  color: var(--soft-ivory);
}

.fox-h2-dark { color: var(--deep-slate); }

.fox-subhead {
  color: rgba(201, 205, 212, 0.86);
  font-size: 1.25rem;
  line-height: 1.9;
  max-width: 560px;
}

.fox-subhead-dark { color: rgba(31, 41, 55, 0.85); }

.fox-h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: var(--soft-ivory);
}

.fox-h3-dark { color: var(--deep-slate); }

.fox-h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(213, 178, 110, 0.9);
  margin-bottom: 10px;
}

.fox-p {
  color: rgba(201, 205, 212, 0.9);
  line-height: 1.9;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.fox-p-dark {
  color: rgba(31, 41, 55, 0.78);
  line-height: 1.8;
}

.fox-list {
  margin: 22px 0 0 0;
  padding-left: 18px;
  color: rgba(201, 205, 212, 0.9);
  line-height: 2;
}

.fox-list-dark { color: rgba(31, 41, 55, 0.85); }

.fox-divider {
  border: 0;
  height: 1px;
  background: rgba(201, 205, 212, 0.12);
  margin: 22px 0;
}

.fox-divider-dark { background: rgba(31, 41, 55, 0.12); }

/* Cards */
.fox-card {
  border-radius: 26px;
  padding: 46px 34px;
  box-shadow: 0 12px 30px rgba(12, 20, 36, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.fox-card-navy {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 205, 212, 0.10);
}

.fox-card-ivory {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 41, 55, 0.10);
}

.fox-card:hover {
  transform: none;
  box-shadow: 0 16px 32px rgba(12, 20, 36, 0.06);
}

.fox-card-fixed { height: 100%; }

/* ========================================
   MARKET OPPORTUNITY — Redesigned
   ======================================== */

/* Big stat anchor */
.fox-stat-anchor {
  text-align: right;
  padding-bottom: 8px;
}

.fox-stat-number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: var(--deep-slate);
  letter-spacing: -2px;
}

.fox-stat-plus {
  color: var(--regal-gold);
  font-size: 0.6em;
  vertical-align: super;
}

.fox-stat-label {
  font-size: 0.95rem;
  color: rgba(31, 41, 55, 0.65);
  line-height: 1.6;
  margin-top: 10px;
}

/* Market panels */
.fox-market-panel {
  border-radius: 26px;
  padding: 42px 36px;
  height: 100%;
}

.fox-market-panel-primary {
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

.fox-market-panel-accent {
  background: var(--midnight-navy);
  border: 1px solid rgba(213, 178, 110, 0.15);
  box-shadow: 0 20px 60px rgba(12, 20, 36, 0.25);
}

.fox-market-panel-accent > *:last-child {
  margin-bottom: 0;
}

.fox-market-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--regal-gold);
  margin-bottom: 10px;
}

.fox-market-label-light {
  color: rgba(213, 178, 110, 0.7);
}

/* Gap list items */
.fox-gap-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fox-gap-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fox-gap-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(213, 178, 110, 0.12);
  border: 1px solid rgba(213, 178, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--regal-gold);
  letter-spacing: 0;
}

.fox-gap-text {
  margin: 0;
  color: rgba(31, 41, 55, 0.82);
  line-height: 1.7;
  font-size: 1rem;
}

/* Demand grid */
.fox-demand-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.fox-demand-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(201, 205, 212, 0.92);
  font-size: 1.05rem;
}

.fox-demand-mark {
  color: var(--regal-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fox-market-conclusion {
  background: rgba(213, 178, 110, 0.10);
  border-left: 3px solid var(--regal-gold);
  padding: 16px 20px;
  border-radius: 12px;
  color: rgba(201, 205, 212, 0.92);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ========================================
   SERVICES — Refined
   ======================================== */

.fox-service-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--regal-gold);
  margin-bottom: 12px;
}

.fox-service-line {
  width: 100%;
  max-width: 140px;
  height: 1px;
  background: rgba(213, 178, 110, 0.28);
}

.fox-service-hero {
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.10);
  border-radius: 28px;
  padding: 48px 42px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.fox-service-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(12, 20, 36, 0.08);
}

.fox-service-hero-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.fox-service-hero-top .fox-service-label {
  margin-bottom: 0;
  white-space: nowrap;
}

.fox-service-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--deep-slate);
  margin-bottom: 16px;
  font-weight: 800;
}

.fox-service-hero-body {
  margin: 0;
  color: rgba(31, 41, 55, 0.76);
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 560px;
}

.fox-service-hero-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fox-service-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.98rem;
  color: rgba(31, 41, 55, 0.82);
}

.fox-service-point-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--regal-gold);
  flex-shrink: 0;
}

.fox-service-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 41, 55, 0.10);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(12, 20, 36, 0.05);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.fox-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(12, 20, 36, 0.08);
}

.fox-service-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--deep-slate);
  margin-bottom: 12px;
}

.fox-service-card-body {
  margin: 0;
  color: rgba(31, 41, 55, 0.74);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ========================================
   JOURNEY
   ======================================== */

.fox-journey-flow {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.fox-journey-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 100px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(213,178,110,0.3) 0%, rgba(213,178,110,0.6) 50%, rgba(213,178,110,0.3) 100%);
  transform: translateX(-1px);
  z-index: 0;
}

.fox-journey-step {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.fox-journey-step-right {
  justify-content: flex-end;
  padding-left: 50%;
  padding-right: 0;
}

.fox-journey-step-right .fox-journey-card { margin-left: 60px; }

.fox-journey-step-left {
  justify-content: flex-start;
  padding-right: 50%;
  padding-left: 0;
}

.fox-journey-step-left .fox-journey-card { margin-right: 60px; }

.fox-journey-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--regal-gold);
  border: 4px solid #0a111f;
  box-shadow: 0 0 0 2px rgba(213, 178, 110, 0.3);
  z-index: 2;
}

.fox-journey-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 205, 212, 0.10);
  border-radius: 26px;
  padding: 40px 38px;
  position: relative;
  transition: all 0.35s ease;
  z-index: 1;
}

.fox-journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  border-color: rgba(213, 178, 110, 0.2);
}

.fox-journey-number {
  position: absolute;
  top: -18px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(213,178,110,0.95) 0%, rgba(213,178,110,0.75) 100%);
  border: 3px solid #0a111f;
  color: var(--midnight-navy);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.fox-journey-step-left .fox-journey-number {
  right: auto;
  left: 30px;
}

.fox-journey-result {
  background: rgba(213, 178, 110, 0.08);
  border-left: 3px solid var(--regal-gold);
  padding: 16px 20px;
  border-radius: 12px;
  color: rgba(201, 205, 212, 0.95);
  font-size: 1.05rem;
}

.fox-journey-result strong { color: var(--regal-gold); font-weight: 700; }

/* non-.fox-card */

.fox-market-panel,
.fox-criteria-panel,
.fox-goal-statement,
.fox-reputation-banner,
.fox-partner-form-card {
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Subtle refinement instead of movement */
.fox-market-panel:hover,
.fox-criteria-panel:hover,
.fox-partner-form-card:hover {
  box-shadow: 0 18px 38px rgba(12, 20, 36, 0.06);
}

/* No hover effect at all (purely editorial elements) */
.fox-goal-statement:hover,
.fox-reputation-banner:hover {
  box-shadow: none;
}

.fox-market-panel-primary:hover,
.fox-criteria-panel:hover,
.fox-partner-form-card:hover {
  box-shadow: 0 18px 38px rgba(12, 20, 36, 0.08);
}

.fox-market-panel-accent:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
 }

/* ========================================
   BRAND PARTNERSHIPS — Redesigned
   ======================================== */

/* Numbered reasons (left column) */
.fox-partner-reasons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fox-partner-reason {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.10);
}

.fox-partner-reason:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fox-partner-reason-num {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--regal-gold);
  padding-top: 2px;
  min-width: 48px;
}

.fox-partner-reason-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--deep-slate);
  margin-bottom: 6px;
}

.fox-partner-reason-body {
  margin: 0;
  color: rgba(31, 41, 55, 0.72);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* Criteria checklist panel (right column) */
.fox-criteria-panel {
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.10);
  border-radius: 26px;
  padding: 38px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

.fox-criteria-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fox-criteria-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: rgba(31, 41, 55, 0.85);
}

.fox-criteria-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(213, 178, 110, 0.15);
  border: 1px solid rgba(213, 178, 110, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--regal-gold);
  font-weight: 700;
}

/* Goal statement */
.fox-goal-statement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--midnight-navy);
  border-radius: 26px;
  padding: 34px 36px;
}

.fox-goal-bar {
  flex-shrink: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--regal-gold), rgba(213,178,110,0.4));
  align-self: stretch;
}

.fox-goal-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--platinum-grey);
  margin: 0;
}

/* ========================================
   TRUST — Reputation Banner
   ======================================== */

/* ========================================
   TRUST — Light refinement
   ======================================== */

.fox-trust-card {
  padding-top: 36px;
}

.fox-trust-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--regal-gold);
}

.fox-trust-list {
  margin-top: 18px;
  padding-left: 20px;
}

.fox-trust-list li {
  margin-bottom: 10px;
}

.fox-trust-list li:last-child {
  margin-bottom: 0;
}

.fox-reputation-banner {
  display: grid;
  grid-template-columns: 3px 1fr;
  column-gap: 18px;

  padding: 0;              /* 🔑 remove card padding */
  margin-top: 10px;        /* optional spacing */

  align-items: start;
}

.fox-reputation-bar {
  flex-shrink: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--regal-gold), rgba(213,178,110,0.35));
  align-self: stretch;
}

.fox-reputation-content { flex: 1; }

.fox-reputation-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--regal-gold);
  margin-bottom: 12px;
}

.fox-reputation-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.7;
  color: var(--platinum-grey);
  margin: 0;
  
}

/* ========================================
   CONTACT
   ======================================== */

/* ========================================
   PREMIUM PARTNER FORM
======================================== */

.fox-nowrap {
  white-space: nowrap;
}

.fox-partner-form-card{
background:#fff;
border:1px solid rgba(31,41,55,0.10);
border-radius:26px;
padding:46px 44px;
box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.fox-form-header {
  display: grid;
  grid-template-columns: 4px 1fr;
  column-gap: 16px;
  align-items: start;
  margin-bottom: 10px;
}

.fox-form-header-content {
  text-align: left;
}

.fox-form-header-content .fox-h3-dark,
.fox-form-header-content .fox-form-subhead {
  margin-left: 0;
}

.fox-form-accent {
  width: 4px;
  height: 100%;
  min-height: 68px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(213, 178, 110, 1),
    rgba(213, 178, 110, 0.35)
  );
  box-shadow: 0 0 18px rgba(213, 178, 110, 0.18);
}

.fox-form-subhead{
margin:6px 0 0 0;
color:rgba(31,41,55,0.65);
font-size:0.95rem;
line-height:1.6;
}

.fox-form-footer{
margin-top:36px;
text-align:center;
}

/* Error state */

.fox-field-error .fox-input{
border-color:#b94a48;
}

.fox-error-msg{
display:block;
margin-top:6px;
font-size:0.85rem;
color:#b94a48;
}

/* Disclaimer */

.fox-disclaimer{
font-size:0.85rem;
color:rgba(31,41,55,0.6);
line-height:1.6;
}

.fox-contact-intro {
  font-size: 1.1rem;
  color: rgba(31, 41, 55, 0.65);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 0;
}

.fox-contact-form-wrap {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.fox-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.75);
  margin-bottom: 8px;
}

.fox-input {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 41, 55, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.fox-input:focus {
  outline: none;
  box-shadow: none;
  border-color: rgba(213, 178, 110, 0.55);
}

/* ========================================
   FOOTER
   ======================================== */

.fox-footer {
  background: #070c16;
  border-top: 1px solid rgba(213, 178, 110, 0.12);
  padding: 64px 0 40px 0;
}

.fox-footer-brand-wrap {
  margin-bottom: 22px;
}

.fox-footer-brand {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--soft-ivory);
    margin-bottom: 18px;
}

.fox-footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(201, 205, 212, 0.68);
  line-height: 1.7;
}

.fox-footer-links {
  margin-bottom: 20px;
}

.fox-footer-links a {
  color: rgba(201, 205, 212, 0.82);
  font-size: 0.94rem;
  transition: color 0.25s ease;
}

.fox-footer-links a:hover {
  color: var(--regal-gold);
}

.fox-footer-sep {
  color: rgba(201, 205, 212, 0.28);
  margin: 0 10px;
}

.fox-footer-small {
  font-size: 0.82rem;
  color: rgba(201, 205, 212, 0.58);
}

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

@media (max-width: 991px) {
  .fox-container { padding-left: 20px; padding-right: 20px; }
  .fox-navbar { padding: 16px 0; }
  .navbar-collapse {
    margin-top: 0;
    padding: 0;
    border-top: 0;
  }

  .fox-nav-links {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(213, 178, 110, 0.12);
  }

  .fox-nav-links .nav-item.ms-lg-3 {
    margin-top: 10px !important;
    padding-top: 14px;
    border-top: 1px solid rgba(213, 178, 110, 0.12);
  }

  .fox-nav-link {
    padding: 12px 0 !important;
    text-align: left;
  }

  .fox-nav-link::after {
    left: 0;
    right: auto;
    width: 42px;
    bottom: 4px;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .fox-nav-link:hover::after {
    transform: scaleX(1);
  }

  .fox-nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding: 12px 20px;
  }

  .fox-section { padding: 70px 0; }
  .fox-stat-anchor { text-align: left; margin-top: 20px; }
}

@media (max-width: 768px) {
  .fox-h2 { font-size: 2.8rem; }
}

@media (max-width: 576px) {
  .fox-container { padding-left: 15px; padding-right: 15px; }
  .fox-hero { min-height: auto; padding-top: 110px; padding-bottom: 90px; }
  .fox-scroll-indicator { display: none; }
  .fox-hero-cta-wrap { flex-direction: column; align-items: stretch; gap: 12px; }
  .fox-btn { width: 100%; text-align: center; padding: 14px 20px; }
  .fox-h2 { font-size: 2.3rem; }
  .fox-section { padding: 60px 0; }

  #market {
    padding-bottom: 50px;
  }

  #services {
    padding-top: 50px;
  }

  /* Services mobile */
  .fox-service-hero {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .fox-service-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .fox-service-hero-top {
    gap: 12px;
    margin-bottom: 20px;
  }

  .fox-service-line {
    max-width: 80px;
  }

  .fox-service-hero-title {
    font-size: 1.75rem;
  }

  .fox-service-hero-body {
    font-size: 1rem;
    line-height: 1.8;
  }

  .fox-service-point {
    padding: 12px 14px;
  }

  /* Journey mobile */
  .fox-journey-flow::before { left: 30px; top: 30px; bottom: 30px; }
  .fox-journey-step-right,
  .fox-journey-step-left {
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }
  .fox-journey-step-right .fox-journey-card,
  .fox-journey-step-left .fox-journey-card {
    margin-left: 70px;
    margin-right: 0;
  }
  .fox-journey-connector { left: 30px; transform: translate(-50%, -50%); }
  .fox-journey-card { padding: 34px 24px; }
  .fox-journey-number {
    width: 50px; height: 50px; font-size: 1.2rem;
    top: -16px; right: 20px;
  }
  .fox-journey-step-left .fox-journey-number { left: auto; right: 20px; }

  /* Partnership mobile */
  .fox-partner-reason { gap: 16px; }
  .fox-partner-reason-num { font-size: 1.8rem; min-width: 38px; }

  /* Reputation banner mobile */
  .fox-reputation-banner { padding: 28px 24px; }
  .fox-reputation-statement { font-size: 1.05rem; }

  /* Fox Toast */
  .fox-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: unset;
        max-width: unset;
        width: calc(100% - 2rem);
    }

    #partnerSubmitBtn {
    width: 100%;
    min-width: 0;
  }

  .fox-partner-form-card {
    padding: 30px 22px;
    border-radius: 22px;
  }
}



  