/* ========================================
   RevSend × LA28 — Premium Olympic Gifting
   ======================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #8b7232;
  --navy: #0a0a1a;
  --navy-light: #1a1a3e;
  --navy-mid: #12122a;
  --crimson: #8B0000;
  --white: #f0f0f0;
  --text-muted: #888;
  --sf-blue: #0070d2;
  --sf-bg: #f3f3f3;
  --sf-card: #ffffff;
  --gradient-la28: linear-gradient(135deg, #ff1493, #ff8c00, #ffd700, #00ff88, #00d4ff);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Progress Bar ---- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-la28);
  z-index: 9999;
  width: 0%;
  transition: none;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #1a1a3e 0%, #0a0a1a 70%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 6s infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

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

.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.brand-revsend {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-divider {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

.brand-la28 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  background: var(--gradient-la28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  background: var(--gradient-la28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.6;
  font-weight: 300;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

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

/* ============================
   STAGE SECTION (Gift Box)
   ============================ */
.stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 8vh;
}

.phase-label {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  white-space: nowrap;
}

/* ---- Gift Box ---- */
.box-scene {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  perspective: 900px;
  perspective-origin: 50% 45%;
}

.gift-box {
  position: relative;
  width: 420px;
  height: 320px;
  overflow: hidden;
}

/* ---- Wind effects (trail behind box as it slides) ---- */
.wind-effects {
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.wind-effects .wind-svg {
  width: 100%;
  height: 100%;
  stroke-linecap: round;
}

.wind-effects .wind-line {
  animation: wind-flow 1.2s ease-in-out infinite;
}

.wind-effects .wind-line-1 { animation-delay: 0s; }
.wind-effects .wind-line-2 { animation-delay: 0.15s; }
.wind-effects .wind-line-3 { animation-delay: 0.3s; }
.wind-effects .wind-line-4 { animation-delay: 0.08s; }
.wind-effects .wind-line-5 { animation-delay: 0.22s; }

@keyframes wind-flow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.95; }
}

.box-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(165deg, #1e1e48 0%, #12122a 60%, #0a0a1a 100%);
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 6px;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 40px rgba(201, 168, 76, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.box-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
}

.box-logo-rs {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.box-logo-la {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.6;
}

.box-interior {
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  height: 236px;
  background: linear-gradient(180deg, #3a2a10 0%, #2a1a08 50%, #1a1008 100%);
  border-radius: 4px;
  opacity: 0;
  z-index: 0;
}

.tissue {
  position: absolute;
  top: 60px;
  width: 80px;
  height: 150px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.1);
  z-index: 1;
  opacity: 0;
  border-radius: 2px 2px 0 0;
}

.tissue-left {
  left: 30px;
  transform: rotate(-8deg);
}

.tissue-right {
  right: 30px;
  transform: rotate(8deg);
}

.box-contents {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.mini-gift {
  opacity: 0;
  transform: scale(0);
}

.mini-gift svg {
  width: 40px;
  height: 40px;
}

.mini-gift img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}

/* ---- Box Lid ---- */
.box-lid {
  position: absolute;
  top: 20px;
  left: -4px;
  width: calc(100% + 8px);
  height: 70px;
  transform-origin: top center;
  transform-style: preserve-3d;
  z-index: 10;
}

.lid-face {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, #2a2a5e 0%, #1a1a3e 60%, #12122a 100%);
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 6px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.lid-ribbon-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 12px;
  margin-top: -6px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 0.9;
}

.lid-ribbon-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 12px;
  margin-left: -6px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 0.9;
}

.lid-bow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 32px;
  z-index: 2;
}

.lid-bow svg {
  width: 100%;
  height: 100%;
}

/* ---- Ready-to-Ship Tape ---- */
.ship-ready-tape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
}

.ship-ready-band {
  position: absolute;
  top: 50%;
  left: -109px;
  width: 417px;
  height: 28px;
  margin-top: -14px;
  background: linear-gradient(180deg, #e8dcc8 0%, #d4c4a8 50%, #c4b098 100%);
  border: 1px solid rgba(139, 115, 85, 0.4);
  border-radius: 2px;
  transform: scaleX(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ship-ready-band::before {
  content: 'READY TO SHIP';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #5a4a3a;
  opacity: 0.7;
}

/* ---- Shipping Label (centered on tape) ---- */
.shipping-label {
  position: relative;
  z-index: 2;
  width: 200px;
  margin: 0 auto;
  background: #faf5e6;
  color: #222;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.65rem;
  line-height: 1.5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0) rotate(-180deg);
}

.shipping-label small {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #888;
  display: block;
}

.shipping-label span {
  display: block;
  font-weight: 500;
}

.label-note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  font-size: 0.58rem;
  font-style: italic;
  color: #555;
  line-height: 1.4;
}

/* ---- Shipping Trail ---- */
.shipping-trail {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
}

/* ============================
   GIFT ITEMS (Fly-in Cards)
   ============================ */
.gift-item {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
}

.gift-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(145deg, rgba(30, 30, 72, 0.95), rgba(15, 15, 40, 0.95));
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 16px;
  padding: 28px 36px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 380px;
}

.gift-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-icon svg {
  width: 100%;
  height: 100%;
}

.gift-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.gift-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gift-brand-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.gift-name-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.gift-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---- Custom Branding: stacked overlapping cards (like Curated Experiences) ---- */
.custom-branding-stack {
  width: min(640px, 80vw);
  height: min(440px, 52vh);
}

.custom-branding-stack .branding-card {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

/* Overlapping stack: symmetric offsets like experience cards */
.custom-branding-stack .branding-card-1 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.custom-branding-stack .branding-card-2 {
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 40px), calc(-50% + 45px));
  z-index: 2;
}

.custom-branding-stack .branding-card-3 {
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + 40px), calc(-50% + 90px));
  z-index: 3;
}

.custom-branding-stack .gift-card {
  min-width: 500px;
  padding: 20px 24px;
  border-radius: 20px;
  border: 2px solid rgba(201, 168, 76, 0.5);
}

.custom-branding-stack .gift-icon {
  width: 140px;
  height: 140px;
}

.custom-branding-stack .gift-name-label {
  font-size: 1.4rem;
}

.custom-branding-stack .gift-brand-label {
  font-size: 0.75rem;
}

.custom-branding-stack .gift-meta {
  font-size: 0.8rem;
}

/* ---- Curated Experiences: same position as Custom Branding products ---- */
.curated-experiences-stack {
  width: min(640px, 80vw);
  height: min(440px, 52vh);
}

.curated-experiences-stack .experience-card {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, rgba(30, 30, 72, 0.98), rgba(15, 15, 40, 0.98));
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 20px;
  padding: 20px 24px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(201, 168, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  width: min(500px, 62vw);
  pointer-events: none;
}

/* Overlapping stack: symmetric offsets so stack stays centered and in frame */
.curated-experiences-stack .experience-card-1 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.curated-experiences-stack .experience-card-2 {
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 40px), calc(-50% + 45px));
  z-index: 2;
}

.curated-experiences-stack .experience-card-3 {
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + 40px), calc(-50% + 90px));
  z-index: 3;
}

.curated-experiences-stack .experience-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.curated-experiences-stack .experience-visual {
  width: 100%;
  height: min(300px, 36vh);
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
}

/* Base experience-card (for other contexts) */
.experience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.experience-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.experience-visual {
  width: 232px;
  height: 145px;
  border-radius: 10px;
  overflow: hidden;
}

.experience-placeholder {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1px dashed rgba(201, 168, 76, 0.3);
}

.experience-visual img,
.experience-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Tickets ---- */
.gift-ticket-pair {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.ticket {
  display: flex;
  width: 400px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(201, 168, 76, 0.06);
  background: linear-gradient(135deg, #3a1042 0%, #4a1852 50%, #2a0832 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  position: relative;
}

.ticket-left {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-event {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.ticket-detail {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.ticket-type {
  display: inline-block;
  background: var(--gold);
  color: #1a0a22;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  width: fit-content;
}

.ticket-perforation {
  width: 1px;
  align-self: stretch;
  border-left: 2px dashed rgba(201, 168, 76, 0.3);
  position: relative;
}

.ticket-perforation::before,
.ticket-perforation::after {
  content: '';
  position: absolute;
  left: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy);
}

.ticket-perforation::before { top: -7px; }
.ticket-perforation::after { bottom: -7px; }

.ticket-right {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ticket-admit {
  font-size: 0.7rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.ticket-admit strong {
  font-size: 1.2rem;
  color: var(--gold);
}

.ticket-number {
  font-size: 0.6rem;
  color: rgba(201, 168, 76, 0.4);
  font-family: monospace;
}

/* ============================
   SALESFORCE SECTION
   ============================ */
.salesforce-section {
  min-height: 100vh;
  padding: 80px 40px 120px;
  background: linear-gradient(180deg, var(--navy) 0%, #0f0f28 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sf-intro {
  text-align: center;
  margin-bottom: 50px;
}

.sf-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
}

.sf-intro-title em {
  font-style: italic;
  background: var(--gradient-la28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sf-window {
  width: 100%;
  max-width: 1100px;
  background: var(--sf-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(60px);
}

/* Browser Chrome */
.sf-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #2a2a2a;
}

.sf-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.sf-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #888;
  font-family: monospace;
}

/* SF Header */
.sf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: #032d60;
  color: white;
}

.sf-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.sf-logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.sf-nav-tabs {
  display: flex;
  gap: 4px;
}

.sf-nav-tabs span {
  padding: 6px 14px;
  border-radius: 4px 4px 0 0;
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sf-nav-tabs span.active {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

/* SF Body */
.sf-body {
  padding: 24px;
  color: #333;
}

.sf-contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.sf-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0070d2, #00a1e0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sf-contact-info {
  flex: 1;
}

.sf-contact-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  min-height: 1.6em;
}

.sf-contact-meta {
  font-size: 0.85rem;
  color: #666;
  margin-top: 2px;
  display: flex;
  gap: 8px;
}

.sf-separator {
  color: #ccc;
}

.sf-status-badge {
  background: #4bca81;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.7);
}

/* SF Grid */
.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 20px;
}

.sf-details-card,
.sf-gifts-card,
.sf-activity-card {
  background: var(--sf-card);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}

.sf-details-card h4,
.sf-gifts-card h4,
.sf-activity-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0070d2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-record-count {
  background: #0070d2;
  color: white;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 10px;
  opacity: 0;
}

.sf-field {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.82rem;
}

.sf-field label {
  color: #666;
  font-weight: 500;
  min-width: 110px;
}

.sf-field span {
  color: #111;
  font-weight: 500;
  text-align: right;
  min-height: 1.2em;
}

.sf-score-bar {
  width: 100px;
  height: 8px;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}

.sf-score-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0070d2, #4bca81);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* SF Table */
.sf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.sf-table th {
  text-align: left;
  padding: 8px 10px;
  font-weight: 600;
  color: #666;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e0e0e0;
}

.sf-table td {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.sf-table tbody tr {
  opacity: 0;
  transform: translateX(-20px);
}

.sf-table .status-delivered {
  color: #4bca81;
  font-weight: 600;
}

/* SF Activity Feed */
.sf-activity-card {
  margin-bottom: 20px;
}

.sf-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sf-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0;
  transform: translateY(10px);
}

.sf-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0070d2;
  margin-top: 5px;
  flex-shrink: 0;
}

.sf-feed-dot.gold { background: var(--gold); }
.sf-feed-dot.green { background: #4bca81; }

.sf-feed-text {
  color: #444;
  line-height: 1.4;
}

.sf-feed-text strong {
  color: #111;
}

.sf-feed-time {
  font-size: 0.7rem;
  color: #999;
  margin-top: 2px;
}

/* SF Powered By */
.sf-powered {
  text-align: center;
  padding: 16px;
  font-size: 0.75rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sf-revsend-logo {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.sf-powered-divider {
  color: #ddd;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  padding: 100px 40px;
  text-align: center;
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gradient-la28);
  color: #0a0a1a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .salesforce-section {
    padding: 60px 24px 80px;
  }
  .sf-intro {
    margin-bottom: 36px;
  }
  .sf-intro-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
  .sf-window {
    margin: 0 12px;
    max-width: calc(100% - 24px);
  }
  .sf-body {
    padding: 20px;
  }
  .sf-grid {
    grid-template-columns: 1fr;
  }
  .sf-contact-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .sf-contact-name {
    font-size: 1.2rem;
  }
  .sf-contact-meta {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  .sf-details-card,
  .sf-gifts-card,
  .sf-activity-card {
    padding: 16px;
  }
  .sf-url-bar span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .gift-card {
    min-width: 300px;
    padding: 20px 24px;
  }
  .custom-branding-stack {
    width: min(600px, 90vw);
    height: min(400px, 50vh);
  }
  .custom-branding-stack .gift-card {
    min-width: min(460px, 65vw);
    padding: 18px 22px;
  }
  .custom-branding-stack .gift-icon {
    width: 110px;
    height: 110px;
  }
  .custom-branding-stack .gift-name-label {
    font-size: 1.2rem;
  }
  .custom-branding-stack .branding-card-2 {
    transform: translate(calc(-50% - 35px), calc(-50% + 40px));
  }
  .custom-branding-stack .branding-card-3 {
    transform: translate(calc(-50% + 35px), calc(-50% + 80px));
  }
  .curated-experiences-stack {
    width: min(600px, 90vw);
    height: min(400px, 50vh);
  }
  .curated-experiences-stack .experience-card {
    width: min(460px, 65vw);
    padding: 16px 20px;
  }
  .curated-experiences-stack .experience-visual {
    height: min(280px, 35vh);
    min-height: 220px;
  }
  .curated-experiences-stack .experience-header {
    font-size: 1.2rem;
  }
  .experience-card {
    width: 220px;
    padding: 20px;
  }
  .experience-header {
    font-size: 1rem;
  }
  .experience-visual {
    width: 180px;
    height: 112px;
  }
  .ticket {
    width: 320px;
  }
  .gift-box {
    width: 320px;
    height: 260px;
  }
  .box-body {
    height: 200px;
  }
  .sf-nav-tabs {
    display: none;
  }
}

@media (max-width: 600px) {
  .salesforce-section {
    padding: 40px 12px 60px;
  }
  .sf-intro {
    margin-bottom: 28px;
  }
  .sf-intro-title {
    font-size: clamp(1.25rem, 5vw, 1.8rem);
  }
  .sf-window {
    margin: 0 8px;
    max-width: calc(100% - 16px);
  }
  .sf-chrome {
    padding: 10px 12px;
    gap: 12px;
  }
  .sf-dots .dot {
    width: 10px;
    height: 10px;
  }
  .sf-url-bar {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
  .sf-url-bar span {
    max-width: 120px;
  }
  .sf-header {
    padding: 10px 16px;
  }
  .sf-nav-logo {
    font-size: 0.95rem;
  }
  .sf-logo-img {
    height: 20px;
  }
  .sf-body {
    padding: 16px;
  }
  .sf-contact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
  }
  .sf-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .sf-contact-name {
    font-size: 1.15rem;
  }
  .sf-contact-meta {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 2px;
  }
  .sf-separator {
    display: none;
  }
  .sf-details-card,
  .sf-gifts-card,
  .sf-activity-card {
    padding: 14px;
  }
  .sf-details-card h4,
  .sf-gifts-card h4,
  .sf-activity-card h4 {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  .sf-field {
    flex-direction: column;
    gap: 2px;
    padding: 6px 0;
  }
  .sf-field label {
    min-width: auto;
  }
  .sf-field span {
    text-align: left;
  }
  .sf-gifts-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sf-table {
    font-size: 0.75rem;
    min-width: 280px;
  }
  .sf-table th:nth-child(2),
  .sf-table td:nth-child(2) {
    display: none;
  }
  .sf-table th,
  .sf-table td {
    padding: 8px 6px;
  }
  .sf-feed-item {
    font-size: 0.78rem;
  }
  .sf-powered {
    flex-wrap: wrap;
    padding: 12px;
    font-size: 0.7rem;
    gap: 4px;
    justify-content: center;
  }
  .sf-revsend-logo {
    height: 18px;
  }

  .hero-headline {
    font-size: 2rem;
  }
  .curated-experiences-stack {
    width: min(520px, 92vw);
    height: min(360px, 48vh);
  }
  .curated-experiences-stack .experience-card {
    width: min(400px, 75vw);
    padding: 14px 18px;
  }
  .curated-experiences-stack .experience-visual {
    height: min(240px, 32vh);
    min-height: 180px;
  }
  .curated-experiences-stack .experience-header {
    font-size: 1.1rem;
  }
  .curated-experiences-stack .experience-card-2 {
    transform: translate(calc(-50% - 30px), calc(-50% + 35px));
  }
  .curated-experiences-stack .experience-card-3 {
    transform: translate(calc(-50% + 30px), calc(-50% + 70px));
  }
  .custom-branding-stack {
    width: min(520px, 92vw);
    height: min(360px, 48vh);
  }
  .custom-branding-stack .gift-card {
    min-width: min(400px, 75vw);
    padding: 14px 18px;
  }
  .custom-branding-stack .gift-icon {
    width: 90px;
    height: 90px;
  }
  .custom-branding-stack .gift-name-label {
    font-size: 1.1rem;
  }
  .custom-branding-stack .branding-card-2 {
    transform: translate(calc(-50% - 25px), calc(-50% + 30px));
  }
  .custom-branding-stack .branding-card-3 {
    transform: translate(calc(-50% + 25px), calc(-50% + 60px));
  }
  .experience-card {
    width: 180px;
  }
  .experience-header {
    font-size: 0.95rem;
  }
  .experience-visual {
    width: 140px;
    height: 88px;
  }
  .gift-card {
    min-width: auto;
    flex-direction: column;
    text-align: center;
  }
  .gift-box {
    width: 260px;
    height: 220px;
  }
  .ticket {
    width: 280px;
    height: 110px;
  }
}
