/* ================================================
   CAREFRONT USA — GLOBAL STYLESHEET
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === CSS VARIABLES === */
:root {
  --navy:     #0A0F1E;
  --gold:     #C9A84C;
  --gold-lt:  #DFC069;
  --white:    #F5F5F5;
  --card:     #111827;
  --card2:    #161f35;
  --slate:    #8A95A3;
  --teal:     #0ABFBF;
  --teal-lt:  #12d9d9;
  --red:      #ff6b6b;
  --border:   rgba(201,168,76,0.16);
  --border-s: rgba(255,255,255,0.07);

  --f-d: 'Plus Jakarta Sans', sans-serif;
  --f-b: 'Inter', sans-serif;
  --f-m: 'Inter', sans-serif;

  --wrap: 1160px;
  --nav-h: 72px;
  --sv: 96px;
}

/* === BASE === */
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-b);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === LAYOUT === */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--sv) 0; }

.eyebrow {
  font-family: var(--f-m);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--f-d);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-body {
  font-size: 1.025rem;
  color: var(--slate);
  line-height: 1.78;
}

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-body { max-width: 640px; margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 5px;
  font-family: var(--f-d);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-teal { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,15,30,0.2);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-s);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 56px; width: auto; mix-blend-mode: lighten; }
.nav-logo-name {
  font-family: var(--f-d);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > li > a {
  font-family: var(--f-b);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--white); }

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: var(--card2);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--white);
  font-size: 0.875rem;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); }
.dd-icon {
  width: 28px; height: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dd-icon svg { width: 15px; height: 15px; color: var(--gold); stroke: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,15,30,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-s);
  z-index: 98;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.28s ease;
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-s);
  transition: color 0.2s;
  display: block;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { border-bottom: none; margin-top: 18px; text-align: center; justify-content: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 400px) {
  .nav-inner { padding: 0 16px; }
}

/* Ticker when first element (replaces nav-h offset in hero) */
.ticker-top { margin-top: var(--nav-h); }

/* Logo text — always visible alongside logo image */
.nav-logo-fallback { display: none; }
.footer-logo-fallback { display: none; }
.footer-logo-name {
  font-family: var(--f-d);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  display: block;
}

/* === HERO (HOME) === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(201,168,76,0.1) 0%, transparent 68%),
    radial-gradient(ellipse 55% 40% at 88% 92%, rgba(10,191,191,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--f-m);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.hero-headline {
  font-family: var(--f-d);
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 26px;
}
.hero-headline .line2 { display: block; color: var(--gold); }

/* Word cycling */
.cycle-word {
  color: var(--gold);
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cycle-word.exiting { opacity: 0; transform: translateY(-10px); }
.cycle-word.entering { animation: cycleIn 0.3s ease forwards; }
@keyframes cycleIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--slate);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.78;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* === TICKER === */
.ticker {
  background: var(--card);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-wrapper { display: flex; overflow: hidden; }
.ticker-track {
  display: flex;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-family: var(--f-m);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
  gap: 0;
}
.ticker-item strong { color: var(--gold); }
.ticker-sep { color: var(--teal); padding: 0 14px; font-size: 1.1rem; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === THE PROBLEM === */
.problem-section { padding: var(--sv) 0; }
.problem-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 768px) { .problem-inner { grid-template-columns: 1fr; gap: 48px; } }
.problem-body {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.82;
}

/* === MONEY COIN SCENE === */
.problem-gauge-col { display: flex; flex-direction: column; align-items: center; }
.money-scene {
  position: relative;
  width: 300px; height: 270px;
  overflow: visible;
}
.money-pile-svg { position: absolute; bottom: 0; left: 0; width: 100%; }
.money-coin {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #E8C96A, #C9A84C 60%, #A07820);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-d); font-weight: 800; font-size: 0.9rem;
  color: rgba(10,15,30,0.6);
  box-shadow: 0 4px 14px rgba(201,168,76,0.5);
  bottom: 55px; left: 50%;
  opacity: 0;
  transform: translate(-50%, 0);
}
.money-scene.animated .mc1 { animation: mFly1 2.4s ease-out 0s infinite; }
.money-scene.animated .mc2 { animation: mFly2 2.6s ease-out 0.45s infinite; }
.money-scene.animated .mc3 { animation: mFly3 2.2s ease-out 0.9s infinite; }
.money-scene.animated .mc4 { animation: mFly4 2.8s ease-out 0.2s infinite; }
.money-scene.animated .mc5 { animation: mFly5 2.3s ease-out 1.1s infinite; }
.money-scene.animated .mc6 { animation: mFly6 2.5s ease-out 0.65s infinite; }
@keyframes mFly1 {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  12%  { opacity: 1; transform: translate(calc(-50% - 55px), -35px) scale(1); }
  65%  { opacity: 1; transform: translate(calc(-50% - 108px), -155px) scale(0.9); }
  82%  { opacity: 0; transform: translate(calc(-50% - 118px), -195px) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
}
@keyframes mFly2 {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  12%  { opacity: 1; transform: translate(calc(-50% + 48px), -30px) scale(1); }
  65%  { opacity: 1; transform: translate(calc(-50% + 98px), -148px) scale(0.9); }
  82%  { opacity: 0; transform: translate(calc(-50% + 112px), -188px) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
}
@keyframes mFly3 {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  12%  { opacity: 1; transform: translate(calc(-50% - 18px), -28px) scale(1); }
  65%  { opacity: 1; transform: translate(calc(-50% - 28px), -168px) scale(0.9); }
  82%  { opacity: 0; transform: translate(calc(-50% - 32px), -208px) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
}
@keyframes mFly4 {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  12%  { opacity: 1; transform: translate(calc(-50% + 75px), -18px) scale(1); }
  65%  { opacity: 1; transform: translate(calc(-50% + 125px), -128px) scale(0.9); }
  82%  { opacity: 0; transform: translate(calc(-50% + 136px), -162px) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
}
@keyframes mFly5 {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  12%  { opacity: 1; transform: translate(calc(-50% + 8px), -45px) scale(1); }
  65%  { opacity: 1; transform: translate(calc(-50% + 16px), -182px) scale(0.9); }
  82%  { opacity: 0; transform: translate(calc(-50% + 20px), -222px) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
}
@keyframes mFly6 {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  12%  { opacity: 1; transform: translate(calc(-50% - 65px), -22px) scale(1); }
  65%  { opacity: 1; transform: translate(calc(-50% - 80px), -142px) scale(0.9); }
  82%  { opacity: 0; transform: translate(calc(-50% - 86px), -182px) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
}
@media (max-width: 768px) { .money-scene { width: 240px; height: 220px; } }

/* === SOLUTIONS CARDS === */
.solutions-section {
  padding: var(--sv) 0;
  background: linear-gradient(180deg, rgba(17,24,39,0.5) 0%, transparent 100%);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .solutions-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.solution-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.solution-card:hover {
  border-color: rgba(201,168,76,0.32);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.solution-card:hover::before { opacity: 1; }
.sol-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(10,191,191,0.1);
  border: 1px solid rgba(10,191,191,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.sol-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.sol-title {
  font-family: var(--f-d);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.sol-body {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 26px;
}
.sol-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-d);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.2s;
  margin-top: auto;
  text-decoration: none;
}
.solution-card:hover .sol-cta { gap: 10px; }
.sol-arrow { transition: transform 0.2s; display: inline-block; }
.solution-card:hover .sol-arrow { transform: translateX(4px); }

/* === HOW IT WORKS === */
.hiw-section { padding: var(--sv) 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }

.step {
  background: var(--card);
  border: 1px solid var(--border-s);
  padding: 32px 24px;
  opacity: 0.42;
  transition: opacity 0.5s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s ease;
}
.step.lit { opacity: 1; border-color: rgba(201,168,76,0.22); }
.step.lit::after { transform: scaleX(1); }
.step-num {
  font-family: var(--f-d);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.4s;
}
.step.lit .step-num { color: rgba(201,168,76,0.28); }
.step-title {
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-body { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* === SAVINGS ESTIMATOR === */
.estimator-section {
  padding: var(--sv) 0;
  background: var(--card);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
}
.estimator-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.estimator-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--teal) 65%, transparent);
}
.estimator-headline {
  font-family: var(--f-d);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.estimator-sub {
  font-size: 0.95rem;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.slider-group { margin-bottom: 36px; }
.slider-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.slider-lbl {
  font-family: var(--f-m);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.slider-count {
  font-family: var(--f-d);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
input[type="range"].est-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type="range"].est-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(201,168,76,0.5);
  transition: transform 0.15s;
}
input[type="range"].est-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type="range"].est-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer; border: none;
  box-shadow: 0 2px 12px rgba(201,168,76,0.5);
}
.est-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 540px) { .est-outputs { grid-template-columns: 1fr; } }
.est-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.13);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: left;
}
.est-lbl {
  font-family: var(--f-m);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 8px;
}
.est-val {
  font-family: var(--f-d);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.est-val.sm { font-size: 1.25rem; }
.est-disclaimer {
  font-size: 0.74rem;
  color: var(--slate);
  opacity: 0.65;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 28px;
}
@media (max-width: 600px) { .estimator-box { padding: 36px 20px; } }

/* === WHO WE SERVE === */
.serve-section { padding: var(--sv) 0; }
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .serve-grid { grid-template-columns: 1fr; } }
.serve-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 14px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.serve-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(10,191,191,0.08);
  border: 1px solid rgba(10,191,191,0.2);
  border-radius: 20px;
  font-family: var(--f-m);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
  align-self: flex-start;
}
.serve-card h3 {
  font-family: var(--f-d);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.serve-card p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.78;
  margin-bottom: 28px;
  flex: 1;
}
@media (max-width: 480px) { .serve-card { padding: 28px 22px; } }

/* === PARTNER TEASER === */
.partner-teaser {
  padding: var(--sv) 0;
  background: var(--card);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partner-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(10,191,191,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.partner-teaser h2 {
  font-family: var(--f-d);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.14;
}
.partner-teaser p {
  font-size: 1rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.78;
}

/* === BOTTOM CTA === */
.bottom-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta h2 {
  font-family: var(--f-d);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.1;
}
.bottom-cta p {
  font-size: 1rem;
  color: var(--slate);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.78;
}
.cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* === FOOTER === */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border-s);
  padding: 60px 0 32px;
}
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-s);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-img { height: 52px; mix-blend-mode: lighten; margin-bottom: 14px; }
.footer-tagline { font-size: 0.875rem; color: var(--slate); line-height: 1.65; max-width: 250px; margin-bottom: 16px; }
.footer-email a { font-family: var(--f-m); font-size: 0.8rem; color: var(--teal); transition: color 0.2s; }
.footer-email a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: var(--f-m);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--slate);
  opacity: 0.6;
  max-width: 580px;
  line-height: 1.65;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--slate);
  opacity: 0.45;
  white-space: nowrap;
  margin-top: 2px;
}

/* === MOBILE STICKY CTA === */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-s);
  z-index: 90;
}
@media (max-width: 640px) { .mobile-sticky { display: block; } }
@media (max-width: 640px) { body { padding-bottom: 64px; } }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ================================================
   PAGE HEROES (product pages)
   ================================================ */
.page-hero {
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ph-inner { max-width: 820px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--f-d);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}
.page-hero .ph-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--slate);
  line-height: 1.78;
  max-width: 640px;
  margin: 0 auto 36px;
}
.ph-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .ph-cta-group { flex-direction: column; max-width: 320px; margin: 0 auto; }
  .ph-cta-group .btn { width: 100%; justify-content: center; }
}

/* Alert banner (product pages) */
.alert-banner {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 40px;
}
.ab-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.alert-banner p { font-size: 0.875rem; line-height: 1.55; }
.alert-banner p strong { color: var(--gold); }

/* ================================================
   TWO COLUMN LAYOUTS
   ================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col-rev { direction: rtl; }
.two-col-rev > * { direction: ltr; }

/* ================================================
   CONTENT BOXES
   ================================================ */
.content-box {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 12px;
  padding: 32px;
}
.callout-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.callout-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px 2px 0 0;
}
.callout-box h3 {
  font-family: var(--f-d);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.callout-box p { font-size: 0.95rem; color: var(--slate); line-height: 1.7; }

/* ================================================
   CHECKLIST
   ================================================ */
.cf-checklist { display: flex; flex-direction: column; gap: 12px; }
.cf-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; line-height: 1.5;
}
.ck {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(10,191,191,0.1);
  border: 1px solid rgba(10,191,191,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ================================================
   PROCESS STEPS (product pages)
   ================================================ */
.process-steps { display: flex; flex-direction: column; }
.ps-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-s);
}
.ps-item:last-child { border-bottom: none; }
.ps-n {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-d);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.ps-body h4 {
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.ps-body p { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }

/* ================================================
   BENEFITS GRID (workforce)
   ================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.2s;
}
.benefit-card:hover { border-color: rgba(10,191,191,0.25); }
.benefit-card h4 {
  font-family: var(--f-d);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.benefit-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

/* ================================================
   IMPACT GRID (workforce employer)
   ================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 12px;
  padding: 28px;
}
.impact-card h4 {
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.impact-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ================================================
   COMPARISON TABLE (ERTC)
   ================================================ */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; border: 1px solid var(--border-s); }
.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table thead th {
  font-family: var(--f-d);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-s);
  background: var(--card);
}
.compare-table thead th:first-child { color: var(--slate); font-weight: 500; font-family: var(--f-b); }
.compare-table thead th:nth-child(2) {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.compare-table thead th:nth-child(3) { color: var(--slate); }
.compare-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-s);
  color: var(--slate);
  vertical-align: middle;
  background: var(--card);
}
.compare-table tbody td:first-child { color: var(--white); font-weight: 500; }
.compare-table tbody td:nth-child(2) {
  color: var(--gold);
  font-family: var(--f-d);
  font-weight: 700;
  background: rgba(201,168,76,0.04);
}
.compare-table tbody td.yes { color: var(--teal); font-weight: 600; }
.compare-table tbody td.no { color: rgba(255,107,107,0.8); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ================================================
   NOTES BOX (ERTC)
   ================================================ */
.notes-box {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 12px;
  padding: 36px;
  max-width: 680px;
}
.notes-box ul { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.notes-box ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--slate); line-height: 1.65;
}
.notes-box ul li::before { content: '→'; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ================================================
   PARTNER TABS
   ================================================ */
.partner-tabs-section { padding: var(--sv) 0; }
.p-tabs-nav {
  display: flex;
  position: relative;
  border-bottom: 1px solid var(--border-s);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.p-tabs-nav::-webkit-scrollbar { display: none; }
.p-tab-btn {
  padding: 13px 30px;
  font-family: var(--f-d);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
  white-space: nowrap;
}
.p-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.p-tab-panel { display: none; }
.p-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  animation: fadeUp 0.3s ease;
}
@media (max-width: 768px) { .p-tab-panel.active { grid-template-columns: 1fr; gap: 32px; } }

/* Mobile accordion */
@media (max-width: 640px) {
  .p-tabs-nav {
    flex-direction: column;
    border-bottom: none;
    gap: 0;
  }
  .p-tab-btn {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-s);
    border-left: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
  }
  .p-tab-btn::after { content: '+'; font-size: 1.1rem; color: var(--slate); }
  .p-tab-btn.active::after { content: '−'; color: var(--gold); }
  .p-tab-panel.active {
    padding: 20px 0 28px;
    border-bottom: 1px solid var(--border-s);
  }
}

.tab-body { font-size: 0.95rem; color: var(--slate); line-height: 1.78; margin-bottom: 20px; }
.tab-ideal {
  padding: 14px 16px;
  background: rgba(10,191,191,0.06);
  border: 1px solid rgba(10,191,191,0.15);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.55;
}
.tab-ideal strong { color: var(--teal); font-family: var(--f-m); letter-spacing: 0.06em; font-size: 0.7rem; text-transform: uppercase; }

/* ================================================
   PARTNER BENEFITS
   ================================================ */
.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .partner-benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .partner-benefits-grid { grid-template-columns: 1fr; } }
.pb-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  padding: 22px 18px;
  display: flex; align-items: flex-start; gap: 12px;
}
.pb-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
}
.pb-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.55; }

/* ================================================
   FORMS
   ================================================ */
.form-section { padding: var(--sv) 0; }
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 16px;
  padding: 48px;
}
@media (max-width: 640px) { .form-wrap { padding: 28px 20px; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field.full { grid-column: 1 / -1; }
.f-field label {
  font-family: var(--f-m);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.f-field label .req { color: var(--gold); margin-left: 2px; }
.f-field input,
.f-field select,
.f-field textarea {
  background: var(--navy);
  border: 1px solid var(--border-s);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--f-b);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: rgba(201,168,76,0.45); }
.f-field input.err,
.f-field select.err,
.f-field textarea.err { border-color: rgba(255,100,100,0.5); }
.f-field input::placeholder,
.f-field textarea::placeholder { color: rgba(138,149,163,0.4); }
.f-field select {
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238A95A3' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.f-field select option { background: #111827; }
.f-field textarea { resize: vertical; min-height: 88px; }
.f-err-msg {
  font-size: 0.74rem;
  color: #ff8a8a;
  display: none;
}
.f-field.has-err .f-err-msg { display: block; }
.f-field.has-err input,
.f-field.has-err select,
.f-field.has-err textarea { border-color: rgba(255,100,100,0.5); }

/* Checkbox group */
.checkbox-group {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.checkbox-group.has-err .cb-err { display: block; }
.cb-err { font-size: 0.74rem; color: #ff8a8a; display: none; margin-top: 4px; }
.cb-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; cursor: pointer;
}
.cb-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer; flex-shrink: 0;
}
.cb-label span { color: var(--white); }

/* Form confirmation state */
.form-confirm {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-confirm.vis { display: block; }
.confirm-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(10,191,191,0.1);
  border: 1px solid rgba(10,191,191,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 22px;
}
.form-confirm h3 {
  font-family: var(--f-d);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.form-confirm p { font-size: 0.95rem; color: var(--slate); line-height: 1.75; margin-bottom: 24px; }

/* ================================================
   COUNTRY BADGES (tariff)
   ================================================ */
.country-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.country-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 20px;
  padding: 7px 14px;
  font-family: var(--f-m);
  font-size: 0.78rem; font-weight: 500;
}

/* ================================================
   GENERAL CONTENT SECTIONS
   ================================================ */
.content-section { padding: var(--sv) 0; }
.alt-bg { background: linear-gradient(180deg, rgba(17,24,39,0.5) 0%, transparent 100%); }
.dark-bg {
  background: var(--card);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
}

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

/* ================================================
   UNCOVER / PIG SECTION (home page)
   ================================================ */
.uncover-section {
  padding: var(--sv) 0;
  background: var(--card);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  overflow: hidden;
}
.uncover-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .uncover-inner { grid-template-columns: 1fr; gap: 52px; }
}
.pig-scene {
  position: relative;
  width: 300px;
  height: 280px;
  margin: 0 auto;
}
.pig-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.22)) drop-shadow(0 0 20px rgba(201,168,76,0.1));
}
.pig-scene.animated .pig-svg {
  animation: pigWobble 0.5s ease;
}
@keyframes pigWobble {
  0%,100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-2.5deg) scale(1.02); }
  75% { transform: rotate(2.5deg) scale(1.02); }
}
.pig-coin {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 55%, var(--gold) 100%);
  color: var(--navy);
  font-family: var(--f-d);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  pointer-events: none;
}
.pc1 { top: 20px; left: 50%; }
.pc2 { top: 40px; left: 22%; }
.pc3 { top: 40px; right: 22%; }
.pc4 { top: 8px; left: 34%; }
.pc5 { top: 8px; right: 30%; }
.pc6 { top: 65px; left: 48%; }

.pig-scene.animated .pc1 { animation: cFly1 0.75s 0.05s cubic-bezier(0.15,0.85,0.35,1) forwards; }
.pig-scene.animated .pc2 { animation: cFly2 0.72s 0.2s  cubic-bezier(0.15,0.85,0.35,1) forwards; }
.pig-scene.animated .pc3 { animation: cFly3 0.72s 0.33s cubic-bezier(0.15,0.85,0.35,1) forwards; }
.pig-scene.animated .pc4 { animation: cFly4 0.68s 0.45s cubic-bezier(0.15,0.85,0.35,1) forwards; }
.pig-scene.animated .pc5 { animation: cFly5 0.68s 0.57s cubic-bezier(0.15,0.85,0.35,1) forwards; }
.pig-scene.animated .pc6 { animation: cFly6 0.65s 0.7s  cubic-bezier(0.15,0.85,0.35,1) forwards; }

@keyframes cFly1 {
  0%   { opacity:0; transform:translateX(-50%) translateY(18px) scale(0.5); }
  55%  { opacity:1; }
  100% { opacity:1; transform:translateX(-50%) translateY(-58px) scale(1); }
}
@keyframes cFly2 {
  0%   { opacity:0; transform:translateY(18px) scale(0.5); }
  55%  { opacity:1; }
  100% { opacity:1; transform:translateY(-48px) translateX(-14px) scale(1); }
}
@keyframes cFly3 {
  0%   { opacity:0; transform:translateY(18px) scale(0.5); }
  55%  { opacity:1; }
  100% { opacity:1; transform:translateY(-48px) translateX(14px) scale(1); }
}
@keyframes cFly4 {
  0%   { opacity:0; transform:translateY(14px) scale(0.55); }
  55%  { opacity:1; }
  100% { opacity:1; transform:translateY(-28px) scale(0.88); }
}
@keyframes cFly5 {
  0%   { opacity:0; transform:translateY(14px) scale(0.55); }
  55%  { opacity:1; }
  100% { opacity:1; transform:translateY(-28px) scale(0.88); }
}
@keyframes cFly6 {
  0%   { opacity:0; transform:translateY(20px) scale(0.45); }
  55%  { opacity:0.7; }
  100% { opacity:0.5; transform:translateY(5px) scale(0.7); }
}

.uncover-stats {
  display: flex;
  gap: 28px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}
.us-stat { display: flex; flex-direction: column; gap: 5px; }
.us-num {
  font-family: var(--f-d);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.us-label {
  font-family: var(--f-m);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  max-width: 110px;
  line-height: 1.45;
}

/* Hospital indemnity badge */
.benefit-card .emp-only {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-m);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 4px;
  padding: 2px 7px;
}

/* Spacing helpers */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.text-center{text-align:center}
.mx-auto{margin-left:auto;margin-right:auto}
.text-gold{color:var(--gold)}.text-teal{color:var(--teal)}.text-slate{color:var(--slate)}
