/* style.css — Custom Design System & Foundations */

/* -----------------------------------------
   1. CSS VARIABLES (DESIGN TOKENS)
   ----------------------------------------- */
:root {
  /* Brand Palettes */
  --bg-primary: hsl(36, 40%, 97%);        /* Cream White Base */
  --bg-secondary: hsl(36, 30%, 93%);      /* Soft Cream-Beige cards */
  --bg-dark-green: hsl(140, 24%, 12%);    /* Deep Forest Green (dark panels) */
  
  --color-primary: hsl(140, 24%, 15%);    /* Primary Forest Green for text & icons */
  --color-sage: hsl(140, 16%, 42%);       /* Sage Olive for sub-elements */
  --color-gold: hsl(38, 48%, 56%);        /* Metallic Brass Gold for CTA buttons */
  --color-gold-hover: hsl(38, 48%, 46%);  /* Active/Hover Gold state */
  
  /* Neutrals */
  --text-dark: hsl(0, 0%, 12%);           /* High Contrast Charcoal */
  --text-muted: hsl(0, 0%, 40%);          /* Muted Secondary Text */
  --white: hsl(0, 0%, 100%);
  
  /* Shadows & Glassmorphism */
  --shadow-premium: 0 30px 60px -15px rgba(28, 49, 36, 0.08), 
                    0 15px 30px -10px rgba(28, 49, 36, 0.04),
                    0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 10px 30px -10px rgba(28, 49, 36, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  /* Animation Dynamics */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Borders & Spacing */
  --radius-card: 16px;
  --radius-button: 30px;
}

/* -----------------------------------------
   2. BASE RESETS & TYPOGRAPHY
   ----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Offset for top-fixed switcher-bar */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------------
   3. FIXED MODE SWITCHER BAR
   ----------------------------------------- */
.switcher-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.switcher-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--color-gold);
  margin-right: 4px;
}

/* View Toggle Slider */
.view-toggle {
  position: relative;
  display: flex;
  background: rgba(28, 49, 36, 0.06);
  padding: 4px;
  border-radius: var(--radius-button);
  width: 320px;
}

.toggle-btn {
  position: relative;
  flex: 1;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.toggle-btn.active {
  color: var(--white);
}

.toggle-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--color-primary);
  border-radius: var(--radius-button);
  z-index: 1;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(28, 49, 36, 0.25);
}

/* Slide movement based on toggle activation */
body.demo-mode .toggle-pill {
  transform: translateX(100%);
}

.cta-mini {
  background: var(--color-gold);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-button);
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
}

.cta-mini:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 163, 115, 0.35);
}

.cta-mini:active {
  transform: translateY(0);
}

/* -----------------------------------------
   4. VIEWPORT PANELS & VIEW TRANSITIONS
   ----------------------------------------- */
.main-viewport {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
}

.viewport-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.viewport-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Default Placeholders style during initialization */
.showcase-placeholder, .demo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 40px;
}

.showcase-placeholder h2, .demo-placeholder h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--color-sage);
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* -----------------------------------------
   5. OVERLAYS, MODALS & NOTIFICATIONS
   ----------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 49, 36, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 40px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-premium);
  position: relative;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.modal-form .form-group {
  margin-bottom: 20px;
}

.modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.modal-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(28, 49, 36, 0.15);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.modal-form input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15);
}

.btn-submit {
  width: 100%;
  background: var(--color-gold);
  color: var(--white);
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.2);
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.btn-submit:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 163, 115, 0.35);
}

/* Success Toast Notifications */
.notification-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--color-primary);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.notification-toast.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  background: var(--color-gold);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.toast-message {
  font-size: 0.95rem;
  font-weight: 500;
}

/* -----------------------------------------
   6. GLOBAL SHOWCASE UTILITIES & BUTTONS
   ----------------------------------------- */
.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-meta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 30px;
}

.divider.center {
  margin: 0 auto 30px auto;
}

.center-header {
  text-align: center;
}

/* Custom Buttons System */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.25);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 49, 36, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* -----------------------------------------
   7. SHOWCASE HERO STYLE
   ----------------------------------------- */
.showcase-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-sage);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Desktop Monitor Mockup CSS */
.desktop-mockup {
  position: relative;
  width: 100%;
}

.mockup-header {
  background: #e1e7e4;
  border-radius: 8px 8px 0 0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  border-bottom: none;
}

.mockup-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-address {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 20px;
  background: rgba(255,255,255,0.6);
  padding: 2px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex: 1;
  max-width: 180px;
}

.mockup-viewport {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: flex;
}

.mockup-svg {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-stand {
  width: 60px;
  height: 40px;
  background: #c3cbca;
  margin: 0 auto;
  position: relative;
}

.mockup-base {
  width: 140px;
  height: 8px;
  background: #afb7b6;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* -----------------------------------------
   8. OVERVIEW & FEATURES
   ----------------------------------------- */
.showcase-overview {
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.overview-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
}

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

.check-icon {
  background: rgba(212, 163, 115, 0.12);
  color: var(--color-gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-list li strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 6px;
}

.features-list li p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* -----------------------------------------
   9. MY PROCESS FLOW TIMELINE
   ----------------------------------------- */
.showcase-process {
  background: var(--bg-primary);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(28, 49, 36, 0.08);
  z-index: 1;
}

.process-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.5);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(212, 163, 115, 0.3);
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(212, 163, 115, 0.3);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(28, 49, 36, 0.04);
  color: var(--color-primary);
  border-radius: 50%;
  margin: 10px auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.process-step:hover .step-icon {
  background: var(--color-primary);
  color: var(--white);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* -----------------------------------------
   10. DELIVERABLES & INTEGRATIONS
   ----------------------------------------- */
.showcase-deliverables {
  background: var(--white);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.deliv-list {
  list-style: none;
}

.deliv-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

.deliv-list li strong {
  font-size: 1.05rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.deliv-list li p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tools-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tool-card {
  background: var(--bg-primary);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 110px;
  border: 1px solid rgba(28, 49, 36, 0.05);
  transition: var(--transition-smooth);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212, 163, 115, 0.2);
  background: var(--white);
}

.tool-logo {
  display: flex;
  align-items: center;
  height: 35px;
}

.svg-logo {
  height: 100%;
  max-width: 120px;
}

.tool-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

/* -----------------------------------------
   11. TIMELINE & POLICY
   ----------------------------------------- */
.showcase-timeline-policy {
  background: var(--bg-primary);
}

.time-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.time-policy-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.6);
}

.tp-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 163, 115, 0.12);
  color: var(--color-gold);
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-icon svg {
  width: 24px;
  height: 24px;
}

.tp-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-sage);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tp-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.tp-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

/* -----------------------------------------
   12. CONVERSION CARD FOOTER
   ----------------------------------------- */
.showcase-banner-bar {
  background: var(--white);
}

.banner-box {
  background: var(--bg-dark-green);
  border-radius: var(--radius-card);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(212,163,115,0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(212,163,115,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.banner-title {
  font-size: 2.5rem;
  color: var(--bg-primary);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.banner-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.banner-box .btn-primary {
  background: var(--color-gold);
  color: var(--white);
}

.banner-box .btn-primary:hover {
  background: var(--white);
  color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}


/* -----------------------------------------
   13. YOURBRAND TEMPLATE NAV
   ----------------------------------------- */
.demo-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(28, 49, 36, 0.08);
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.demo-nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-accent-dot {
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
}

.demo-nav-menu {
  display: flex;
  gap: 30px;
}

.demo-nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.demo-nav-menu a:hover, .demo-nav-menu a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-demo-cta {
  background: var(--color-primary);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-demo-cta:hover {
  background: var(--color-gold);
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.25);
}

/* -----------------------------------------
   14. YOURBRAND HERO (SUNSET COVER)
   ----------------------------------------- */
.demo-hero {
  position: relative;
  background-image: url('assets/hero_coaching.png');
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 49, 36, 0.55) 0%, rgba(28, 49, 36, 0.35) 100%);
  z-index: 1;
}

.demo-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 800px;
}

.demo-hero-title {
  font-size: 3.8rem;
  color: var(--bg-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.demo-hero-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.demo-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-demo {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-demo-primary {
  background: var(--color-gold);
  color: var(--white);
}

.btn-demo-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

.btn-demo-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-demo-secondary:hover {
  background: var(--white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* -----------------------------------------
   15. FEATURES RIBBON BAR
   ----------------------------------------- */
.features-bar {
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.feature-col {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: start;
}

.feat-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg {
  width: 20px;
  height: 20px;
}

.feat-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.feat-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* -----------------------------------------
   16. DEMO PROGRAMS SECTION
   ----------------------------------------- */
.demo-section-programs {
  background: var(--bg-primary);
}

.demo-section-sub {
  font-size: 1.05rem;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid rgba(28, 49, 36, 0.03);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(212, 163, 115, 0.25);
}

.prog-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.prog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.program-card:hover .prog-img-box img {
  transform: scale(1.08);
}

.prog-content {
  padding: 30px;
}

.prog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.prog-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prog-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  display: inline-block;
  transition: var(--transition-fast);
}

.prog-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* -----------------------------------------
   17. LEAD CAPTURE FORM BANNER
   ----------------------------------------- */
.lead-capture-banner {
  background: var(--white);
  padding: 60px 24px;
}

.banner-dark-green-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-dark-green);
  border-radius: var(--radius-card);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.banner-dark-green-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(212,163,115,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.lc-text h2 {
  color: var(--bg-primary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.lc-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.lc-form {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.lc-form input {
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  width: 200px;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.lc-form input:focus {
  border-color: var(--color-gold);
}

.btn-lc-submit {
  background: var(--color-gold);
  color: var(--white);
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
  transition: var(--transition-smooth);
}

.btn-lc-submit:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* -----------------------------------------
   18. TESTIMONIALS SLIDER SECTION
   ----------------------------------------- */
.testimonial-section {
  background: var(--bg-primary);
}

.testimonial-slider-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 60px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(28, 49, 36, 0.02);
}

/* Slider dots positioned absolute top-right */
.slider-nav-dots {
  position: absolute;
  top: 30px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-nav-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28, 49, 36, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-nav-dots .dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

.testimonial-carousel {
  position: relative;
  min-height: 180px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}

.test-profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-primary);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.test-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-quote {
  position: relative;
}

/* Elegant gold visual quotes background */
.test-quote::before {
  content: '“';
  position: absolute;
  top: -45px;
  left: -20px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 1;
}

.test-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.test-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-sage);
  letter-spacing: 0.5px;
}

/* -----------------------------------------
   19. ABOUT US SECTION
   ----------------------------------------- */
.demo-section-about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-para {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-para.font-serif-meta {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
}

.btn-demo-about {
  display: inline-block;
  background: var(--color-gold);
  color: var(--white);
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
  transition: var(--transition-smooth);
}

.btn-demo-about:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* Image shadow offset layer */
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.about-image-wrapper img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 2;
  width: 100%;
}

.image-offset-shadow {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  z-index: 1;
  border: 1px solid rgba(212, 163, 115, 0.15);
}

/* -----------------------------------------
   20. DEMO SERVICES & OFFERINGS
   ----------------------------------------- */
.demo-section-services {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(28, 49, 36, 0.02);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(212, 163, 115, 0.2);
}

.svc-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(212, 163, 115, 0.12);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  transition: var(--transition-smooth);
}

.svc-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .svc-icon-box {
  background: var(--color-primary);
  color: var(--white);
}

.svc-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.svc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.services-action {
  text-align: center;
  margin-top: 50px;
}

/* -----------------------------------------
   21. UPCOMING CALENDAR EVENTS
   ----------------------------------------- */
.demo-section-events {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.calendar-card {
  background: var(--bg-primary);
  border-radius: var(--radius-card);
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(28, 49, 36, 0.03);
  transition: var(--transition-smooth);
}

.calendar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(212, 163, 115, 0.2);
  background: var(--white);
}

/* Date Badge Style */
.cal-date-badge {
  background: var(--color-primary);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(28, 49, 36, 0.1);
}

.cal-date-badge .month {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.cal-date-badge .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2px;
}

.cal-content {
  display: flex;
  flex-direction: column;
}

.event-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.event-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.event-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.btn-register {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  align-self: flex-start;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.btn-register:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* -----------------------------------------
   22. DEMO CONTACT FORM
   ----------------------------------------- */
.demo-section-contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--color-sage);
  margin-bottom: 16px;
}

.contact-details-list {
  list-style: none;
  margin-top: 30px;
}

.contact-details-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.detail-icon {
  background: var(--white);
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.detail-icon svg {
  width: 20px;
  height: 20px;
}

.detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-text span, .detail-text a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* Contact right message form */
.contact-right {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(28, 49, 36, 0.02);
}

.contact-form .form-group-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(28, 49, 36, 0.12);
  background: var(--bg-primary);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.12);
}

.btn-contact-submit {
  background: var(--color-gold);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
  transition: var(--transition-smooth);
}

.btn-contact-submit:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* -----------------------------------------
   23. TEMPLATE FOOTER
   ----------------------------------------- */
.demo-footer {
  background: var(--bg-dark-green);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-intro-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 260px;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-email-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.footer-email-form {
  display: flex;
  margin-bottom: 24px;
}

.footer-email-form input {
  padding: 10px 16px;
  border-radius: 8px 0 0 8px;
  font-size: 0.85rem;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  width: 100%;
}

.footer-email-form input:focus {
  background: rgba(255, 255, 255, 0.15);
}

.btn-footer-go {
  background: var(--color-gold);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-footer-go:hover {
  background: var(--color-gold-hover);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icons a:hover {
  background: var(--color-gold);
  color: var(--white);
}

/* -----------------------------------------
   24. COMPREHENSIVE RESPONSIVE DESIGN
   ----------------------------------------- */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .overview-grid, .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    padding: 30px;
  }

  /* YourBrand Responsive */
  .demo-nav-menu {
    display: none; /* Rely on hamburger or clean section stack on demo */
  }

  .demo-hero-title {
    font-size: 2.8rem;
  }

  .features-bar-container {
    flex-direction: column;
    gap: 24px;
  }

  .programs-grid, .services-grid, .events-grid {
    grid-template-columns: 1fr;
  }

  .banner-dark-green-card {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .lc-form {
    width: 100%;
    flex-direction: column;
  }

  .lc-form input {
    width: 100%;
  }

  .testimonial-slide {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    min-height: 320px;
  }

  .slider-nav-dots {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrapper {
    margin: 0 auto;
  }

  .demo-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}


@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .switcher-bar {
    height: 70px;
  }
  
  .switcher-container {
    padding: 0 16px;
  }
  
  .logo {
    font-size: 1.15rem;
  }
  
  .view-toggle {
    width: 250px;
  }
  
  .toggle-btn {
    padding: 8px 0;
    font-size: 0.75rem;
  }
  
  .cta-mini {
    display: none; /* Hide top CTA on mobile */
  }
  
  .section-container {
    padding: 60px 16px;
  }
  
  .section-heading {
    font-size: 1.8rem;
  }
  
  .banner-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .time-policy-grid {
    grid-template-columns: 1fr;
  }
  
  .banner-box {
    padding: 50px 20px;
  }
}

/* -----------------------------------------
   DISCLAIMER & DEMO STYLING
   ----------------------------------------- */
.demo-disclaimer-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 24px auto 0 auto;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  text-align: center;
}

.footer-disclaimer-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(28, 49, 36, 0.08);
}

/* Floating Glassmorphic Demo Badge */
.floating-disclaimer-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 999;
  cursor: help;
  transition: all 0.3s ease;
}

.floating-disclaimer-badge:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.floating-disclaimer-badge .badge-icon {
  font-size: 0.95rem;
}

.floating-disclaimer-badge .badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.floating-disclaimer-badge .badge-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 280px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 16px;
  border-radius: var(--radius-card);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-disclaimer-badge .badge-tooltip strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.floating-disclaimer-badge:hover .badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tooltip arrow */
.floating-disclaimer-badge .badge-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 24px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
}

@media (max-width: 768px) {
  .floating-disclaimer-badge {
    bottom: 16px;
    left: 16px;
    padding: 6px 12px;
  }
  
  .floating-disclaimer-badge .badge-tooltip {
    width: 240px;
    left: 0;
  }
}
