@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors - Design Token Equivalents */
  --color-obsidian: #161616;
  --color-graphite: #3c3a3e;
  --color-slate: #7b7a7c;
  --color-ash: #a2a2a2;
  --color-mist: #c9c7cc;
  --color-fog: #f1f1f1;
  --color-paper: #f8f8f8;
  --color-bone: #ffffff;
  --color-ember: #ff4c24;
  --color-tangerine: #ff6436;

  /* BlackForge Custom Brand Colors */
  --bf-black: #080808;
  --bf-dark-gray: #121212;
  --bf-graphite: #1a1a1a;
  --bf-gold: #D4AF37;
  --bf-gold-bright: #F3E5AB;
  --bf-gold-glow: rgba(212, 175, 55, 0.15);
  --bf-gold-glow-subtle: rgba(212, 175, 55, 0.05);
  --bf-blue: #0055ff;
  --bf-green: #10b981;

  /* Theme Dependent (Dark by Default) */
  --bg-main: var(--bf-black);
  --bg-sec: var(--bf-dark-gray);
  --bg-card: rgba(26, 26, 26, 0.5);
  --border-color: rgba(255, 255, 255, 0.06);
  --text-main: #f1f1f1;
  --text-sec: #a2a2a2;
  --text-muted: #7b7a7c;
  --header-bg: rgba(8, 43, 114, 0.85); /* Deep Blue #082B72 with backdrop blur */
  --spotlight-gradient: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 60%);
  --glow-shadow: 0 0 40px rgba(212, 175, 55, 0.05);
  --card-border: var(--border-color);
  --bg-luxury-card: linear-gradient(135deg, rgba(22, 22, 22, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
  --text-card-sec: var(--text-sec);

  /* Typography — Font Families */
  --font-display: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Spacing */
  --spacing-unit: 6px;
  --spacing-6: 6px;
  --spacing-12: 12px;
  --spacing-18: 18px;
  --spacing-24: 24px;
  --spacing-48: 48px;
  --spacing-60: 60px;
  --spacing-72: 72px;
  --spacing-96: 96px;
  --spacing-120: 120px;

  /* Layout */
  --section-gap: 96px;
  --card-padding: 24px;
  --element-gap: 12px;

  /* Border Radius */
  --radius-xl: 14.4px;
  --radius-cards: 14.4px;
  --radius-inputs: 8px;
  --radius-buttons: 9999px;
}

[data-theme="light"] {
  --bg-main: var(--color-bone);
  --bg-sec: var(--color-paper);
  --bg-card: rgba(241, 241, 241, 0.65);
  --border-color: rgba(22, 22, 22, 0.08);
  --text-main: var(--color-obsidian);
  --text-sec: var(--color-slate);
  --text-muted: var(--color-ash);
  --header-bg: rgba(8, 43, 114, 0.85); /* Deep Blue #082B72 with backdrop blur */
  --spotlight-gradient: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0) 60%);
  --glow-shadow: 0 0 30px rgba(0, 0, 0, 0.02);
  --card-border: var(--border-color);
  --bg-luxury-card: linear-gradient(135deg, rgba(230, 230, 230, 0.65) 0%, rgba(248, 248, 248, 0.85) 100%);
  --text-card-sec: var(--color-graphite);
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Base Typo Classes matching design tokens */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--color-slate);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bf-gold);
}

/* Cinematic Background Details */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background: var(--spotlight-gradient);
}

.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bf-gold-glow) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(80px);
}

/* Typography Utility Classes */
.text-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bf-gold);
}

.text-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
}

.text-body-sm {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
}

.text-body-lg {
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.6;
}

.text-subheading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.text-heading {
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.text-heading-lg {
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.text-display {
  font-size: clamp(60px, 15vw, 240px);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, var(--text-main) 0%, rgba(212, 175, 55, 0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--bf-gold) 0%, var(--bf-gold-bright) 50%, var(--bf-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled .header-container {
  padding: 14px 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.logo-symbol {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-link:hover .logo-symbol {
  transform: scale(1.05) rotate(2deg);
}

.logo-white {
  transition: stroke 0.4s ease;
}

.logo-blue {
  transition: stroke 0.4s ease;
}

.logo-blue-fill {
  transition: fill 0.4s ease;
}

.logo-text-co {
  color: var(--bf-blue);
  transition: color 0.4s ease;
}

nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bf-gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link.active {
  color: var(--bf-gold);
}

.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Toggle Switch button */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--bf-gold);
  box-shadow: 0 0 10px var(--bf-gold-glow);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.theme-toggle .sun-icon {
  transform: translateY(40px);
  opacity: 0;
}

[data-theme="light"] .theme-toggle .sun-icon {
  transform: translateY(0);
  opacity: 1;
}

[data-theme="light"] .theme-toggle .moon-icon {
  transform: translateY(-40px);
  opacity: 0;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-buttons);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-main);
  border: 1px solid var(--text-main);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-main);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--bf-gold) 0%, var(--bf-gold-bright) 100%);
  color: #000;
  border: 1px solid var(--bf-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-red {
  background: linear-gradient(135deg, #ff4c24 0%, #b30000 100%);
  color: #ffffff;
  border: 1px solid #ff4c24;
  box-shadow: 0 4px 15px rgba(255, 76, 36, 0.3);
}

.btn-red:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff6436 0%, #d60000 100%);
  border-color: #ff6436;
  box-shadow: 0 6px 20px rgba(255, 76, 36, 0.55);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: 1px solid #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #34e073 0%, #0e7065 100%);
  border-color: #34e073;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.btn-blue {
  background: linear-gradient(135deg, #0055ff 0%, #003bc2 100%);
  color: #ffffff;
  border: 1px solid #0055ff;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.btn-blue:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1a66ff 0%, #002fa1 100%);
  border-color: #1a66ff;
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* Container & Sections */
main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

.section {
  padding: var(--section-gap) 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  scroll-margin-top: 90px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

/* Page transitions */
.page-container {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-container.fade-out {
  opacity: 0;
  transform: translateY(15px);
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-bg-accent {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 50vh;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--text-sec);
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 12px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255,255,255,0.01);
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
}

.trust-indicator svg {
  width: 16px;
  height: 16px;
  fill: var(--bf-gold);
}

/* Stats Section */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  padding: 24px;
  border-radius: var(--radius-cards);
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--bf-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-sec);
  text-transform: uppercase;
}

/* Trust Bar Section */
.trust-bar-section {
  padding: 40px 24px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  text-align: center;
}

.trust-bar-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.logo-placeholder:hover {
  opacity: 0.8;
  color: var(--bf-gold);
}

/* Glassmorphic Cards (What We Do & Why Choose) */
.section-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.glass-card {
  border-radius: var(--radius-cards);
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: var(--card-padding);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.03);
}

.glass-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bf-gold);
  margin-bottom: 24px;
}

.glass-card:hover .card-icon {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--bf-gold);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}

.card-desc {
  font-size: 14px;
  color: var(--text-sec);
}

/* Feature Grid (Why Choose Us) */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .luxury-grid {
    grid-template-columns: 1fr;
  }
}

.luxury-card {
  border-radius: var(--radius-cards);
  background: var(--bg-luxury-card);
  border: 1px solid var(--card-border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glow-shadow);
}

.luxury-card .text-body-sm,
.luxury-card .card-desc {
  color: var(--text-card-sec);
}

.luxury-card:hover {
  border-color: var(--bf-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.05);
}

.luxury-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.luxury-card:hover::after {
  opacity: 1;
}

/* Is This You Checklist */
.checklist-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .checklist-container {
    grid-template-columns: 1fr;
  }
}

.checklist-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-cards);
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  transition: border-color 0.3s;
}

.checklist-card:hover {
  border-color: var(--bf-gold-glow);
}

.checklist-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 76, 36, 0.1);
  color: var(--color-ember);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-icon.yes {
  background: rgba(16, 185, 129, 0.1);
  color: var(--bf-green);
}

.checklist-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.checklist-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
}

.cta-box {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-cards);
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 80%);
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--text-sec);
}

/* Timeline Process */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
  gap: 24px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: 0;
}

@media (max-width: 900px) {
  .process-timeline {
    flex-direction: column;
  }
  .process-timeline::before {
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
  }
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (max-width: 900px) {
  .process-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding-left: 10px;
  }
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-sec);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--bf-gold);
  margin: 0 auto 20px auto;
  transition: all 0.3s;
}

.process-step:hover .process-number {
  background: var(--bf-gold);
  color: #000;
  box-shadow: 0 0 20px var(--bf-gold-glow);
  border-color: var(--bf-gold);
}

@media (max-width: 900px) {
  .process-number {
    margin: 0;
    flex-shrink: 0;
  }
}

.process-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-info p {
  font-size: 13px;
  color: var(--text-sec);
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .process-info p {
    margin: 0;
    max-width: 100%;
  }
}

/* Results Metrics Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-cards);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bf-gold), transparent);
}

.result-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.result-label {
  font-size: 14px;
  color: var(--text-sec);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 32px;
  border-radius: var(--radius-cards);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-sec);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bf-gold);
}

.author-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.author-info p {
  font-size: 12px;
  color: var(--text-sec);
}

/* FAQ Dropdown System */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  border-radius: var(--radius-cards);
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-card:hover {
  border-color: var(--bf-gold-glow);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  padding-right: 16px;
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bf-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 24px 24px 24px;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

.faq-card.expanded {
  border-color: var(--bf-gold);
  box-shadow: var(--glow-shadow);
}

.faq-card.expanded .faq-arrow {
  transform: rotate(180deg);
}

.faq-footer {
  text-align: center;
  margin-top: 40px;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px;
  border-radius: var(--radius-cards);
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, var(--bg-sec) 100%);
  border: 1px solid var(--border-color);
  margin-bottom: var(--section-gap);
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  margin-bottom: 24px;
}

.final-cta-content p {
  color: var(--text-sec);
  font-size: 18px;
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* SERVICES PAGE LAYOUT */
.services-layout {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .service-block, .service-block:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }
}

.service-visual {
  flex: 1;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-cards);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(22,22,22,0.8) 100%);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bf-gold-glow);
  filter: blur(40px);
}

.service-visual-icon {
  color: var(--bf-gold);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-visual-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-info {
  flex: 1;
}

.service-info .problem-box {
  margin-top: 18px;
  padding: 12px 18px;
  background: rgba(255, 76, 36, 0.04);
  border-left: 3px solid var(--color-ember);
  font-size: 14px;
  color: var(--text-sec);
  border-radius: 0 var(--radius-inputs) var(--radius-inputs) 0;
}

.service-info .solution-box {
  margin-top: 12px;
  padding: 12px 18px;
  background: rgba(16, 185, 129, 0.04);
  border-left: 3px solid var(--bf-green);
  font-size: 14px;
  color: var(--text-main);
  border-radius: 0 var(--radius-inputs) var(--radius-inputs) 0;
}

.service-benefits-title {
  margin-top: 24px;
  font-size: 15px;
  font-family: var(--font-mono);
  color: var(--bf-gold);
}

.service-benefits-list {
  margin-top: 10px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 480px) {
  .service-benefits-list {
    grid-template-columns: 1fr;
  }
}

.service-benefit-item {
  font-size: 13px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-benefit-item svg {
  width: 12px;
  height: 12px;
  fill: var(--bf-green);
  flex-shrink: 0;
}

.service-cta-btn {
  margin-top: 32px;
}

/* BLOG PAGE EDITORIAL LAYOUT */
#blog-view {
  background: radial-gradient(circle at top, #0B0F1A 0%, #05070f 100%);
  border-radius: var(--radius-cards);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  padding: 40px 24px;
}

.blog-editorial-hero {
  border-radius: var(--radius-cards);
  background: linear-gradient(to right, rgba(11, 15, 26, 0.9) 0%, rgba(5, 7, 15, 0.6) 100%), 
              radial-gradient(circle at top right, rgba(0, 85, 255, 0.15) 0%, transparent 60%);
  border: 1px solid rgba(0, 85, 255, 0.15);
  padding: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 85, 255, 0.05);
}

.blog-editorial-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(circle at center, rgba(0, 85, 255, 0.08) 0%, transparent 70%);
}

.blog-hero-category {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #0055ff;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  letter-spacing: 0.1em;
}

.blog-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  max-width: 800px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
}

.blog-hero-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.blog-categories-bar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  scrollbar-width: none;
}

.blog-categories-bar::-webkit-scrollbar {
  display: none;
}

.category-tab {
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tab:hover, .category-tab.active {
  background: #0055ff;
  color: #ffffff;
  border-color: #0055ff;
  box-shadow: 0 0 15px rgba(0, 85, 255, 0.4);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: rgba(11, 15, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-cards);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #0055ff;
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.15);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.8) 0%, rgba(0, 85, 255, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 85, 255, 0.15);
  transition: color 0.3s;
}

.blog-card:hover .blog-card-img {
  color: rgba(0, 85, 255, 0.3);
}

.blog-card-img svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.blog-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #0055ff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: #0055ff;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* EDITORIAL ARTICLES LIST PATTERN */
.blog-articles-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.editorial-article {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.editorial-article:nth-child(even) {
  flex-direction: row-reverse;
}

.editorial-article:last-of-type {
  border-bottom: none;
}

.article-text-col {
  flex: 1.2;
}

.article-image-col {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-image-box {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 480px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.08) 0%, rgba(5, 7, 15, 0.85) 100%);
  border: 1px solid rgba(0, 85, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 85, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-image-box::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 85, 255, 0.2);
  filter: blur(50px);
  transition: transform 0.6s ease;
}

.article-image-box:hover {
  border-color: #0055ff;
  box-shadow: 0 15px 40px rgba(0, 85, 255, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.article-image-box:hover::before {
  transform: scale(1.4);
}

.placeholder-svg-icon {
  width: 44px;
  height: 44px;
  color: rgba(0, 85, 255, 0.5);
  z-index: 1;
  transition: color 0.3s, transform 0.3s;
}

.article-image-box:hover .placeholder-svg-icon {
  color: #0055ff;
  transform: scale(1.1);
}

.article-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #0055ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.article-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-intro {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 500;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.article-subsection-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-subsection-title::before {
  content: '//';
  color: #0055ff;
  font-family: var(--font-mono);
  font-size: 14px;
}

.article-subsection-text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

.article-conclusion {
  font-size: 14px;
  font-style: italic;
  color: var(--color-mist);
  margin-top: 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  line-height: 1.6;
}

.article-cta-block {
  margin-top: 36px;
  padding: 24px;
  background: radial-gradient(circle at top left, rgba(255, 76, 36, 0.05) 0%, rgba(11, 15, 26, 0.4) 100%);
  border: 1px solid rgba(255, 76, 36, 0.15);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.article-cta-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  max-width: 480px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .editorial-article, .editorial-article:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    padding: 60px 16px;
  }
  .article-text-col {
    order: 1;
    width: 100%;
  }
  .article-image-col {
    order: 2;
    width: 100%;
  }
  .article-image-box {
    max-width: 100%;
  }
  .article-cta-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Newsletter CTA Override */
.newsletter-box.blog-newsletter {
  background: linear-gradient(180deg, rgba(11, 15, 26, 0.8) 0%, rgba(5, 7, 15, 0.98) 100%);
  border: 1px solid rgba(0, 85, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 85, 255, 0.03);
  margin-top: 80px;
}

[data-theme="light"] .newsletter-box.blog-newsletter {
  background: linear-gradient(180deg, rgba(235, 240, 255, 0.8) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(0, 85, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 85, 255, 0.05), 0 0 30px rgba(0, 85, 255, 0.02);
}

.newsletter-box.blog-newsletter .form-input {
  background: rgba(5, 7, 15, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .newsletter-box.blog-newsletter .form-input {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 85, 255, 0.15);
  color: var(--color-obsidian);
}

.newsletter-box.blog-newsletter .form-input:focus {
  border-color: #0055ff;
  box-shadow: 0 0 10px rgba(0, 85, 255, 0.3);
}

/* Newsletter CTA */
.newsletter-box {
  background: linear-gradient(180deg, var(--bg-sec) 0%, rgba(212,175,55,0.01) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-cards);
  padding: 60px;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  margin-bottom: 12px;
}

.newsletter-desc {
  color: var(--text-sec);
  font-size: 15px;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.form-input {
  flex-grow: 1;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-inputs);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.form-input:focus {
  border-color: var(--bf-gold);
  box-shadow: 0 0 10px var(--bf-gold-glow);
}

/* CONTACT PAGE SPLIT LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: var(--radius-cards);
}

.contact-title {
  margin-bottom: 24px;
}

.contact-form-element {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-sec);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form-textarea {
  width: 100%;
  height: 150px;
  resize: vertical;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.contact-info-section {
  padding: 30px;
  background: var(--bg-sec);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-cards);
}

.info-section-title {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bf-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.info-item svg {
  width: 18px;
  height: 18px;
  fill: var(--text-sec);
}

.info-item a:hover {
  color: var(--bf-gold);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
}

.hours-item {
  display: flex;
  justify-content: space-between;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-sec);
  padding: 60px 24px 40px 24px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-sec);
  font-size: 14px;
  max-width: 300px;
}

.footer-links-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bf-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
}

.footer-links-list a:hover {
  color: var(--text-main);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Global Sticky Widgets */
.sticky-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

.widget-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.widget-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.widget-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.widget-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.widget-consultation {
  background-color: var(--text-main);
  color: var(--bg-main);
  border: 1px solid var(--border-color);
}

.widget-consultation:hover {
  background: linear-gradient(135deg, #ff4c24 0%, #b30000 100%);
  color: #ffffff;
  border-color: #ff4c24;
  box-shadow: 0 0 20px rgba(255, 76, 36, 0.5);
}

.widget-tooltip {
  position: absolute;
  right: 60px;
  background-color: var(--color-obsidian);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-mono);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.widget-btn:hover .widget-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal-on-scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delay helper classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Custom Micro animations */
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Card */
.modal-card {
  background: var(--bg-sec);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px var(--bf-gold-glow-subtle);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-main);
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Scheduler Steps */
.scheduler-steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.scheduler-step {
  transition: opacity 0.3s;
}

.scheduler-step.disabled-step {
  opacity: 0.35;
  pointer-events: none;
}

.step-title {
  font-size: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bf-gold);
  margin-bottom: 12px;
}

/* Calendar styling */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-header button {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.calendar-header button:hover {
  border-color: var(--bf-gold);
  color: var(--bf-gold);
}

.calendar-header h4 {
  font-size: 16px;
  font-weight: 600;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendar-day {
  font-size: 14px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.calendar-day:hover:not(.empty-day):not(.disabled-day) {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--bf-gold-glow);
}

.calendar-day.selected-day {
  background: var(--bf-gold);
  color: #000;
  font-weight: 600;
}

.calendar-day.disabled-day {
  color: var(--text-muted);
  opacity: 0.25;
  pointer-events: none;
}

/* Time slots styling */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 4px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-mono);
  text-align: center;
}

.time-slot-pill:hover {
  border-color: var(--bf-blue);
  color: var(--bf-blue);
  background: rgba(0, 85, 255, 0.05);
}

.time-slot-pill.selected-slot {
  background: var(--bf-blue);
  color: #fff;
  border-color: var(--bf-blue);
  font-weight: 600;
  box-shadow: 0 0 10px rgba(0, 85, 255, 0.3);
}

/* Footer summary */
.scheduler-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.selected-details-summary {
  font-size: 13px;
  color: var(--text-sec);
  font-family: var(--font-mono);
  text-align: center;
}

#confirm-schedule-btn {
  width: 100%;
}

[data-theme="light"] .time-slot-pill {
  background: rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .calendar-day:hover:not(.empty-day):not(.disabled-day) {
  background: rgba(212, 175, 55, 0.07);
}

/* Custom Service Dropdown Option Transitions */
@keyframes slideDownInput {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.custom-service-visible {
  display: block !important;
  animation: slideDownInput 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scroll Time Picker styling */
.time-picker-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 130px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0 10px;
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
}

[data-theme="light"] .time-picker-container {
  background: rgba(0, 0, 0, 0.02);
}

.time-picker-highlight {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 45px; /* (130px total - 40px item) / 2 */
  height: 40px;
  background: rgba(0, 85, 255, 0.08);
  border-top: 1px solid rgba(0, 85, 255, 0.25);
  border-bottom: 1px solid rgba(0, 85, 255, 0.25);
  pointer-events: none;
  border-radius: 6px;
  z-index: 1;
}

[data-theme="light"] .time-picker-highlight {
  background: rgba(0, 85, 255, 0.05);
  border-top-color: rgba(0, 85, 255, 0.2);
  border-bottom-color: rgba(0, 85, 255, 0.2);
}

.time-picker-column {
  flex: 1;
  height: 130px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  position: relative;
  z-index: 2;
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

.time-picker-column::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari/Edge */
}

.time-picker-column-spacer {
  height: 45px; /* spacer to allow first/last items to align in center */
  pointer-events: none;
}

.time-picker-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  scroll-snap-align: center;
  transition: color 0.2s, font-size 0.2s, font-weight 0.2s;
  user-select: none;
}

.time-picker-item:hover {
  color: var(--text-sec);
}

.time-picker-item.active {
  color: var(--bf-blue);
  font-size: 18px;
  font-weight: 700;
}

.time-picker-divider {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 4px;
  user-select: none;
  pointer-events: none;
}
