/* ==========================================================================
   SAM MEDIA AGENCY — INVERTED LIGHT LUXURY PERFORMANCE THEME
   Palette: Pearl White (#FFFFFF), Warm Cream (#FAF9F6), Deep Slate (#0F172A), Metallic Gold (#C9963A)
   Apple / Linear Light Luxury Healthcare Agency Aesthetic
   ========================================================================== */

:root {
  --sam-bg:           #FAF9F6;
  --sam-bg-alt:       #F3F1EC;
  --sam-surface:      #FFFFFF;
  --sam-surface-2:    #F8FAFC;
  --sam-surface-card: #FFFFFF;
  
  --sam-navy-dark:    #0A192F;
  --sam-text:         #0F172A;
  --sam-text-secondary: #334155;
  --sam-muted:        #64748B;
  --sam-muted-light:  #475569;
  
  --sam-gold:         #C9963A;
  --sam-gold-dark:    #A87922;
  --sam-gold-bright:  #D4A349;
  --sam-gold-soft:    #E8B870;
  --sam-gold-dim:     rgba(201, 150, 58, 0.10);
  --sam-gold-line:    rgba(201, 150, 58, 0.35);
  --sam-gold-glow:    rgba(201, 150, 58, 0.20);

  --sam-green:        #059669;
  --sam-green-bright: #10B981;
  --sam-green-dim:    rgba(16, 185, 129, 0.10);
  --sam-green-border: rgba(16, 185, 129, 0.35);

  --sam-border:       #E2E8F0;
  --sam-border-light: #EBE7DF;
  --sam-border-focus: rgba(201, 150, 58, 0.5);

  --font-display:     "Bebas Neue", Impact, -apple-system, sans-serif;
  --font-body:        "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-xs:        4px;
  --radius-sm:        6px;
  --radius:           10px;
  --radius-lg:        16px;
  --radius-xl:        24px;
  
  --ease:             cubic-bezier(0.16, 1, 0.3, 1);
  --max:              1200px;
}

/* Reset / Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  background: var(--sam-bg);
  color: var(--sam-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--sam-gold-dark); transition: all .25s var(--ease); }
a:hover { color: var(--sam-gold); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
svg { flex-shrink: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 96px 0; position: relative; }
.section-alt { background: var(--sam-bg-alt); }

/* Typography Helpers */
.text-gold { color: var(--sam-gold-dark); }
.text-gold-gradient {
  background: linear-gradient(135deg, #0F172A 10%, #A87922 65%, #C9963A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ---------- 1. TOP NOTICE BAR ---------- */
.top-notice-bar {
  background: var(--sam-navy-dark);
  color: rgba(255, 255, 255, 0.90);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: .84rem;
  position: relative;
  z-index: 101;
}
.notice-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.notice-text { display: flex; align-items: center; gap: 12px; }
.notice-badge {
  background: rgba(201, 150, 58, 0.25);
  color: var(--sam-gold-soft);
  border: 1px solid var(--sam-gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}
.notice-desc { font-weight: 400; color: rgba(255, 255, 255, 0.85); }
.notice-desc strong { color: #ffffff; }
.notice-link { color: var(--sam-gold-soft); font-weight: 700; text-decoration: underline; white-space: nowrap; font-size: .84rem; }
.notice-link:hover { color: #ffffff; }

/* ---------- 2. STICKY HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sam-border-light);
  transition: all .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--sam-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand-logo { display: flex; align-items: center; transition: opacity .2s; }
.brand-logo:hover { opacity: .88; }
.site-logo-img { height: 44px; width: auto; object-fit: contain; }

.header-ctas { display: flex; align-items: center; gap: 12px; }
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 600;
  color: #059669;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  transition: all .25s var(--ease);
}
.btn-whatsapp-header:hover {
  background: #10B981;
  color: #ffffff;
  border-color: #10B981;
}

/* ---------- CLEAN MASTER BUTTON SYSTEM ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, #D4A349 0%, #C9963A 50%, #B8852B 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 18px rgba(201, 150, 58, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #E5B25C 0%, #D4A349 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 150, 58, 0.50);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: #FFFFFF;
  color: var(--sam-navy-dark);
  border: 1.5px solid var(--sam-navy-dark);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}
.btn-outline:hover {
  background: var(--sam-navy-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-qualify {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
  letter-spacing: .01em;
}
.btn-qualify:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.50);
}
.btn-qualify:active { transform: translateY(0); }

.btn-sm { padding: 9px 18px; font-size: .84rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 36px; font-size: 1.02rem; border-radius: var(--radius); }
.btn-block { width: 100%; }

/* ---------- FADE-UP ANIMATION ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sam-gold-dark);
  border: 1px solid var(--sam-gold);
  background: rgba(201, 150, 58, 0.08);
  border-radius: var(--radius-xs);
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  font-weight: 400;
  color: var(--sam-text);
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.section-title em {
  background: linear-gradient(135deg, #0F172A 15%, #C9963A 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.section-subtitle { color: var(--sam-muted); font-size: 1.05rem; max-width: 660px; margin: 0 auto; line-height: 1.7; }

/* ---------- 3. HERO SECTION ---------- */
.hero {
  padding: 72px 0 92px;
  background: var(--sam-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 960px; height: 560px;
  background: radial-gradient(circle at center, rgba(201,150,58,.15) 0%, rgba(201,150,58,.04) 45%, transparent 70%);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--sam-gold);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--sam-gold-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(201,150,58,.12);
}
.pulse-gold {
  width: 8px; height: 8px;
  background: var(--sam-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201,150,58,.7);
  animation: pulse-gold-anim 2s infinite;
}
@keyframes pulse-gold-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201,150,58,.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(201,150,58,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201,150,58,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  font-weight: 400;
  color: var(--sam-text);
  line-height: 1.02;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-subheadline {
  font-size: 1.15rem;
  color: var(--sam-muted-light);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 36px;
}
.hero-subheadline strong { color: var(--sam-text); }

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--sam-border-light);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-bottom: 64px;
  text-align: left;
}
.metric-card { padding: 0 12px; border-right: 1px solid var(--sam-border-light); }
.metric-card:last-child { border-right: none; }
.metric-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--sam-navy-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.metric-label { font-size: .82rem; color: var(--sam-muted); font-weight: 600; }

/* Dashboard Visual with Mac Chrome */
.hero-visual { position: relative; margin: 0 auto; max-width: 940px; }
.hero-screen-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--sam-border);
  background: #FFFFFF;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F1F5F9;
  padding: 10px 16px;
  border-bottom: 1px solid #E2E8F0;
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.window-dots span:nth-child(1) { background: #ff5f56; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #27c93f; }
.window-title { font-size: .70rem; color: #64748B; font-weight: 700; letter-spacing: .08em; }

.hero-dashboard-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.dashboard-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--sam-gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  color: var(--sam-text);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  z-index: 3;
}
.df-left { bottom: 20px; left: 20px; }
.df-right { top: 56px; right: 20px; }
.df-icon { font-size: 1.3rem; }
.df-text { display: flex; flex-direction: column; text-align: left; }
.df-text strong { font-size: .90rem; color: var(--sam-navy-dark); font-family: var(--font-body); font-weight: 700; }
.df-text span { font-size: .72rem; color: var(--sam-muted); }

/* ---------- 4. MARQUEE STRIP ---------- */
.trust-marquee {
  background: #FFFFFF;
  border-top: 1px solid var(--sam-border-light);
  border-bottom: 1px solid var(--sam-border-light);
  padding: 16px 0;
}
.marquee-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.marquee-label { font-size: .75rem; font-weight: 800; letter-spacing: .12em; color: var(--sam-gold-dark); }
.marquee-cities { font-size: .84rem; font-weight: 700; letter-spacing: .08em; color: var(--sam-muted); display: flex; gap: 12px; flex-wrap: wrap; }
.marquee-cities span { color: var(--sam-text); }

/* ---------- 5. 3 FATAL MISTAKES GRID ---------- */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mistake-card {
  background: #FFFFFF;
  border: 1px solid var(--sam-border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.mistake-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #DC2626;
  opacity: .3;
  line-height: 1;
  margin-bottom: 10px;
}
.mistake-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #DC2626;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.mistake-card p { font-size: .88rem; color: var(--sam-text-secondary); line-height: 1.65; }

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.comp-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid var(--sam-border-light);
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.comp-bad { border-color: #FECACA; background: #FEF2F2; }
.comp-good { border: 2px solid #059669; box-shadow: 0 10px 30px rgba(5, 150, 105, 0.10); background: #F0FDF4; }
.comp-header { margin-bottom: 22px; }
.comp-badge-bad {
  display: inline-block;
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECACA;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
}
.comp-badge-good {
  display: inline-block;
  background: #DCFCE7;
  color: #059669;
  border: 1px solid #86EFAC;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
}
.comp-header h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--sam-navy-dark); letter-spacing: .02em; }
.comp-list { display: flex; flex-direction: column; gap: 14px; }
.comp-list li { font-size: .92rem; color: var(--sam-text); line-height: 1.6; position: relative; padding-left: 20px; }
.comp-list li strong { color: #059669; }
.comp-bad .comp-list li strong { color: #DC2626; }
.comp-list li::before { content: '✓'; position: absolute; left: 0; color: #059669; font-weight: 900; }
.comp-bad .comp-list li::before { content: '✕'; color: #DC2626; font-weight: 900; }

/* ---------- 6. 3 HIGH-TICKET DENTAL VERTICALS ---------- */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vertical-card {
  background: #FFFFFF;
  border: 1px solid var(--sam-border-light);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.vertical-card:hover { transform: translateY(-6px); border-color: var(--sam-gold); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08); }
.vc-highlight { border: 2px solid var(--sam-gold); box-shadow: 0 10px 30px rgba(201, 150, 58, 0.12); }
.vc-badge {
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--sam-muted);
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 18px;
  align-self: flex-start;
}
.vc-badge-gold { color: #854D0E; background: #FEF9C3; border: 1px solid #FDE047; }
.vc-icon { font-size: 2rem; margin-bottom: 14px; }
.vertical-card h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--sam-navy-dark); margin-bottom: 10px; letter-spacing: .02em; }
.vertical-card p { font-size: .90rem; color: var(--sam-muted-light); line-height: 1.65; margin-bottom: 22px; }
.vc-pills { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; }
.vc-pills span { font-size: .72rem; font-weight: 600; color: var(--sam-navy-dark); background: #F8FAFC; border: 1px solid var(--sam-border); padding: 4px 10px; border-radius: 100px; }

/* ---------- 7. FUNNEL INFOGRAPHIC BLUEPRINT ---------- */
.blueprint-visual {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sam-gold);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.10);
}
.funnel-img { width: 100%; height: auto; display: block; }

/* ---------- 8. 4-STEP PATIENT SYSTEM ---------- */
.system-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: #FFFFFF;
  border: 1px solid var(--sam-border-light);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  position: relative;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--sam-gold); }
.step-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--sam-gold); opacity: .3; line-height: 1; position: absolute; top: 16px; right: 18px; }
.step-icon { width: 46px; height: 46px; background: rgba(201, 150, 58, 0.12); border: 1px solid var(--sam-gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--sam-gold-dark); margin-bottom: 20px; }
.step-card h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--sam-navy-dark); margin-bottom: 10px; letter-spacing: .02em; }
.step-card p { font-size: .88rem; color: var(--sam-muted-light); line-height: 1.65; }

/* ---------- 9. FRONT-DESK SOP SECTION ---------- */
.sop-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  background: #FFFFFF;
  border: 1px solid var(--sam-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}
.sop-points { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.sop-point { display: flex; gap: 14px; align-items: flex-start; }
.sp-icon { font-size: 1.4rem; }
.sop-point strong { display: block; font-size: .98rem; color: var(--sam-navy-dark); margin-bottom: 2px; }
.sop-point span { font-size: .86rem; color: var(--sam-muted-light); }

.script-preview-card {
  background: #F8FAFC;
  border: 1px solid var(--sam-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spc-header {
  background: #F1F5F9;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 700;
  color: var(--sam-navy-dark);
  border-bottom: 1px solid #E2E8F0;
}
.spc-badge { background: var(--sam-gold); color: #FFFFFF; font-size: .68rem; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-xs); }
.spc-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.spc-line { font-size: .86rem; color: var(--sam-text-secondary); line-height: 1.6; }
.spc-line strong { color: var(--sam-navy-dark); }
.spc-highlight { background: rgba(201, 150, 58, 0.10); border-left: 3px solid var(--sam-gold); padding: 10px 12px; border-radius: var(--radius-xs); color: var(--sam-navy-dark); }

/* ---------- 10. 4 DOCTOR CASE STUDIES ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-box {
  background: #FFFFFF;
  border: 1px solid var(--sam-border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.case-box:hover { border-color: var(--sam-gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); }
.case-doc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.case-doc-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sam-gold);
  box-shadow: 0 4px 12px rgba(201, 150, 58, 0.25);
  flex-shrink: 0;
}
.case-doc-info {
  display: flex;
  flex-direction: column;
}
.case-doc-info strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--sam-navy-dark);
  letter-spacing: .02em;
  line-height: 1.1;
}
.case-doc-info span {
  font-size: .84rem;
  color: var(--sam-muted);
  font-weight: 500;
}
.case-tag { display: inline-block; background: rgba(201, 150, 58, 0.10); border: 1px solid var(--sam-gold); color: var(--sam-gold-dark); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: var(--radius-xs); margin-bottom: 6px; align-self: flex-start; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: var(--radius-sm); padding: 12px 6px; margin-bottom: 16px; text-align: center; }
.case-stat { display: flex; flex-direction: column; }
.cs-num { font-family: var(--font-display); font-size: 1.6rem; color: #059669; letter-spacing: .02em; line-height: 1; }
.cs-label { font-size: .66rem; color: var(--sam-muted); font-weight: 600; margin-top: 4px; }
.case-desc { font-size: .88rem; color: var(--sam-text-secondary); line-height: 1.65; font-style: italic; margin-top: auto; }

/* ---------- 11. DOCTOR ROI CALCULATOR ---------- */
.calc-inner-box {
  background: #FFFFFF;
  border: 1px solid var(--sam-gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}
.calc-header-text { text-align: center; margin-bottom: 40px; }
.calc-interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.calc-inputs { display: flex; flex-direction: column; gap: 20px; }
.calc-group { display: flex; flex-direction: column; gap: 8px; }
.calc-group label { font-size: .86rem; font-weight: 700; color: var(--sam-navy-dark); }
.calc-group select {
  padding: 13px 16px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius);
  color: var(--sam-text);
  font-size: .94rem;
  transition: border-color .2s;
}
.calc-group select:focus { outline: none; border-color: var(--sam-gold); }

.calc-outputs {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.output-card {
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
}
.out-label { display: block; font-size: .72rem; color: var(--sam-muted); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; letter-spacing: .06em; }
.out-val { font-family: var(--font-display); font-size: 1.8rem; color: var(--sam-navy-dark); letter-spacing: .02em; }
.out-val-gold { font-family: var(--font-display); font-size: 2.1rem; color: var(--sam-gold-dark); letter-spacing: .02em; }
.out-val-green { font-family: var(--font-display); font-size: 1.8rem; color: #059669; letter-spacing: .02em; }

/* ---------- 12. EXCLUSIVITY CONTRACT GUARANTEE ---------- */
.exclusivity-box {
  background: #FFFFFF;
  border: 2px solid var(--sam-gold);
  border-radius: var(--radius-xl);
  padding: 52px 40px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.exc-badge { display: inline-block; background: var(--sam-gold); color: #FFFFFF; font-size: .72rem; font-weight: 900; letter-spacing: .12em; padding: 4px 14px; border-radius: var(--radius-xs); margin-bottom: 14px; }
.exc-desc { font-size: 1.08rem; color: var(--sam-text-secondary); line-height: 1.75; max-width: 720px; margin: 0 auto 28px; }
.exc-desc strong { color: var(--sam-navy-dark); }
.exc-badges-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.exc-badges-row span { background: #F8FAFC; border: 1px solid #E2E8F0; padding: 7px 16px; border-radius: 100px; font-size: .84rem; font-weight: 700; color: var(--sam-gold-dark); }

/* ---------- 13. WHO THIS IS FOR ---------- */
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 940px; margin: 0 auto; }
.q-box { padding: 34px 28px; border-radius: var(--radius-lg); background: #FFFFFF; border: 1px solid var(--sam-border-light); box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04); }
.q-yes { border-color: #86EFAC; background: #F0FDF4; }
.q-no { border-color: #FECACA; background: #FEF2F2; }
.q-box h4 { font-family: var(--font-display); font-size: 1.55rem; margin-bottom: 16px; color: var(--sam-navy-dark); letter-spacing: .02em; }
.q-box ul { display: flex; flex-direction: column; gap: 12px; }
.q-box li { font-size: .90rem; color: var(--sam-text-secondary); line-height: 1.6; }

/* ---------- 14. CALL AGENDA ---------- */
.agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.agenda-card { background: #FFFFFF; border: 1px solid var(--sam-border-light); border-radius: var(--radius-lg); padding: 32px 24px; transition: all .3s var(--ease); box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04); }
.agenda-card:hover { transform: translateY(-4px); border-color: var(--sam-gold); }
.ag-num { font-family: var(--font-display); font-size: 1.15rem; color: var(--sam-gold-dark); letter-spacing: .08em; margin-bottom: 10px; }
.agenda-card h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--sam-navy-dark); margin-bottom: 10px; letter-spacing: .02em; }
.agenda-card p { font-size: .88rem; color: var(--sam-muted-light); line-height: 1.65; }

/* ---------- 15. ULTRA-CLEAN APPLICATION FORM BOX ---------- */
.audit-section { background: #FFFFFF; border-top: 1px solid var(--sam-border-light); }
.audit-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: flex-start; }
.audit-perks { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 34px; }
.perk-item { display: flex; align-items: center; gap: 12px; font-size: .94rem; color: var(--sam-text); }
.agency-contact-card {
  padding: 18px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 5px;
}
.agency-contact-card strong { color: var(--sam-navy-dark); font-size: .94rem; }
.agency-contact-card span { font-size: .84rem; color: var(--sam-muted); }
.agency-contact-card a { color: var(--sam-gold-dark); text-decoration: underline; }

.audit-form-box {
  background: #FFFFFF;
  border: 1.5px solid var(--sam-gold);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
.form-header-badge {
  display: inline-block;
  background: rgba(201, 150, 58, 0.10);
  color: var(--sam-gold-dark);
  border: 1px solid var(--sam-gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 12px;
}
.audit-form-box h3 { font-family: var(--font-display); font-size: 2.1rem; color: var(--sam-navy-dark); margin-bottom: 4px; letter-spacing: .02em; }
.audit-form-box p { font-size: .86rem; color: var(--sam-muted); margin-bottom: 24px; }

.b2b-audit-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .84rem; font-weight: 700; color: var(--sam-navy-dark); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius);
  font-size: .94rem;
  background: #F8FAFC;
  color: var(--sam-text);
  transition: all .2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sam-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.15);
}
.form-error { font-size: .74rem; color: #DC2626; min-height: 14px; }

/* Phone input with country flag */
.phone-input-wrap {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.phone-input-wrap:focus-within {
  border-color: var(--sam-gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.15);
}
.country-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #F1F5F9;
  border-right: 1px solid #CBD5E1;
  font-size: .9rem;
  color: var(--sam-navy-dark);
}
.country-flag { font-size: 1.15rem; }
.country-code { font-weight: 700; color: var(--sam-gold-dark); }
.phone-input-wrap input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 13px 14px !important;
}

/* Radio Question Groups (Clean Card UI) */
.radio-question-group {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin-top: 6px;
}
.question-label {
  font-size: .90rem !important;
  font-weight: 700 !important;
  color: var(--sam-navy-dark) !important;
  line-height: 1.4 !important;
  margin-bottom: 14px !important;
  display: block;
}
.radio-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  transition: all .2s var(--ease);
}
.radio-option:hover {
  background: #F1F5F9;
  border-color: var(--sam-gold);
}
.radio-option input[type="radio"] {
  display: none;
}
.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #94A3B8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.radio-option input[type="radio"]:checked + .custom-radio {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.15);
}
.radio-option input[type="radio"]:checked + .custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
}
.radio-text {
  font-size: .88rem;
  color: var(--sam-text-secondary);
  font-weight: 500;
}
.radio-option:has(input[type="radio"]:checked) {
  border-color: #059669;
  background: #F0FDF4;
}
.radio-option input[type="radio"]:checked ~ .radio-text {
  color: #065F46;
  font-weight: 700;
}

.form-success {
  display: none;
  padding: 16px;
  background: #ECFDF5;
  border: 1px solid #10B981;
  border-radius: var(--radius);
  color: #065F46;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ---------- 16. FAQS ---------- */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #E2E8F0; }
.faq-item:first-child { border-top: 1px solid #E2E8F0; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sam-navy-dark);
  transition: color .25s var(--ease);
}
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--sam-gold-dark); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--sam-gold-dark); }
.faq-chevron { flex-shrink: 0; color: var(--sam-muted); transition: transform .25s var(--ease); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 0 20px; font-size: .94rem; color: var(--sam-muted-light); line-height: 1.7; }

/* ---------- 17. FOOTER ---------- */
.site-footer { background: #0A192F; color: #FFFFFF; padding: 76px 0 0; border-top: 1px solid #1E293B; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-logo-img { height: 42px; width: auto; object-fit: contain; margin-bottom: 16px; background: #ffffff; padding: 4px 8px; border-radius: 4px; }
.footer-bio { font-size: .86rem; color: rgba(255, 255, 255, 0.65); line-height: 1.65; max-width: 280px; }
.footer-heading { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .05em; color: var(--sam-gold-soft); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: .88rem; color: rgba(255, 255, 255, 0.70); transition: color .25s var(--ease); }
.footer-links a:hover { color: #FFFFFF; }

.footer-bottom { padding: 22px 0 30px; background: #06101E; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: .80rem; color: rgba(255, 255, 255, 0.50); }
.footer-bottom a { color: var(--sam-gold-soft); }

/* ---------- 18. MOBILE FIXED BOTTOM BAR ---------- */
.mobile-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--sam-border);
  padding: 10px 16px;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.12);
}
.mfb-call, .mfb-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  min-height: 48px;
}
.mfb-call {
  background: #F1F5F9;
  color: var(--sam-navy-dark);
  border: 1px solid #CBD5E1;
}
.mfb-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

/* ---------- 19. TIMED 5-SECOND POPUP MODAL ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1), visibility .35s;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-modal {
  background: #FFFFFF;
  border: 1.5px solid var(--sam-gold);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.25);
  transform: scale(0.94) translateY(16px);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.popup-modal-scroll {
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--sam-gold) #F1F5F9;
}
.popup-modal-scroll::-webkit-scrollbar { width: 5px; }
.popup-modal-scroll::-webkit-scrollbar-track { background: #F1F5F9; }
.popup-modal-scroll::-webkit-scrollbar-thumb { background: var(--sam-gold); border-radius: 4px; }
.popup-overlay.active .popup-modal { transform: scale(1) translateY(0); }

.popup-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 50%;
  color: var(--sam-navy-dark);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.popup-close-btn:hover {
  background: var(--sam-navy-dark);
  color: #FFFFFF;
  border-color: var(--sam-navy-dark);
}
.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 150, 58, 0.12);
  border: 1px solid var(--sam-gold);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .70rem;
  font-weight: 800;
  color: var(--sam-gold-dark);
  margin-bottom: 12px;
}
.popup-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.05;
  color: var(--sam-navy-dark);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.popup-subtitle {
  font-size: .88rem;
  color: var(--sam-muted-light);
  line-height: 1.55;
  margin-bottom: 20px;
}
.popup-subtitle strong { color: var(--sam-navy-dark); }
.popup-form { display: flex; flex-direction: column; gap: 14px; }
.popup-footer-note {
  font-size: .72rem;
  color: var(--sam-muted);
  text-align: center;
  margin-top: 14px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets / Medium Laptops (1024px) */
@media (max-width: 1024px) {
  .mistakes-grid { grid-template-columns: 1fr; gap: 18px; }
  .verticals-grid { grid-template-columns: 1fr; gap: 20px; }
  .system-steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sop-box { grid-template-columns: 1fr; gap: 28px; padding: 34px 26px; }
  .cases-grid { grid-template-columns: 1fr; gap: 20px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 22px 18px; }
  .metric-card { border-right: none; }
  .calc-interactive-grid { grid-template-columns: 1fr; gap: 28px; }
  .calc-inner-box { padding: 34px 26px; }
  .agenda-grid { grid-template-columns: 1fr; gap: 18px; }
  .audit-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Phones & Small Tablets (768px and below) */
@media (max-width: 768px) {
  body { padding-bottom: 74px; }
  .mobile-fixed-bar { display: flex; }

  .section-padding { padding: 64px 0; }
  .top-notice-bar { font-size: .76rem; padding: 8px 0; }
  .notice-inner { flex-direction: column; text-align: center; gap: 6px; }
  
  .header-inner { padding: 12px 18px; }
  .site-logo-img { height: 36px; }
  .btn-whatsapp-header { display: none; }
  .header-ctas .btn-sm { padding: 7px 14px; font-size: .78rem; }

  .hero { padding: 48px 0 64px; }
  .hero-headline { font-size: 2.4rem; line-height: 1.05; }
  .hero-subheadline { font-size: .98rem; margin-bottom: 26px; }
  
  .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 44px; }
  .hero-cta-group .btn { width: 100%; padding: 15px 20px; font-size: .96rem; }

  .metrics-grid { grid-template-columns: 1fr; gap: 18px; padding: 20px 16px; margin-bottom: 44px; }
  .metric-num { font-size: 2.2rem; }

  .dashboard-floating-card { position: static; margin: 10px; }
  .df-left, .df-right { position: static; }

  .marquee-container { flex-direction: column; text-align: center; }
  .marquee-cities { justify-content: center; }

  .comparison-grid { grid-template-columns: 1fr; gap: 20px; }
  .comp-card { padding: 26px 20px; }

  .system-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 26px 20px; }

  .exclusivity-box { padding: 32px 20px; }

  .qualify-grid { grid-template-columns: 1fr; gap: 18px; }
  .q-box { padding: 26px 20px; }

  .audit-form-box { padding: 28px 18px; }
  .popup-modal { padding: 28px 18px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Small Phones (375px and below) */
@media (max-width: 375px) {
  .hero-headline { font-size: 2.1rem; }
  .section-title { font-size: 2rem; }
  .btn-lg { font-size: .92rem; padding: 14px 18px; }
  .audit-form-box { padding: 22px 14px; }
}






/* =========================================================================
   PREMIER PURE-VIDEO INFINITE AUTO-SLIDER REELS
   ========================================================================= */
.premier-reels-section {
  background: #08090e;
  border-top: 1.5px solid rgba(229, 160, 13, 0.25);
  border-bottom: 1.5px solid rgba(229, 160, 13, 0.25);
  position: relative;
  overflow: hidden;
  padding: 85px 0 95px 0;
}
.premier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 160, 13, 0.12);
  border: 1px solid rgba(229, 160, 13, 0.4);
  color: #f5c056;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 0 25px rgba(229, 160, 13, 0.2);
}
.gold-dot {
  width: 7px;
  height: 7px;
  background: #f5c056;
  border-radius: 50%;
  box-shadow: 0 0 10px #f5c056;
}

/* Infinite Smooth Continuous Auto-Marquee Track */
.marquee-carousel-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-carousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: smoothAutoSlide 42s linear infinite;
}
.marquee-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes smoothAutoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pure Clean Video Card (No Clutter, Luxury Gold Frame) */
.pure-video-card {
  flex: 0 0 310px;
  width: 310px;
  height: 520px;
  background: #000;
  border-radius: 26px;
  padding: 3px;
  background: linear-gradient(145deg, #c9963a 0%, #1f2438 45%, #e5a00d 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(201, 150, 58, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: pointer;
}
.pure-video-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(229, 160, 13, 0.45);
}
.pure-video-inner {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.pure-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  display: block;
  background: #000;
}

/* Bottom CTA Banner */
.reels-cta-banner {
  margin-top: 55px;
  background: linear-gradient(135deg, #131724 0%, #0c0e17 100%);
  border: 1.5px solid rgba(229, 160, 13, 0.35);
  border-radius: 22px;
  padding: 36px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 160, 13, 0.1);
}
@media (max-width: 768px) {
  .premier-reels-section { padding: 60px 0; }
  .pure-video-card { flex: 0 0 270px; width: 270px; height: 460px; }
  .reels-cta-banner { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}



/* =========================================================================
   PERFECT FIT COMPACT LUXURY LEAD FORM (MOBILE & PC OPTIMIZED)
   ========================================================================= */
.form-card-luxury {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(201, 150, 58, 0.15);
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
  position: relative;
}
.form-header-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  color: #c9963a;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.form-card-sub {
  font-size: .78rem;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.3;
}
.compact-audit-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cform-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cform-group label {
  font-size: .74rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
}
.cform-group input,
.cform-group select {
  width: 100%;
  padding: 9px 12px;
  font-size: .84rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  box-sizing: border-box;
  font-family: inherit;
  transition: all .2s ease;
  outline: none;
}
.cform-group input:focus,
.cform-group select:focus {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}
.phone-input-wrap {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  overflow: hidden;
  transition: all .2s;
}
.phone-input-wrap:focus-within {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}
.phone-prefix {
  padding: 9px 10px;
  font-size: .78rem;
  font-weight: 700;
  color: #0f172a;
  background: #f1f5f9;
  border-right: 1px solid #cbd5e1;
  white-space: nowrap;
}
.phone-input-wrap input {
  border: none;
  background: transparent;
  padding: 9px 10px;
  border-radius: 0;
}
.phone-input-wrap input:focus {
  box-shadow: none;
}

.btn-green-submit {
  margin-top: 4px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  font-size: .92rem;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
  transition: all .25s ease;
  letter-spacing: .02em;
}
.btn-green-submit:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(5, 150, 105, 0.45);
}
.cform-secure-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .68rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

@media (max-width: 640px) {
  .form-card-luxury {
    padding: 18px 14px;
    border-radius: 16px;
  }
  .form-card-title {
    font-size: 1.35rem;
  }
  .cform-group input,
  .cform-group select {
    padding: 8px 10px;
    font-size: .82rem;
  }
  .btn-green-submit {
    padding: 11px 14px;
    font-size: .88rem;
  }
}
