/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
}

.site-header.scrolled {
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  height: 70px;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand/Logo */
.header-brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1200;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.crown-icon {
  width: 28px;
  height: 28px;
  color: #d4af37;
  transition: all 0.3s ease;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.brand-logo:hover .crown-icon {
  transform: translateY(-2px) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
  transform: translateY(-1px);
}

.nav-link:focus {
  outline: 2px solid #d4af37;
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-link.active {
  color: #d4af37;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4e4a6);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Header CTA Button */
.header-cta {
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #0a0a0a;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f4e4a6, #d4af37);
}

.header-cta:focus {
  outline: 2px solid #d4af37;
  outline-offset: 4px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.mobile-menu-btn:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-btn:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 11, 13, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  padding-top: 80px;
}

.mobile-menu-header {
  margin-bottom: 2rem;
  position: relative;
}

.mobile-menu-close {
  position: fixed;
  top: 13px;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #d4af37;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1101;
}

.mobile-menu-close:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.05);
}

.mobile-menu-close:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mobile-contact-link:hover {
  color: #d4af37;
}

.mobile-contact-link i {
  width: 16px;
  color: #d4af37;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #d4af37;
  padding-left: 1rem;
}

.mobile-nav-link:focus {
  outline: 2px solid #d4af37;
  outline-offset: 4px;
  border-radius: 4px;
}

.mobile-cta {
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #0a0a0a;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  .site-header {
    height: 70px;
  }
  
  .site-header.scrolled {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 1.1rem;
  }
  
  .crown-icon {
    width: 24px;
    height: 24px;
  }
  
  .mobile-menu-content {
    padding: 1.5rem;
    padding-top: 80px;
  }
  
  .mobile-menu-close {
    right: 1.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav-link,
  .header-cta,
  .mobile-menu,
  .hamburger-line {
    transition: none;
  }
}

/* Legacy Navigation Styles (to be removed) */
.navbar {
  display: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 60px;
  height: 60px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 228, 166, 0.9));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.brand-icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4e4a6);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #0a0a0a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow: hidden;
}

/* Background Elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.crown-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(15rem, 25vw, 30rem);
  color: rgba(212, 175, 55, 0.05);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  animation: crownPulse 4s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes crownPulse {
  0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.02); }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.floating-element {
  position: absolute;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 228, 166, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.element-1 {
  width: 140px;
  height: 140px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.element-2 {
  width: 90px;
  height: 90px;
  top: 65%;
  right: 12%;
  animation-delay: 2s;
}

.element-3 {
  width: 70px;
  height: 70px;
  top: 25%;
  right: 20%;
  animation-delay: 4s;
}

.element-4 {
  width: 110px;
  height: 110px;
  bottom: 15%;
  left: 15%;
  animation-delay: 1s;
}

.element-5 {
  width: 50px;
  height: 50px;
  top: 45%;
  left: 5%;
  animation-delay: 3s;
}

.element-6 {
  width: 80px;
  height: 80px;
  top: 80%;
  right: 30%;
  animation-delay: 5s;
}

/* Particle System */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.particle-1 {
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  left: 30%;
  animation-delay: 3s;
}

.particle-3 {
  left: 50%;
  animation-delay: 6s;
}

.particle-4 {
  left: 70%;
  animation-delay: 9s;
}

.particle-5 {
  left: 90%;
  animation-delay: 1.5s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.3) 70%);
  z-index: 3;
}

/* Main Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
  color: #d4af37;
  width: auto;
  height: auto;
}

.badge-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #d4af37;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.title-pre {
  font-size: 0.45em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.title-main {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 25%, #d4af37 50%, #f4e4a6 75%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: gradientShift 4s ease-in-out infinite, fadeInUp 1s ease-out 0.4s both;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  position: relative;
}

.title-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.title-post {
  font-size: 0.4em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.03em;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.monarch-text {
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.1em;
  position: relative;
}

.monarch-text::before {
  content: '👑';
  position: absolute;
  left: -1.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  animation: crownBounce 2s ease-in-out infinite;
}

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

@keyframes crownBounce {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-60%) scale(1.1); }
}

.hero-description {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
  animation: fadeInUp 1s ease-out 0.8s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Professional Background Design */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 40%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.element-4 { top: 60%; left: 70%; animation-delay: 3s; }
.element-5 { bottom: 20%; right: 25%; animation-delay: 4s; }
.element-6 { top: 80%; left: 50%; animation-delay: 5s; }

.crown-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  opacity: 0.02;
  z-index: 1;
  pointer-events: none;
  color: #d4af37;
}

/* Modern Hero Stats */
.hero-stats {
  margin: 4rem 0;
  position: relative;
  z-index: 2;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stat-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stat-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(212, 175, 55, 0.08));
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.1);
}

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

.stat-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.1) rotate(5deg);
}

.stat-icon {
  font-size: 2rem;
  color: #d4af37;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
  width: auto;
  height: auto;
}

.stat-card:hover .stat-icon {
  color: #f4e4a6;
  transform: scale(1.1);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.stat-card:hover .icon-glow {
  opacity: 1;
  animation: iconGlow 2s ease-in-out infinite;
}

.stat-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.stat-number.counting {
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.stat-number.counted {
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.stat-plus,
.stat-unit,
.stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-left: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@keyframes iconGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

.stats-background {
  display: none;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.divider-pulse {
  display: none;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #0a0a0a;
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover::after {
  width: 300px;
  height: 300px;
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 166, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-secondary:hover::before {
  opacity: 1;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  color: #d4af37;
 }

/* Animation Keyframes */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-30px) rotate(7deg);
    opacity: 0.8;
  }
}

/* Background Animation Keyframes */
@keyframes patternRotate {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.3;
  }
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  25% {
    transform: translateX(-10px) scaleY(1.1);
  }
  50% {
    transform: translateX(0) scaleY(0.9);
  }
  75% {
    transform: translateX(10px) scaleY(1.1);
  }
}

@keyframes lightPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Hero Stats Animation Keyframes */
@keyframes statsGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(2deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(-2deg);
  }
}

@keyframes dividerPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.5);
  }
}

/* Trust Section Animation Keyframes */
@keyframes badgeGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes indicatorPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes premiumBorder {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateY(-2px);
}

.cta-icon {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.cta-primary:hover .cta-icon {
  transform: translateX(4px);
}

/* Professional Trust Section */
.trust-section {
  text-align: center;
  margin: 4rem 0;
  padding: 2rem 0;
}

.trust-header {
  margin-bottom: 2rem;
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 160px;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.badge-glow {
  display: none;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-align: left;
}

.trust-icon {
  font-size: 20px;
  color: #d4af37;
  flex-shrink: 0;
  width: auto;
  height: auto;
}

.badge-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.3;
}

.badge-indicator {
  display: none;
}

.premium-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.premium-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.premium-badge .trust-icon {
  color: #d4af37;
  font-size: 20px;
  width: auto;
  height: auto;
}

.premium-badge .badge-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.trust-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Social Proof Section */
#social-proof {
    background: #0B0B0D;
    position: relative;
    padding: 28px 24px 36px;
    overflow: hidden;
}

/* Gold gradient dividers */
#social-proof::before,
#social-proof::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F4E4A6 50%, #D4AF37 80%, transparent 100%);
    opacity: 0.6;
}

#social-proof::before {
    top: 0;
}

#social-proof::after {
    bottom: 0;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sp-headline {
    color: #C7CBD1;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0 0 16px 0;
    opacity: 0;
    transform: translateY(10px);
    animation: sp-fadeInUp 0.6s ease-out 0.2s forwards;
}

.sp-logos-wrapper {
    margin-bottom: 24px;
    position: relative;
}

.sp-logos-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(10px);
    animation: sp-fadeInUp 0.6s ease-out 0.4s forwards;
}

.sp-logo-item {
    flex-shrink: 0;
}

.sp-logo {
    height: 40px;
    width: 120px;
    transition: all 120ms ease;
    cursor: pointer;
    will-change: transform;
}

.sp-logo:hover,
.sp-logo:focus {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
}

.sp-logo:hover text,
.sp-logo:focus text {
    fill: #D4AF37;
}

.sp-logo:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
    border-radius: 4px;
}

.sp-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sp-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111216;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 10px 12px;
    color: #E9EDF2;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 120ms ease;
    will-change: transform;
}

.sp-badge:nth-child(1) {
    animation: sp-fadeInUp 0.6s ease-out 0.6s forwards;
}

.sp-badge:nth-child(2) {
    animation: sp-fadeInUp 0.6s ease-out 0.7s forwards;
}

.sp-badge:nth-child(3) {
    animation: sp-fadeInUp 0.6s ease-out 0.8s forwards;
}

.sp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.sp-badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Mobile responsive design */
@media (max-width: 767px) {
    #social-proof {
        padding: 28px 24px 32px;
    }
    
    .sp-logos-wrapper {
        position: relative;
        overflow: hidden;
    }
    
    .sp-logos-wrapper::before,
    .sp-logos-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        z-index: 2;
        pointer-events: none;
    }
    
    .sp-logos-wrapper::before {
        left: 0;
        background: linear-gradient(90deg, #0B0B0D 0%, transparent 100%);
    }
    
    .sp-logos-wrapper::after {
        right: 0;
        background: linear-gradient(270deg, #0B0B0D 0%, transparent 100%);
    }
    
    .sp-logos-list {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 24px;
    }
    
    .sp-logos-list::-webkit-scrollbar {
        display: none;
    }
    
    .sp-logo-item {
        scroll-snap-align: center;
    }
    
    .sp-trust-badges {
        gap: 16px;
    }
    
    .sp-badge {
        font-size: 11px;
        padding: 8px 10px;
        gap: 6px;
    }
    
    .sp-badge-icon {
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 768px) {
    #social-proof {
        padding: 32px 32px 36px;
    }
}

@media (min-width: 1024px) {
    #social-proof {
        padding: 36px 48px;
    }
    
    .sp-headline {
        font-size: 14px;
    }
    
    .sp-logos-list {
        gap: 48px;
    }
    
    .sp-trust-badges {
        gap: 32px;
    }
    
    .sp-badge {
        font-size: 13px;
        padding: 12px 14px;
    }
}

/* Animations */
@keyframes sp-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .sp-logo,
    .sp-badge {
        transition: none;
    }
    
    .sp-logo:hover,
    .sp-logo:focus {
        transform: none;
    }
    
    .sp-badge:hover {
        transform: none;
    }
    
    .sp-headline,
    .sp-logos-list,
    .sp-badge {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Services Section */
#services {
    --sv-bg: #0B0B0D;
    --sv-surface: #111216;
    --sv-text: #F5F7FA;
    --sv-muted: #AEB4BF;
    --sv-gold: #D4AF37;
    --sv-gold-deep: #B38E2E;
    --sv-line: #1C1E22;
    --sv-glow: rgba(212, 175, 55, 0.22);
    
    background: var(--sv-bg);
    padding: 120px 24px 96px;
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

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

.sv-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(16px);
    animation: sv-fadeInUp 0.8s ease-out 0.2s forwards;
}

.sv-eyebrow {
    color: var(--sv-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.sv-title {
    color: var(--sv-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.sv-sub {
    color: var(--sv-muted);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 720px;
}

.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.sv-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(16px);
    will-change: transform;
}

.sv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sv-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sv-card:nth-child(1) {
    animation: sv-fadeInUp 0.8s ease-out 0.4s forwards;
}

.sv-card:nth-child(2) {
    animation: sv-fadeInUp 0.8s ease-out 0.52s forwards;
}

.sv-card:nth-child(3) {
    animation: sv-fadeInUp 0.8s ease-out 0.64s forwards;
}

.sv-card:nth-child(4) {
    animation: sv-fadeInUp 0.8s ease-out 0.76s forwards;
}

.sv-card:nth-child(5) {
    animation: sv-fadeInUp 0.8s ease-out 0.88s forwards;
}

.sv-card:nth-child(6) {
    animation: sv-fadeInUp 0.8s ease-out 1s forwards;
}

.sv-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 0 30px rgba(212, 175, 55, 0.15);
}

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

.sv-card:hover .sv-card-glow {
    opacity: 1;
}

.sv-card:focus-within {
    outline: 2px solid var(--sv-gold);
    outline-offset: 2px;
}

.sv-card-featured {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #2a2a1a 0%, #3a3a2a 100%);
}

.sv-card-featured::before {
    opacity: 1;
    height: 3px;
}

.sv-card-icon {
    width: 56px;
    height: 56px;
    margin: 32px 32px 24px 32px;
    color: var(--sv-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.sv-card:hover .sv-card-icon {
    transform: scale(1.15) rotate(5deg);
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

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

.sv-card-content {
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.sv-card-title {
    color: var(--sv-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.sv-card:hover .sv-card-title {
    color: #d4af37;
}

.sv-card-desc {
    color: var(--sv-muted);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.sv-card-bullets {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
}

.sv-card-bullets li {
    color: #c0c0c0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    transition: color 0.3s ease;
}

.sv-card-bullets li::before {
    content: '✦';
    color: var(--sv-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sv-card:hover .sv-card-bullets li {
    color: #e0e0e0;
}

.sv-card:hover .sv-card-bullets li::before {
    transform: scale(1.2);
}

.sv-card-link {
    color: var(--sv-gold);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sv-card-link:hover,
.sv-card-link:focus {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.sv-card-link:focus {
    outline: 2px solid var(--sv-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    #services {
        padding: 64px 32px 80px;
    }
    
    .sv-grid {
        gap: 28px;
    }
    
    .sv-title {
        font-size: 40px;
    }
}

@media (max-width: 639px) {
    #services {
        padding: 56px 24px 72px;
    }
    
    .sv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sv-title {
        font-size: 32px;
    }
    
    .sv-sub {
        font-size: 16px;
    }
    
    .sv-card {
        padding: 24px;
    }
    
    .sv-card-link {
        display: block;
        text-align: right;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    #services {
        padding: 96px 48px;
    }
}

/* Animations */
@keyframes sv-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .sv-card,
    .sv-card-icon,
    .sv-card-link {
        transition: none;
    }
    
    .sv-card:hover {
        transform: none;
    }
    
    .sv-card:hover .sv-card-icon {
        transform: none;
    }
    
    .sv-header,
    .sv-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== RESULTS SECTION ===== */
.rn-wrap {
    --rn-bg: #0B0B0D;
    --rn-surface: #111216;
    --rn-text: #F5F7FA;
    --rn-muted: #AEB4BF;
    --rn-gold: #D4AF37;
    --rn-gold-deep: #B38E2E;
    --rn-line: #1C1E22;
    --rn-glow: rgba(212, 175, 55, 0.22);
    --rn-gradient: linear-gradient(135deg, #111216 0%, #1a1a2e 50%, #16213e 100%);
    
    background: var(--rn-bg);
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    position: relative;
    padding: 84px 0 112px;
    overflow: hidden;
}

.rn-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--rn-gold) 50%, transparent 100%);
    opacity: 0.3;
}

.rn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rn-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Ensure header text is visible by default and allow optional reveal */
.rn-eyebrow,
.rn-title,
.rn-sub {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Optional reveal class if JS wants to animate them in */
.rn-header .rn-reveal {
    opacity: 0;
    transform: translateY(12px);
}

.rn-header .rn-reveal.animate-in {
    opacity: 1;
    transform: none;
}

.rn-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rn-gold);
    margin-bottom: 16px;
}

.rn-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    color: var(--rn-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.rn-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--rn-muted);
    max-width: 600px;
    margin: 0 auto;
}

.rn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.rn-tile {
    background: var(--rn-gradient);
    border: 1px solid var(--rn-gold);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.rn-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.rn-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--rn-gold) 50%, transparent 100%);
    opacity: 0.2;
}

.rn-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 0 8px var(--rn-glow), 
                0 16px 48px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--rn-gold);
}

.rn-tile:hover::before {
    opacity: 1;
}

.rn-tile:focus-visible {
    outline: 2px solid var(--rn-gold);
    outline-offset: 4px;
}

.rn-tile.rn-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--rn-gold) 0%, var(--rn-gold-deep) 100%);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.rn-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 15px;
    pointer-events: none;
}

.rn-icon svg {
    color: #000;
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.rn-tile:hover .rn-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.rn-tile:hover .rn-icon svg {
    transform: scale(1.1);
}

.rn-kpi {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    color: var(--rn-text);
    margin-bottom: 16px;
    line-height: 1;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rn-text) 0%, var(--rn-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.rn-kpi-split {
    gap: 4px;
}

.rn-split-part,
.rn-split-dash {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rn-split-part.rn-visible,
.rn-split-dash.rn-visible {
    opacity: 1;
}

.rn-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--rn-text);
    margin-bottom: 8px;
}

.rn-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--rn-muted);
    line-height: 1.4;
}

.rn-disclaimer {
    text-align: center;
}

.rn-disclaimer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--rn-muted);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .rn-container {
        padding: 0 32px;
    }
    
    .rn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .rn-tile {
        padding: 36px 24px;
    }
    
    .rn-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .rn-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 639px) {
    .rn-wrap {
        padding: 64px 0 84px;
    }
    
    .rn-container {
        padding: 0 24px;
    }
    
    .rn-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rn-tile {
        padding: 32px 24px;
        min-height: 44px;
        border-radius: 16px;
    }
    
    .rn-tile::before {
        border-radius: 16px;
    }
    
    .rn-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .rn-icon::before {
        border-radius: 11px;
    }
    
    .rn-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .rn-kpi {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 12px;
    }
    
    .rn-header {
        margin-bottom: 48px;
    }
    
    .rn-eyebrow {
        font-size: 12px;
    }
    
    .rn-sub {
        font-size: 16px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .rn-tile {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .rn-tile:hover {
        transform: none;
    }
    
    .rn-split-part,
    .rn-split-dash {
        opacity: 1;
        transition: none;
    }
}

/* ===== PROCESS SECTION ===== */
.pr-wrap {
    --pr-bg: #0B0B0D;
    --pr-card-bg: #1A1D23;
    --pr-card-border: #2A2D35;
    --pr-text: #F5F7FA;
    --pr-muted: #AEB4BF;
    --pr-gold: #D4AF37;
    --pr-gold-deep: #B38E2E;
    --pr-glow: rgba(212, 175, 55, 0.15);
    
    background: var(--pr-bg);
    position: relative;
    padding: 84px 0 112px;
    overflow: hidden;
}

.pr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pr-header {
    text-align: center;
    margin-bottom: 64px;
}

.pr-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pr-gold);
    margin-bottom: 16px;
}

.pr-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    color: var(--pr-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.pr-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--pr-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Layout */
.pr-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line */
.pr-line {
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--pr-gold) 0%, var(--pr-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pr-line.pr-animate {
    transform: scaleX(1);
}

/* Step Container */
.pr-step {
    position: relative;
    z-index: 2;
}

/* Step Card */
.pr-step-btn {
    width: 100%;
    background: var(--pr-card-bg);
    border: 1px solid var(--pr-card-border);
    border-radius: 20px;
    padding: 40px 24px;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.pr-step-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pr-step-btn:hover::before {
    opacity: 1;
}

.pr-step-btn.pr-animate {
    opacity: 1;
    transform: translateY(0);
}

.pr-step-btn:hover {
    transform: translateY(-8px);
    border-color: var(--pr-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(212, 175, 55, 0.2);
}

.pr-step-btn:focus-visible {
    outline: 2px solid var(--pr-gold);
    outline-offset: 4px;
}

/* Step Number (Gold Badge) */
.pr-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-deep) 100%);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #0B0B0D;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pr-step-btn:hover .pr-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Step Icon Container */
.pr-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--pr-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pr-step-icon i {
    font-size: 32px;
    color: var(--pr-gold);
    transition: all 0.3s ease;
}

.pr-step-btn:hover .pr-step-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.pr-step-btn:hover .pr-step-icon i {
    transform: scale(1.1);
}

/* Step Label */
.pr-step-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--pr-text);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.pr-step-btn:hover .pr-step-label {
    color: var(--pr-gold);
}

/* Step Description */
.pr-step-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--pr-muted);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Panel */
.pr-panel {
    position: absolute;
    top: 100%;
    left: -20%;
    right: -20%;
    margin-top: 20px;
    background: var(--pr-card-bg);
    border: 1px solid var(--pr-gold);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.pr-panel[aria-expanded="true"] {
    opacity: 1;
    transform: translateY(0);
}

.pr-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-panel-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--pr-text);
    line-height: 1.6;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.pr-panel-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pr-gold);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .pr-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .pr-line {
        display: none;
    }
    
    .pr-step-btn {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 32px 24px;
    }
    
    .pr-step-number {
        flex-shrink: 0;
        margin-bottom: 0;
        margin-top: 4px;
    }
    
    .pr-step-icon {
        flex-shrink: 0;
        margin: 0;
        width: 60px;
        height: 60px;
    }
    
    .pr-step-icon i {
        font-size: 28px;
    }
    
    .pr-step-content {
        flex: 1;
    }
    
    .pr-panel {
        position: static;
        margin-top: 16px;
        margin-left: 0;
        left: auto;
        right: auto;
    }
}

@media (max-width: 767px) {
    .pr-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pr-step-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 32px 20px;
    }
    
    .pr-step-number {
        margin-top: 0;
    }
    
    .pr-step-icon {
        margin-bottom: 16px;
    }
}

@media (max-width: 639px) {
    .pr-wrap {
        padding: 64px 0 84px;
    }
    
    .pr-container {
        padding: 0 20px;
    }
    
    .pr-header {
        margin-bottom: 48px;
    }
    
    .pr-timeline {
        gap: 20px;
    }
    
    .pr-step-btn {
        padding: 28px 20px;
    }
    
    .pr-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .pr-step-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }
    
    .pr-step-icon i {
        font-size: 24px;
    }
    
    .pr-step-label {
        font-size: 18px;
    }
    
    .pr-step-desc {
        font-size: 14px;
    }
    
    .pr-panel {
        padding: 20px;
    }
    
    .pr-panel-list li {
        font-size: 14px;
    }
}

/* Reduced Motion for Process */
@media (prefers-reduced-motion: reduce) {
    .pr-line,
    .pr-step-btn,
    .pr-panel {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .pr-step-btn:hover .pr-step-number {
        transform: none;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.tm-wrap {
    --tm-bg: #0B0B0D;
    --tm-card-bg: #1A1D23;
    --tm-card-border: #2A2D35;
    --tm-text: #F5F7FA;
    --tm-muted: #AEB4BF;
    --tm-gold: #D4AF37;
    --tm-gold-deep: #B38E2E;
    --tm-glow: rgba(212, 175, 55, 0.15);
    --tm-green: #22C55E;
    
    background: var(--tm-bg);
    position: relative;
    padding: 84px 0 112px;
    overflow: hidden;
}

.tm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tm-header {
    text-align: center;
    margin-bottom: 64px;
}

.tm-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tm-gold);
    margin-bottom: 16px;
}

.tm-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    color: var(--tm-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.tm-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--tm-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.tm-carousel {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 80px; /* Space for arrows */
}

.tm-carousel-inner {
    
    overflow: hidden;
    border-radius: 16px;
}

.tm-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Testimonial Cards */
.tm-card {
    flex: 0 0 100%;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1A1D23 0%, #1E2128 50%, #1A1D23 100%);
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
    transform: scale(0.95);
    box-sizing: border-box;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 0 0 1px rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.tm-card.tm-card-active {
    opacity: 1;
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(212, 175, 55, 0.2),
        0 0 0 2px var(--tm-gold),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.tm-card:hover {
    transform: scale(0.98);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.6),
        0 12px 40px rgba(212, 175, 55, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.tm-card:focus-within {
    outline: 3px solid var(--tm-gold);
    outline-offset: 4px;
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(212, 175, 55, 0.3),
        0 0 0 2px var(--tm-gold);
}

/* Featured Card */
.tm-card-featured {
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        #1E2128 25%, 
        #242831 50%, 
        #1E2128 75%, 
        rgba(212, 175, 55, 0.08) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

/* Quote */
.tm-quote {
    margin-bottom: 40px;
    position: relative;
    padding-left: 24px;
}

.tm-quote::before {
    content: '"';
    position: absolute;
    left: -8px;
    top: -12px;
    font-size: 72px;
    font-family: 'Playfair Display', serif;
    color: var(--tm-gold);
    opacity: 0.3;
    line-height: 1;
    z-index: 0;
}

.tm-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.7;
    color: var(--tm-text);
    margin: 0;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Meta Information */
.tm-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    width: 100%;
}

.tm-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--tm-gold), transparent);
}

.tm-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--tm-gold) 0%, #B38E2E 50%, var(--tm-gold) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.tm-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--tm-gold), transparent, var(--tm-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tm-card:hover .tm-avatar::before {
    opacity: 0.5;
}

.tm-initials {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tm-identity {
    flex: 1;
}

.tm-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--tm-text);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tm-role {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--tm-muted);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Stars */
.tm-stars {
    display: flex;
    gap: 3px;
    align-items: center;
}

.tm-star {
    color: var(--tm-gold);
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3));
    transition: all 0.2s ease;
}

.tm-card:hover .tm-star {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

/* Status Chip */
.tm-status {
    margin-left: auto;
}

.tm-status-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--tm-green) 0%, #1DB954 100%);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    border-radius: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 
        0 2px 8px rgba(34, 197, 94, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tm-status-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tm-card:hover .tm-status-chip::before {
    left: 100%;
}

/* Publication */
.tm-publication {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--tm-muted);
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Metrics Overlay */
.tm-metrics {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    transform: translateY(-8px);
}

.tm-card:hover .tm-metrics {
    opacity: 1;
    transform: translateY(0);
}

.tm-metric {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 29, 35, 0.95) 100%);
    color: var(--tm-gold);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.tm-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tm-gold), transparent);
    opacity: 0.5;
}

/* Carousel Controls */
.tm-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--tm-gold);
    border-radius: 50%;
    color: var(--tm-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tm-arrow:hover {
    background: var(--tm-gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 16px var(--tm-glow);
}

.tm-arrow-prev {
    left: 16px;
}

.tm-arrow-next {
    right: 16px;
}

.tm-arrow i {
    font-size: 16px;
}

/* Pagination */
.tm-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 8px;
}

.tm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tm-card-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
}

.tm-dot:hover {
    background: var(--tm-gold);
    transform: scale(1.2);
}

.tm-dot:focus {
    outline: 2px solid var(--tm-gold);
    outline-offset: 2px;
}

.tm-dot-active {
    background: var(--tm-gold);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tm-carousel {
        padding: 0 60px;
    }
    
    .tm-arrow-prev {
        left: 8px;
    }
    
    .tm-arrow-next {
        right: 8px;
    }
    
    .tm-card {
        padding: 32px;
    }
    
    .tm-quote p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .tm-wrap {
        padding: 64px 0 84px;
    }
    
    .tm-container {
        padding: 0 20px;
    }
    
    .tm-header {
        margin-bottom: 48px;
    }
    
    .tm-carousel {
        padding: 0;
        position: relative;
    }
    
    .tm-carousel-inner {
        margin: 0; /* Remove arrow space on mobile */
    }
    
    .tm-arrow {
        display: none; /* Hide arrows on mobile */
    }
    
    .tm-card {
        padding: 24px;
        margin: 0 auto;
        max-width: calc(100vw - 40px); /* Full width minus padding */
        min-height: 300px; /* Ensure consistent height */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .tm-quote p {
        font-size: 16px;
    }
    
    .tm-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tm-avatar {
        width: 40px;
        height: 40px;
    }
    
    .tm-initials {
        font-size: 14px;
    }
    
    .tm-metrics {
        position: static;
        opacity: 1;
        margin-top: 16px;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .tm-card {
        padding: 20px;
        margin: 0 auto;
        max-width: calc(100vw - 32px); /* Full width minus padding */
    }
    
    .tm-quote p {
        font-size: 15px;
    }
    
    .tm-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .tm-stars {
        margin-top: 8px;
    }
    
    .tm-status {
        margin-left: 0;
        align-self: flex-start;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .tm-track {
        transition: none;
    }
    
    .tm-card {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .tm-card:hover {
        transform: none;
    }
    
    .tm-arrow:hover {
        transform: translateY(-50%);
    }
    
    .tm-dot:hover {
        transform: none;
    }
    
    .tm-metrics {
        opacity: 1;
        position: static;
        margin-top: 16px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    /* Static Grid Fallback */
    .tm-carousel {
        overflow: visible;
    }
    
    .tm-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .tm-card {
        flex: none;
        opacity: 1;
        transform: none;
    }
    
    .tm-arrow,
    .tm-pagination {
        display: none;
    }
}

/* ===== FAQ SECTION ===== */

.faq-wrap {
    --faq-bg: #0B0B0D;
    --faq-text: #F5F7FA;
    --faq-muted: #AEB4BF;
    --faq-gold: #D4AF37;
    --faq-gold-deep: #B38E2E;
    --faq-glow: rgba(212, 175, 55, 0.15);
    --faq-border: #2A2D35;
    --faq-item-bg: #1A1D23;
    
    background: var(--faq-bg);
    position: relative;
    padding: 84px 0 112px;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(16px);
    animation: faq-fadeInUp 0.8s ease-out 0.2s forwards;
}

.faq-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--faq-gold);
    margin-bottom: 16px;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    color: var(--faq-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.faq-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--faq-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--faq-border);
    opacity: 0;
    transform: translateY(16px);
    animation: faq-fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.4s; }
.faq-item:nth-child(2) { animation-delay: 0.5s; }
.faq-item:nth-child(3) { animation-delay: 0.6s; }
.faq-item:nth-child(4) { animation-delay: 0.7s; }
.faq-item:nth-child(5) { animation-delay: 0.8s; }
.faq-item:nth-child(6) { animation-delay: 0.9s; }
.faq-item:nth-child(7) { animation-delay: 1.0s; }
.faq-item:nth-child(8) { animation-delay: 1.1s; }
.faq-item:nth-child(9) { animation-delay: 1.2s; }
.faq-item:nth-child(10) { animation-delay: 1.3s; }
.faq-item:nth-child(11) { animation-delay: 1.4s; }
.faq-item:nth-child(12) { animation-delay: 1.5s; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(90deg, transparent 0%, var(--faq-glow) 50%, transparent 100%);
}

.faq-question:focus {
    outline: 2px solid var(--faq-gold);
    outline-offset: 2px;
    border-radius: 8px;
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--faq-text);
    text-align: left;
    line-height: 1.4;
    flex: 1;
    margin-left: 24px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-gold);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.faq-open {
    max-height: 200px;
}

.faq-answer-content {
    padding: 16px 0;
    margin-left: 24px;
}

.faq-answer-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--faq-muted);
    margin: 0;
}

/* FAQ Contact */
.faq-contact {
    text-align: center;
    margin-top: 64px;
    opacity: 0;
    transform: translateY(16px);
    animation: faq-fadeInUp 0.8s ease-out 1.8s forwards;
}

.faq-contact p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--faq-muted);
    margin: 0;
}

.faq-contact-link {
    color: var(--faq-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.faq-contact-link:hover {
    color: var(--faq-gold-deep);
    text-shadow: 0 0 8px var(--faq-glow);
}

.faq-contact-link:focus {
    outline: 2px solid var(--faq-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Animations */
@keyframes faq-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .faq-wrap * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .faq-answer {
        transition: none;
    }
    
    .faq-question[aria-expanded="true"] .faq-icon {
        transform: none;
    }
}

/* FAQ Responsive Design */
@media (max-width: 1024px) {
    .faq-wrap {
        padding: 64px 0 84px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-header {
        margin-bottom: 48px;
    }
    
    .faq-question {
        padding: 24px 0;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .faq-wrap {
        padding: 48px 0 64px;
    }
    
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question-text {
        font-size: 15px;
        margin-left: 16px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer-content p {
        font-size: 14px;
    }
    
    .faq-contact {
        margin-top: 48px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px 0;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-answer-content {
        padding: 12px 0;
    }
    .faq-answer-content{
        margin-left: 14px;
    }
}

/* ===== VALUE PROPS SECTION ===== */

.value-wrap {
    --value-bg: #0B0B0D;
    --value-text: #F5F7FA;
    --value-muted: #AEB4BF;
    --value-gold: #D4AF37;
    --value-gold-deep: #B38E2E;
    --value-glow: rgba(212, 175, 55, 0.15);
    --value-border: #2A2D35;
    --value-chip-bg: #1A1D23;
    
    background: var(--value-bg);
    position: relative;
    padding: 84px 0 112px;
    overflow: hidden;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.value-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(16px);
    animation: value-fadeInUp 0.8s ease-out 0.2s forwards;
}

.value-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--value-gold);
    margin-bottom: 16px;
}

.value-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    color: var(--value-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.value-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--value-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.value-chip {
    background: var(--value-chip-bg);
    border: 1px solid var(--value-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    animation: value-fadeInUp 0.6s ease-out forwards;
}

.value-chip:nth-child(1) { animation-delay: 0.4s; }
.value-chip:nth-child(2) { animation-delay: 0.5s; }
.value-chip:nth-child(3) { animation-delay: 0.6s; }
.value-chip:nth-child(4) { animation-delay: 0.7s; }
.value-chip:nth-child(5) { animation-delay: 0.8s; }
.value-chip:nth-child(6) { animation-delay: 0.9s; }

.value-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--value-glow);
    border-color: var(--value-gold);
}

.value-chip:focus {
    outline: 2px solid var(--value-gold);
    outline-offset: 2px;
    border-color: var(--value-gold);
}

.value-chip-icon {
    width: 20px;
    height: 20px;
    color: var(--value-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-chip-content {
    flex: 1;
}

.value-chip-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--value-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.value-chip-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--value-muted);
    line-height: 1.4;
}

/* Value Clients */
.value-clients {
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    animation: value-fadeInUp 0.8s ease-out 1.2s forwards;
}

.value-clients p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--value-muted);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Animations */
@keyframes value-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .value-wrap * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .value-chip:hover {
        transform: none;
    }
}

/* Value Props Responsive Design */
@media (max-width: 1024px) {
    .value-wrap {
        padding: 64px 0 84px;
    }
    
    .value-container {
        padding: 0 20px;
    }
    
    .value-header {
        margin-bottom: 48px;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-chip {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .value-wrap {
        padding: 48px 0 64px;
    }
    
    .value-container {
        padding: 0 16px;
    }
    
    .value-header {
        margin-bottom: 40px;
    }
    
    .value-grid {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .value-chip {
        padding: 18px;
        gap: 14px;
    }
    
    .value-chip-label {
        font-size: 15px;
    }
    
    .value-chip-text {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-chip {
        padding: 20px;
    }
    
    .value-clients p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .value-chip {
        padding: 16px;
        gap: 12px;
    }
    
    .value-chip-label {
        font-size: 14px;
    }
    
    .value-chip-text {
        font-size: 12px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-wrap {
    --contact-gold: #D4AF37;
    --contact-gold-light: #F4E4A6;
    --contact-text: #F5F7FA;
    --contact-muted: #AEB4BF;
    --contact-bg: #0B0B0D;
    --contact-card-bg: rgba(255, 255, 255, 0.03);
    --contact-border: rgba(212, 175, 55, 0.15);
    --contact-border-focus: rgba(212, 175, 55, 0.4);
    
    background: var(--contact-bg);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Gold gradient dividers */
.contact-wrap::before,
.contact-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--contact-gold) 20%, var(--contact-gold-light) 50%, var(--contact-gold) 80%, transparent 100%);
    opacity: 0.6;
}

.contact-wrap::before {
    top: 0;
}

.contact-wrap::after {
    bottom: 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

/* Header Styles */
.contact-eyebrow {
    color: var(--contact-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.contact-title {
    color: var(--contact-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.contact-sub {
    color: var(--contact-muted);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 40px 0;
}

/* Trust Block */
.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--contact-muted);
    font-size: 14px;
    font-weight: 500;
}

.trust-item .trust-icon {
    color: var(--contact-gold);
    font-size: 16px;
    width: 16px;
    flex-shrink: 0;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.trust-badge-item {
    background: rgba(212, 175, 55, 0.1);
    color: var(--contact-gold);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--contact-card-bg);
    border: 1px solid var(--contact-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    border-color: var(--contact-border-focus);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: var(--contact-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--contact-text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--contact-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2), 0 0 12px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23AEB4BF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Toggle Switch */
.form-toggle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-toggle-input {
    display: none;
}

.form-toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-toggle-input:checked + .form-toggle-slider {
    background: var(--contact-gold);
    border-color: var(--contact-gold);
}

.form-toggle-input:checked + .form-toggle-slider::before {
    transform: translateX(20px);
}

.form-toggle-label {
    color: var(--contact-text);
    font-size: 14px;
    font-weight: 500;
}

.priority-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 6px;
    color: #fca5a5;
    font-size: 12px;
    margin-top: 4px;
}

.priority-note i {
    color: #dc2626;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox-input {
    display: none;
}

.form-checkbox-mark {
    position: relative;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox-mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid var(--contact-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: all 0.2s ease;
}

.form-checkbox-input:checked + .form-checkbox-mark {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--contact-gold);
}

.form-checkbox-input:checked + .form-checkbox-mark::after {
    transform: rotate(45deg) scale(1);
}

.form-checkbox-label {
    color: var(--contact-muted);
    font-size: 14px;
    line-height: 1.5;
}

.form-link {
    color: var(--contact-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: var(--contact-gold-light);
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    background: linear-gradient(135deg, var(--contact-gold), var(--contact-gold-light));
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    margin-top: 8px;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-spinner {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Messages */
.form-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.form-error {
    color: #fca5a5;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    display: none;
}

.form-error.show {
    display: block;
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Contact Section Mobile Responsive */
@media (max-width: 768px) {
    .contact-wrap {
        padding: 60px 20px 80px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-sub {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-badges-row {
        justify-content: flex-start;
    }
}

/* ===== FOOTER STYLES ===== */
.footer-wrap {
    position: relative;
    background: #0a0a0a;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, #d4af37, transparent) 1;
    margin-top: 6rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-wrap.footer-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .footer-wrap {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Block */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: all 0.3s ease;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.footer-disclaimer {
    color: #888888;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

/* Quick Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section-title {
    color: #d4af37;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.footer-nav-link:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    border-radius: 4px;
    color: #ffffff;
}

/* Contact & Social */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.footer-contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.footer-contact-link:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    border-radius: 4px;
    color: #ffffff;
}

.footer-contact-link i {
    color: #d4af37;
    width: 16px;
    text-align: center;
}

.footer-response-note {
    color: #888888;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.footer-social-link:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    color: #ffffff;
}

/* Bottom Micro-bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.footer-copyright {
    color: #888888;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-legal-link:hover {
    color: #d4af37;
}

.footer-legal-link:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    border-radius: 4px;
    color: #d4af37;
}

.footer-separator {
    color: #555555;
    font-size: 0.875rem;
}

.footer-back-to-top {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #cccccc;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.footer-back-to-top:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-back-to-top:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    color: #ffffff;
}

.footer-back-to-top i {
    font-size: 0.75rem;
}

/* Watermark */
.footer-watermark {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Footer Responsive Design */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    
    .footer-watermark {
        right: 1rem;
        opacity: 0.02;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .footer-nav-link,
    .footer-contact-link,
    .footer-legal-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .footer-social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .footer-back-to-top {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
    }
    
    .footer-watermark {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .footer-bottom-right {
        width: 100%;
        justify-content: flex-start;
    }
}
